Show / Hide Table of Contents

Class CfnMultiRegionEndpoint.DetailsProperty

An object that contains configuration details of multi-region endpoint (global-endpoint).

Inheritance
object
CfnMultiRegionEndpoint.DetailsProperty
Implements
CfnMultiRegionEndpoint.IDetailsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html

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

object

Remarks

Must contain exactly one route configuration

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html#cfn-ses-multiregionendpoint-details-routedetails

Type union: either IResolvable or (either IResolvable or CfnMultiRegionEndpoint.IRouteDetailsItemsProperty)[]

Implements

CfnMultiRegionEndpoint.IDetailsProperty
Back to top Generated by DocFX