Interface CfnMultiRegionEndpoint.DetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMultiRegionEndpoint.DetailsProperty.Jsii$Proxy
Enclosing class:
CfnMultiRegionEndpoint

@Stability(Stable) public static interface CfnMultiRegionEndpoint.DetailsProperty extends software.amazon.jsii.JsiiSerializable
An object that contains configuration details of multi-region endpoint (global-endpoint).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ses.*;
 DetailsProperty detailsProperty = DetailsProperty.builder()
         .routeDetails(List.of(RouteDetailsItemsProperty.builder()
                 .region("region")
                 .build()))
         .build();
 

See Also: