interface CfnRouterNetworkInterfaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterNetworkInterfaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterNetworkInterfaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterNetworkInterfaceMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterNetworkInterfaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterNetworkInterfaceMixinProps |
Properties for CfnRouterNetworkInterfacePropsMixin.
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 cfnRouterNetworkInterfaceMixinProps: mediaconnect_mixins.CfnRouterNetworkInterfaceMixinProps = {
configuration: {
public: {
allowRules: [{
cidr: 'cidr',
}],
},
vpc: {
securityGroupIds: ['securityGroupIds'],
subnetId: 'subnetId',
},
},
name: 'name',
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 where the router network interface is located. |
| tags? | Cfn[] | Key-value pairs that can be used to tag and organize this router network interface. |
configuration?
Type:
IResolvable | Router
(optional)
The configuration settings for a router network interface.
name?
Type:
string
(optional)
The name of the router network interface.
regionName?
Type:
string
(optional)
The AWS Region where the router network interface is located.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag and organize this router network interface.

.NET
Go
Java
Python
TypeScript