aws-cdk-lib.aws_mediaconnect.CfnBridge.BridgeSourceProperty

interface BridgeSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaConnect.CfnBridge.BridgeSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnBridge_BridgeSourceProperty
Javasoftware.amazon.awscdk.services.mediaconnect.CfnBridge.BridgeSourceProperty
Pythonaws_cdk.aws_mediaconnect.CfnBridge.BridgeSourceProperty
TypeScript aws-cdk-lib » aws_mediaconnect » CfnBridge » BridgeSourceProperty

The bridge's source.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const bridgeSourceProperty: mediaconnect.CfnBridge.BridgeSourceProperty = {
  flowSource: {
    flowArn: 'flowArn',
    name: 'name',

    // the properties below are optional
    flowVpcInterfaceAttachment: {
      vpcInterfaceName: 'vpcInterfaceName',
    },
  },
  networkSource: {
    multicastIp: 'multicastIp',
    name: 'name',
    networkName: 'networkName',
    port: 123,
    protocol: 'protocol',
  },
};

Properties

NameTypeDescription
flowSource?IResolvable | BridgeFlowSourcePropertyThe source of the bridge.
networkSource?IResolvable | BridgeNetworkSourcePropertyThe source of the bridge.

flowSource?

Type: IResolvable | BridgeFlowSourceProperty (optional)

The source of the bridge.

A flow source originates in MediaConnect as an existing cloud flow.


networkSource?

Type: IResolvable | BridgeNetworkSourceProperty (optional)

The source of the bridge.

A network source originates at your premises.