interface PublicRouterNetworkInterfaceRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterNetworkInterfacePropsMixin_PublicRouterNetworkInterfaceRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterNetworkInterfacePropsMixin » PublicRouterNetworkInterfaceRuleProperty |
A rule that allows a specific CIDR block to access the public router network interface.
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/cfn-property-mixins';
const publicRouterNetworkInterfaceRuleProperty: mediaconnect.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty = {
cidr: 'cidr',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr? | string | The CIDR block that is allowed to access the public router network interface. |
cidr?
Type:
string
(optional)
The CIDR block that is allowed to access the public router network interface.

.NET
Go
Java
Python
TypeScript