Interface CfnBridge.FailoverConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBridge.FailoverConfigProperty.Jsii$Proxy
Enclosing class:
CfnBridge

@Stability(Stable) public static interface CfnBridge.FailoverConfigProperty extends software.amazon.jsii.JsiiSerializable
The settings for source failover.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediaconnect.*;
 FailoverConfigProperty failoverConfigProperty = FailoverConfigProperty.builder()
         .failoverMode("failoverMode")
         // the properties below are optional
         .sourcePriority(SourcePriorityProperty.builder()
                 .primarySource("primarySource")
                 .build())
         .state("state")
         .build();
 

See Also: