Show / Hide Table of Contents

Interface CfnEndpoint.IRoutingConfigProperty

The routing configuration of the endpoint.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnEndpoint.IRoutingConfigProperty
Syntax (vb)
Public Interface 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

Properties

FailoverConfig

The failover configuration for an endpoint.

Properties

FailoverConfig

The failover configuration for an endpoint.

object FailoverConfig { get; }
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

Back to top Generated by DocFX