CfnNetworkProps
- class aws_cdk.aws_medialive.CfnNetworkProps(*, ip_pools, name, routes=None, tags=None)
Bases:
objectProperties for defining a
CfnNetwork.- Parameters:
ip_pools (
Union[IResolvable,Sequence[Union[IResolvable,IpPoolProperty,Dict[str,Any]]]]) – The list of IP address cidr pools for the network.name (
str) – The user-specified name of the Network to be created.routes (
Union[IResolvable,Sequence[Union[IResolvable,RouteProperty,Dict[str,Any]]],None]) – The routes for the network.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A collection of key-value pairs.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-network.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_medialive as medialive cfn_network_props = medialive.CfnNetworkProps( ip_pools=[medialive.CfnNetwork.IpPoolProperty( cidr="cidr" )], name="name", # the properties below are optional routes=[medialive.CfnNetwork.RouteProperty( cidr="cidr", gateway="gateway" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- ip_pools
The list of IP address cidr pools for the network.
- name
The user-specified name of the Network to be created.
- routes
The routes for the network.
- tags
A collection of key-value pairs.