CfnMultiRegionEndpointProps

class aws_cdk.aws_ses.CfnMultiRegionEndpointProps(*, details, endpoint_name, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-details

endpoint_name

The name of the multi-region endpoint (global-endpoint).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-endpointname

tags

An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-tags