interface CfnNetworkProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnNetworkProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnNetworkProps |
Java | software.amazon.awscdk.services.medialive.CfnNetworkProps |
Python | aws_cdk.aws_medialive.CfnNetworkProps |
TypeScript | aws-cdk-lib » aws_medialive » CfnNetworkProps |
Properties for defining a CfnNetwork
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnNetworkProps: medialive.CfnNetworkProps = {
ipPools: [{
cidr: 'cidr',
}],
name: 'name',
// the properties below are optional
routes: [{
cidr: 'cidr',
gateway: 'gateway',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
ip | IResolvable | IResolvable | Ip [] | The list of IP address cidr pools for the network. |
name | string | The user-specified name of the Network to be created. |
routes? | IResolvable | IResolvable | Route [] | The routes for the network. |
tags? | Cfn [] | A collection of key-value pairs. |
ipPools
Type:
IResolvable
|
IResolvable
|
Ip
[]
The list of IP address cidr pools for the network.
name
Type:
string
The user-specified name of the Network to be created.
routes?
Type:
IResolvable
|
IResolvable
|
Route
[]
(optional)
The routes for the network.
tags?
Type:
Cfn
[]
(optional)
A collection of key-value pairs.