interface DetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMultiRegionEndpointPropsMixin.DetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMultiRegionEndpointPropsMixin_DetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMultiRegionEndpointPropsMixin.DetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMultiRegionEndpointPropsMixin.DetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMultiRegionEndpointPropsMixin » DetailsProperty |
An object that contains configuration details of multi-region endpoint (global-endpoint).
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 detailsProperty: ses.CfnMultiRegionEndpointPropsMixin.DetailsProperty = {
routeDetails: [{
region: 'region',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| route | IResolvable | (IResolvable | Route)[] | A list of route configuration details. |
routeDetails?
Type:
IResolvable | (IResolvable | Route)[]
(optional)
A list of route configuration details.
Must contain exactly one route configuration.

.NET
Go
Java
Python
TypeScript