interface CfnFlowVpcInterfaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowVpcInterfaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowVpcInterfaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowVpcInterfaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowVpcInterfaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnFlowVpcInterfaceMixinProps |
Properties for CfnFlowVpcInterfacePropsMixin.
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/cfn-property-mixins';
const cfnFlowVpcInterfaceMixinProps: mediaconnect.CfnFlowVpcInterfaceMixinProps = {
flowArn: 'flowArn',
name: 'name',
roleArn: 'roleArn',
securityGroupIds: ['securityGroupIds'],
subnetId: 'subnetId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The Amazon Resource Name (ARN) of the flow. |
| name? | string | The name for the VPC interface. |
| role | string | The Amazon Resource Name (ARN) of the role that you created when you set up MediaConnect as a trusted service. |
| security | string[] | A virtual firewall to control inbound and outbound traffic. |
| subnet | string | The subnet IDs that you want to use for your VPC interface. |
| tags? | Cfn[] | Key-value pairs that can be used to tag and organize this VPC network interface. |
flowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow.
name?
Type:
string
(optional)
The name for the VPC interface.
This name must be unique within the flow.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the role that you created when you set up MediaConnect as a trusted service.
securityGroupIds?
Type:
string[]
(optional)
A virtual firewall to control inbound and outbound traffic.
subnetId?
Type:
string
(optional)
The subnet IDs that you want to use for your VPC interface.
A range of IP addresses in your VPC. When you create your VPC, you specify a range of IPv4 addresses for the VPC in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. This is the primary CIDR block for your VPC. When you create a subnet for your VPC, you specify the CIDR block for the subnet, which is a subset of the VPC CIDR block. The subnets that you use across all VPC interfaces on the flow must be in the same Availability Zone as the flow.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag and organize this VPC network interface.

.NET
Go
Java
Python
TypeScript