interface VpcRouterNetworkInterfaceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterNetworkInterfacePropsMixin.VpcRouterNetworkInterfaceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterNetworkInterfacePropsMixin_VpcRouterNetworkInterfaceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterNetworkInterfacePropsMixin.VpcRouterNetworkInterfaceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterNetworkInterfacePropsMixin.VpcRouterNetworkInterfaceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterNetworkInterfacePropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const vpcRouterNetworkInterfaceConfigurationProperty: mediaconnect_mixins.CfnRouterNetworkInterfacePropsMixin.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[]
(optional)
The IDs of the security groups to associate with the router network interface within the VPC.
subnetId?
Type:
string
(optional)
The ID of the subnet within the VPC to associate the router network interface with.

.NET
Go
Java
Python
TypeScript