Interface ICfnBridgeSourceProps
Properties for defining a CfnBridgeSource
.
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnBridgeSourceProps
Syntax (vb)
Public Interface ICfnBridgeSourceProps
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.MediaConnect;
var cfnBridgeSourceProps = new CfnBridgeSourceProps {
BridgeArn = "bridgeArn",
Name = "name",
// the properties below are optional
FlowSource = new BridgeFlowSourceProperty {
FlowArn = "flowArn",
// the properties below are optional
FlowVpcInterfaceAttachment = new VpcInterfaceAttachmentProperty {
VpcInterfaceName = "vpcInterfaceName"
}
},
NetworkSource = new BridgeNetworkSourceProperty {
MulticastIp = "multicastIp",
NetworkName = "networkName",
Port = 123,
Protocol = "protocol",
// the properties below are optional
MulticastSourceSettings = new MulticastSourceSettingsProperty {
MulticastSourceIp = "multicastSourceIp"
}
}
};
Synopsis
Properties
Bridge |
The ARN of the bridge that you want to describe. |
Flow |
Add a flow source to an existing bridge. |
Name | The name of the flow source. |
Network |
Add a network source to an existing bridge. |
Properties
BridgeArn
The ARN of the bridge that you want to describe.
string BridgeArn { get; }
Property Value
System.
Remarks
FlowSource
Add a flow source to an existing bridge.
virtual object FlowSource { get; }
Property Value
System.
Remarks
Name
The name of the flow source.
string Name { get; }
Property Value
System.
Remarks
This name is used to reference the source and must be unique among sources in this bridge.
NetworkSource
Add a network source to an existing bridge.
virtual object NetworkSource { get; }
Property Value
System.