Interface CfnBridgeSourceProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:29.203Z") @Stability(Stable) public interface CfnBridgeSourceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnBridgeSource.

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.*;
 CfnBridgeSourceProps cfnBridgeSourceProps = CfnBridgeSourceProps.builder()
         .bridgeArn("bridgeArn")
         .name("name")
         // the properties below are optional
         .flowSource(BridgeFlowSourceProperty.builder()
                 .flowArn("flowArn")
                 // the properties below are optional
                 .flowVpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                         .vpcInterfaceName("vpcInterfaceName")
                         .build())
                 .build())
         .networkSource(BridgeNetworkSourceProperty.builder()
                 .multicastIp("multicastIp")
                 .networkName("networkName")
                 .port(123)
                 .protocol("protocol")
                 .build())
         .build();
 

See Also: