interface RouterNetworkInterfaceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterNetworkInterface.RouterNetworkInterfaceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterNetworkInterface_RouterNetworkInterfaceConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterNetworkInterface.RouterNetworkInterfaceConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterNetworkInterface.RouterNetworkInterfaceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterNetworkInterface » RouterNetworkInterfaceConfigurationProperty |
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 routerNetworkInterfaceConfigurationProperty: mediaconnect.CfnRouterNetworkInterface.RouterNetworkInterfaceConfigurationProperty = {
public: {
allowRules: [{
cidr: 'cidr',
}],
},
vpc: {
securityGroupIds: ['securityGroupIds'],
subnetId: 'subnetId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| public? | IResolvable | Public | The configuration settings for a public router network interface, including the list of allowed CIDR blocks. |
| vpc? | IResolvable | Vpc | The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID. |
public?
Type:
IResolvable | Public
(optional)
The configuration settings for a public router network interface, including the list of allowed CIDR blocks.
vpc?
Type:
IResolvable | Vpc
(optional)
The configuration settings for a router network interface within a VPC, including the security group IDs and subnet ID.

.NET
Go
Java
Python
TypeScript