All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBridgeMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:01.275Z") @Stability(Stable) public interface CfnBridgeMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnBridgePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
 CfnBridgeMixinProps cfnBridgeMixinProps = CfnBridgeMixinProps.builder()
         .egressGatewayBridge(EgressGatewayBridgeProperty.builder()
                 .maxBitrate(123)
                 .build())
         .ingressGatewayBridge(IngressGatewayBridgeProperty.builder()
                 .maxBitrate(123)
                 .maxOutputs(123)
                 .build())
         .name("name")
         .outputs(List.of(BridgeOutputProperty.builder()
                 .networkOutput(BridgeNetworkOutputProperty.builder()
                         .ipAddress("ipAddress")
                         .name("name")
                         .networkName("networkName")
                         .port(123)
                         .protocol("protocol")
                         .ttl(123)
                         .build())
                 .build()))
         .placementArn("placementArn")
         .sourceFailoverConfig(FailoverConfigProperty.builder()
                 .failoverMode("failoverMode")
                 .sourcePriority(SourcePriorityProperty.builder()
                         .primarySource("primarySource")
                         .build())
                 .state("state")
                 .build())
         .sources(List.of(BridgeSourceProperty.builder()
                 .flowSource(BridgeFlowSourceProperty.builder()
                         .flowArn("flowArn")
                         .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                                 .vpcInterfaceName("vpcInterfaceName")
                                 .build())
                         .name("name")
                         .build())
                 .networkSource(BridgeNetworkSourceProperty.builder()
                         .multicastIp("multicastIp")
                         .multicastSourceSettings(MulticastSourceSettingsProperty.builder()
                                 .multicastSourceIp("multicastSourceIp")
                                 .build())
                         .name("name")
                         .networkName("networkName")
                         .port(123)
                         .protocol("protocol")
                         .build())
                 .build()))
         .build();
 

See Also: