1 /*
2  * Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5  * the License. A copy of the License is located at
6  * 
7  * http://aws.amazon.com/apache2.0
8  * 
9  * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11  * and limitations under the License.
12  */

13
14 package software.amazon.awssdk.regions.regionmetadata;
15
16 import software.amazon.awssdk.annotations.Generated;
17 import software.amazon.awssdk.annotations.SdkPublicApi;
18 import software.amazon.awssdk.regions.PartitionMetadata;
19 import software.amazon.awssdk.regions.RegionMetadata;
20
21 @Generated("software.amazon.awssdk:codegen")
22 @SdkPublicApi
23 public final class UsIsoEast1 implements RegionMetadata {
24     private static final String ID = "us-iso-east-1";
25
26     private static final String DOMAIN = "c2s.ic.gov";
27
28     private static final String DESCRIPTION = "US ISO East";
29
30     private static final String PARTITION_ID = "aws-iso";
31
32     @Override
33     public String id() {
34         return ID;
35     }
36
37     @Override
38     public String domain() {
39         return DOMAIN;
40     }
41
42     @Override
43     public String description() {
44         return DESCRIPTION;
45     }
46
47     @Override
48     public PartitionMetadata partition() {
49         return PartitionMetadata.of(PARTITION_ID);
50     }
51 }
52