Show / Hide Table of Contents

Class CfnEndpoint.FailoverConfigProperty

The failover configuration for an endpoint.

Inheritance
object
CfnEndpoint.FailoverConfigProperty
Implements
CfnEndpoint.IFailoverConfigProperty
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.FailoverConfigProperty : CfnEndpoint.IFailoverConfigProperty
Syntax (vb)
Public Class CfnEndpoint.FailoverConfigProperty Implements CfnEndpoint.IFailoverConfigProperty
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-failoverconfig.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 failoverConfigProperty = new FailoverConfigProperty {
                 Primary = new PrimaryProperty {
                     HealthCheck = "healthCheck"
                 },
                 Secondary = new SecondaryProperty {
                     Route = "route"
                 }
             };

Synopsis

Constructors

FailoverConfigProperty()

The failover configuration for an endpoint.

Properties

Primary

The main Region of the endpoint.

Secondary

The Region that events are routed to when failover is triggered or event replication is enabled.

Constructors

FailoverConfigProperty()

The failover configuration for an endpoint.

public FailoverConfigProperty()
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-failoverconfig.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 failoverConfigProperty = new FailoverConfigProperty {
                 Primary = new PrimaryProperty {
                     HealthCheck = "healthCheck"
                 },
                 Secondary = new SecondaryProperty {
                     Route = "route"
                 }
             };

Properties

Primary

The main Region of the endpoint.

public object Primary { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnEndpoint.IPrimaryProperty

Secondary

The Region that events are routed to when failover is triggered or event replication is enabled.

public object Secondary { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnEndpoint.ISecondaryProperty

Implements

CfnEndpoint.IFailoverConfigProperty
Back to top Generated by DocFX