Class CfnMultiRegionEndpoint.DetailsProperty
An object that contains configuration details of multi-region endpoint (global-endpoint).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMultiRegionEndpoint.DetailsProperty : CfnMultiRegionEndpoint.IDetailsProperty
Syntax (vb)
Public Class CfnMultiRegionEndpoint.DetailsProperty Implements CfnMultiRegionEndpoint.IDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var detailsProperty = new DetailsProperty {
RouteDetails = new [] { new RouteDetailsItemsProperty {
Region = "region"
} }
};
Synopsis
Constructors
| DetailsProperty() | An object that contains configuration details of multi-region endpoint (global-endpoint). |
Properties
| RouteDetails | A list of route configuration details. |
Constructors
DetailsProperty()
An object that contains configuration details of multi-region endpoint (global-endpoint).
public DetailsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var detailsProperty = new DetailsProperty {
RouteDetails = new [] { new RouteDetailsItemsProperty {
Region = "region"
} }
};
Properties
RouteDetails
A list of route configuration details.
public object RouteDetails { get; set; }
Property Value
Remarks
Must contain exactly one route configuration
Type union: either IResolvable or (either IResolvable or CfnMultiRegionEndpoint.IRouteDetailsItemsProperty)[]