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
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
Remarks
This includes what triggers failover and what happens when it's triggered.
Type union: either IResolvable or CfnEndpoint.IFailoverConfigProperty