CfnNetworkMixinProps
- class aws_cdk.mixins_preview.aws_medialive.mixins.CfnNetworkMixinProps(*, ip_pools=None, name=None, routes=None, tags=None)
Bases:
objectProperties for CfnNetworkPropsMixin.
- Parameters:
ip_pools (
Union[IResolvable,Sequence[Union[IResolvable,IpPoolProperty,Dict[str,Any]]],None]) – The list of IP address cidr pools for the network.name (
Optional[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.mixins_preview.aws_medialive import mixins as medialive_mixins cfn_network_mixin_props = medialive_mixins.CfnNetworkMixinProps( ip_pools=[medialive_mixins.CfnNetworkPropsMixin.IpPoolProperty( cidr="cidr" )], name="name", routes=[medialive_mixins.CfnNetworkPropsMixin.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.