Class CfnFlowSource.GatewayBridgeSourceProperty
The source configuration for cloud flows receiving a stream from a bridge.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlowSource.GatewayBridgeSourceProperty : CfnFlowSource.IGatewayBridgeSourceProperty
Syntax (vb)
Public Class CfnFlowSource.GatewayBridgeSourceProperty Implements CfnFlowSource.IGatewayBridgeSourceProperty
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 gatewayBridgeSourceProperty = new GatewayBridgeSourceProperty {
BridgeArn = "bridgeArn",
// the properties below are optional
VpcInterfaceAttachment = new VpcInterfaceAttachmentProperty {
VpcInterfaceName = "vpcInterfaceName"
}
};
Synopsis
Constructors
GatewayBridgeSourceProperty() | The source configuration for cloud flows receiving a stream from a bridge. |
Properties
BridgeArn | The ARN of the bridge feeding this flow. |
VpcInterfaceAttachment | The name of the VPC interface attachment to use for this bridge source. |
Constructors
GatewayBridgeSourceProperty()
The source configuration for cloud flows receiving a stream from a bridge.
public GatewayBridgeSourceProperty()
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 gatewayBridgeSourceProperty = new GatewayBridgeSourceProperty {
BridgeArn = "bridgeArn",
// the properties below are optional
VpcInterfaceAttachment = new VpcInterfaceAttachmentProperty {
VpcInterfaceName = "vpcInterfaceName"
}
};
Properties
BridgeArn
The ARN of the bridge feeding this flow.
public string BridgeArn { get; set; }
Property Value
Remarks
VpcInterfaceAttachment
The name of the VPC interface attachment to use for this bridge source.
public object? VpcInterfaceAttachment { get; set; }