interface CfnBridgeSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgeSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgeSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgeSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgeSourceMixinProps |
Properties for CfnBridgeSourcePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const cfnBridgeSourceMixinProps: mediaconnect_mixins.CfnBridgeSourceMixinProps = {
bridgeArn: 'bridgeArn',
flowSource: {
flowArn: 'flowArn',
flowVpcInterfaceAttachment: {
vpcInterfaceName: 'vpcInterfaceName',
},
},
name: 'name',
networkSource: {
multicastIp: 'multicastIp',
multicastSourceSettings: {
multicastSourceIp: 'multicastSourceIp',
},
networkName: 'networkName',
port: 123,
protocol: 'protocol',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bridge | string | The ARN of the bridge feeding this flow. |
| flow | IResolvable | Bridge | The source of the flow. |
| name? | string | The name of the flow source. |
| network | IResolvable | Bridge | The source of the network. |
bridgeArn?
Type:
string
(optional)
The ARN of the bridge feeding this flow.
flowSource?
Type:
IResolvable | Bridge
(optional)
The source of the flow.
name?
Type:
string
(optional)
The name of the flow source.
This name is used to reference the source and must be unique among sources in this bridge.
networkSource?
Type:
IResolvable | Bridge
(optional)
The source of the network.

.NET
Go
Java
Python
TypeScript