Interface CfnBridge.BridgeNetworkSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBridge.BridgeNetworkSourceProperty.Jsii$Proxy
- Enclosing class:
CfnBridge
@Stability(Stable)
public static interface CfnBridge.BridgeNetworkSourceProperty
extends software.amazon.jsii.JsiiSerializable
The source of the bridge.
A network source originates at your premises.
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.*; BridgeNetworkSourceProperty bridgeNetworkSourceProperty = BridgeNetworkSourceProperty.builder() .multicastIp("multicastIp") .name("name") .networkName("networkName") .port(123) .protocol("protocol") // the properties below are optional .multicastSourceSettings(MulticastSourceSettingsProperty.builder() .multicastSourceIp("multicastSourceIp") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBridge.BridgeNetworkSourceProperty
static final class
An implementation forCfnBridge.BridgeNetworkSourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMulticastIp
The network source multicast IP.- See Also:
-
getName
The name of the network source.This name is used to reference the source and must be unique among sources in this bridge.
- See Also:
-
getNetworkName
The network source's gateway network name.- See Also:
-
getPort
The network source port.- See Also:
-
getProtocol
The network source protocol.- See Also:
-
getMulticastSourceSettings
The settings related to the multicast source.- See Also:
-
builder
-