interface CfnMultiRegionEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMultiRegionEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMultiRegionEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMultiRegionEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMultiRegionEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMultiRegionEndpointMixinProps |
Properties for CfnMultiRegionEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const cfnMultiRegionEndpointMixinProps: ses.CfnMultiRegionEndpointMixinProps = {
details: {
routeDetails: [{
region: 'region',
}],
},
endpointName: 'endpointName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| details? | IResolvable | Details | Contains details of a multi-region endpoint (global-endpoint) being created. |
| endpoint | string | The name of the multi-region endpoint (global-endpoint). |
| tags? | Cfn[] | An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint). |
details?
Type:
IResolvable | Details
(optional)
Contains details of a multi-region endpoint (global-endpoint) being created.
endpointName?
Type:
string
(optional)
The name of the multi-region endpoint (global-endpoint).
tags?
Type:
Cfn[]
(optional)
An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).

.NET
Go
Java
Python
TypeScript