interface VpcRouterNetworkInterfaceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterNetworkInterface_VpcRouterNetworkInterfaceConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterNetworkInterface » VpcRouterNetworkInterfaceConfigurationProperty |
The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.
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 vpcRouterNetworkInterfaceConfigurationProperty: mediaconnect.CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty = {
securityGroupIds: ['securityGroupIds'],
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The IDs of the security groups to associate with the router network interface within the VPC. |
| subnet | string | The ID of the subnet within the VPC to associate the router network interface with. |
securityGroupIds
Type:
string[]
The IDs of the security groups to associate with the router network interface within the VPC.
subnetId
Type:
string
The ID of the subnet within the VPC to associate the router network interface with.

.NET
Go
Java
Python
TypeScript