Package software.amazon.awssdk.regions
Interface ServicePartitionMetadata
-
- All Known Implementing Classes:
DefaultServicePartitionMetadata
public interface ServicePartitionMetadataThe metadata associated with a specific service, in a specific partition. This can be loaded viaServiceMetadata.servicePartitions().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Region>globalRegion()Retrieve the global region associated with this service, in thispartition().PartitionMetadatapartition()Retrieve the partition to which this service is known to exist.
-
-
-
Method Detail
-
partition
PartitionMetadata partition()
Retrieve the partition to which this service is known to exist.
-
globalRegion
Optional<Region> globalRegion()
Retrieve the global region associated with this service, in thispartition(). This will return empty if the service is regionalized in the partition.
-
-