CfnMultiRegionEndpointProps
- class aws_cdk.aws_ses.CfnMultiRegionEndpointProps(*, details, endpoint_name, tags=None)
Bases:
objectProperties for defining a
CfnMultiRegionEndpoint.- Parameters:
details (
Union[IResolvable,DetailsProperty,Dict[str,Any]]) – Contains details of a multi-region endpoint (global-endpoint) being created.endpoint_name (
str) – The name of the multi-region endpoint (global-endpoint).tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ses as ses cfn_multi_region_endpoint_props = ses.CfnMultiRegionEndpointProps( details=ses.CfnMultiRegionEndpoint.DetailsProperty( route_details=[ses.CfnMultiRegionEndpoint.RouteDetailsItemsProperty( region="region" )] ), endpoint_name="endpointName", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- details
Contains details of a multi-region endpoint (global-endpoint) being created.
- endpoint_name
The name of the multi-region endpoint (global-endpoint).
- tags
An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).