interface GatewayNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnGatewayPropsMixin.GatewayNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnGatewayPropsMixin_GatewayNetworkProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnGatewayPropsMixin.GatewayNetworkProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnGatewayPropsMixin.GatewayNetworkProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnGatewayPropsMixin » GatewayNetworkProperty |
The network settings for a gateway.
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 gatewayNetworkProperty: mediaconnect.CfnGatewayPropsMixin.GatewayNetworkProperty = {
cidrBlock: 'cidrBlock',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr | string | A unique IP address range to use for this network. |
| name? | string | The name of the network. |
cidrBlock?
Type:
string
(optional)
A unique IP address range to use for this network.
These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
name?
Type:
string
(optional)
The name of the network.
This name is used to reference the network and must be unique among networks in this gateway.

.NET
Go
Java
Python
TypeScript