interface GatewayNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnGatewayPropsMixin.GatewayNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnGatewayPropsMixin_GatewayNetworkProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnGatewayPropsMixin.GatewayNetworkProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnGatewayPropsMixin.GatewayNetworkProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const gatewayNetworkProperty: mediaconnect_mixins.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