software.amazon.awssdk.regions.partitionmetadata.AwsIsoBPartitionMetadata Maven / Gradle / Ivy
/*
* Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.regions.partitionmetadata;
import java.util.Map;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.regions.EndpointTag;
import software.amazon.awssdk.regions.PartitionEndpointKey;
import software.amazon.awssdk.regions.PartitionMetadata;
import software.amazon.awssdk.utils.ImmutableMap;
@SdkPublicApi
@Generated("software.amazon.awssdk:codegen")
public final class AwsIsoBPartitionMetadata implements PartitionMetadata {
private static final Map DNS_SUFFIXES = ImmutableMap. builder()
.put(PartitionEndpointKey.builder().build(), "sc2s.sgov.gov")
.put(PartitionEndpointKey.builder().tags(EndpointTag.of("fips")).build(), "sc2s.sgov.gov").build();
private static final Map HOSTNAMES = ImmutableMap. builder()
.put(PartitionEndpointKey.builder().build(), "{service}.{region}.{dnsSuffix}")
.put(PartitionEndpointKey.builder().tags(EndpointTag.of("fips")).build(), "{service}-fips.{region}.{dnsSuffix}")
.build();
private static final String ID = "aws-iso-b";
private static final String NAME = "AWS ISOB (US)";
private static final String REGION_REGEX = "^us\\-isob\\-\\w+\\-\\d+$";
@Override
public String id() {
return ID;
}
@Override
public String name() {
return NAME;
}
@Override
public String regionRegex() {
return REGION_REGEX;
}
@Override
public String dnsSuffix(PartitionEndpointKey key) {
return DNS_SUFFIXES.get(key);
}
@Override
public String hostname(PartitionEndpointKey key) {
return HOSTNAMES.get(key);
}
}