interface CfnMultiRegionEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMultiRegionEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMultiRegionEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMultiRegionEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMultiRegionEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnMultiRegionEndpointMixinProps: ses_mixins.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