Show / Hide Table of Contents

Class CfnEndpoint.RoutingConfigProperty

The routing configuration of the endpoint.

Inheritance
object
CfnEndpoint.RoutingConfigProperty
Implements
CfnEndpoint.IRoutingConfigProperty
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.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEndpoint.RoutingConfigProperty : CfnEndpoint.IRoutingConfigProperty
Syntax (vb)
Public Class CfnEndpoint.RoutingConfigProperty Implements CfnEndpoint.IRoutingConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-endpoint-routingconfig.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.Events;

             var routingConfigProperty = new RoutingConfigProperty {
                 FailoverConfig = new FailoverConfigProperty {
                     Primary = new PrimaryProperty {
                         HealthCheck = "healthCheck"
                     },
                     Secondary = new SecondaryProperty {
                         Route = "route"
                     }
                 }
             };

Synopsis

Constructors

RoutingConfigProperty()

The routing configuration of the endpoint.

Properties

FailoverConfig

The failover configuration for an endpoint.

Constructors

RoutingConfigProperty()

The routing configuration of the endpoint.

public RoutingConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-endpoint-routingconfig.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.Events;

             var routingConfigProperty = new RoutingConfigProperty {
                 FailoverConfig = new FailoverConfigProperty {
                     Primary = new PrimaryProperty {
                         HealthCheck = "healthCheck"
                     },
                     Secondary = new SecondaryProperty {
                         Route = "route"
                     }
                 }
             };

Properties

FailoverConfig

The failover configuration for an endpoint.

public object FailoverConfig { get; set; }
Property Value

object

Remarks

This includes what triggers failover and what happens when it's triggered.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-endpoint-routingconfig.html#cfn-events-endpoint-routingconfig-failoverconfig

Type union: either IResolvable or CfnEndpoint.IFailoverConfigProperty

Implements

CfnEndpoint.IRoutingConfigProperty
Back to top Generated by DocFX