interface CfnMultiRegionEndpointProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMultiRegionEndpointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMultiRegionEndpointProps |
Java | software.amazon.awscdk.services.ses.CfnMultiRegionEndpointProps |
Python | aws_cdk.aws_ses.CfnMultiRegionEndpointProps |
TypeScript | aws-cdk-lib » aws_ses » CfnMultiRegionEndpointProps |
Properties for defining a CfnMultiRegionEndpoint.
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-lib';
const cfnMultiRegionEndpointProps: ses.CfnMultiRegionEndpointProps = {
details: {
routeDetails: [{
region: 'region',
}],
},
endpointName: 'endpointName',
// the properties below are optional
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
Contains details of a multi-region endpoint (global-endpoint) being created.
endpointName
Type:
string
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