aws-cdk-lib.aws_mediaconnect.CfnBridgeSourceProps

interface CfnBridgeSourceProps

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

Properties for defining a CfnBridgeSource.

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 cfnBridgeSourceProps: mediaconnect.CfnBridgeSourceProps = {
  bridgeArn: 'bridgeArn',
  name: 'name',

  // the properties below are optional
  flowSource: {
    flowArn: 'flowArn',

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

Properties

NameTypeDescription
bridgeArnstringThe ARN of the bridge that you want to describe.
namestringThe name of the network source.
flowSource?IResolvable | BridgeFlowSourcePropertyAdd a flow source to an existing bridge.
networkSource?IResolvable | BridgeNetworkSourcePropertyAdd a network source to an existing bridge.

bridgeArn

Type: string

The ARN of the bridge that you want to describe.


name

Type: string

The name of the network source.

This name is used to reference the source and must be unique among sources in this bridge.


flowSource?

Type: IResolvable | BridgeFlowSourceProperty (optional)

Add a flow source to an existing bridge.


networkSource?

Type: IResolvable | BridgeNetworkSourceProperty (optional)

Add a network source to an existing bridge.