interface NetworkProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.NetworkProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#NetworkProps |
Java | software.amazon.awscdk.services.medialive.alpha.NetworkProps |
Python | aws_cdk.aws_medialive_alpha.NetworkProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป NetworkProps |
Properties for creating a MediaLive Network.
Example
declare const stack: Stack;
const network = new medialive.Network(stack, 'Network', {
networkName: 'on-prem-network',
ipPools: ['10.0.0.0/24'],
routes: [{ cidr: '0.0.0.0/0', gateway: '10.0.0.1' }],
});
Properties
| Name | Type | Description |
|---|---|---|
| ip | string[] | The list of IP address CIDR pools for the network. |
| network | string | The name of the network. |
| routes? | Network[] | The routes for the network. |
| tags? | { [string]: string } | Tags to add to the network. |
ipPools
Type:
string[]
The list of IP address CIDR pools for the network.
networkName?
Type:
string
(optional, default: auto-generated name)
The name of the network.
routes?
Type:
Network[]
(optional, default: no routes)
The routes for the network.
tags?
Type:
{ [string]: string }
(optional, default: no tags)
Tags to add to the network.

.NET
Go
Java
Python
TypeScript (