interface CfnRouterNetworkInterfaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterNetworkInterfaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterNetworkInterfaceProps |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterNetworkInterfaceProps |
Python | aws_cdk.aws_mediaconnect.CfnRouterNetworkInterfaceProps |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterNetworkInterfaceProps |
Properties for defining a CfnRouterNetworkInterface.
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 cfnRouterNetworkInterfaceProps: mediaconnect.CfnRouterNetworkInterfaceProps = {
configuration: {
public: {
allowRules: [{
cidr: 'cidr',
}],
},
vpc: {
securityGroupIds: ['securityGroupIds'],
subnetId: 'subnetId',
},
},
name: 'name',
// the properties below are optional
regionName: 'regionName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Router | The configuration settings for a router network interface. |
| name | string | The name of the router network interface. |
| region | string | The AWS Region for the router network interface. |
| tags? | Cfn[] | Key-value pairs that can be used to tag and organize this router network interface. |
configuration
Type:
IResolvable | Router
The configuration settings for a router network interface.
name
Type:
string
The name of the router network interface.
regionName?
Type:
string
(optional)
The AWS Region for the router network interface.
Defaults to the current region if not specified.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag and organize this router network interface.

.NET
Go
Java
Python
TypeScript