CfnGatewayProps
- class aws_cdk.aws_mediaconnect.CfnGatewayProps(*, egress_cidr_blocks, name, networks)
Bases:
object
Properties for defining a
CfnGateway
.- Parameters:
egress_cidr_blocks (
Sequence
[str
]) – The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.name (
str
) – The name of the network. This name is used to reference the network and must be unique among networks in this gateway.networks (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,GatewayNetworkProperty
,Dict
[str
,Any
]]]]) – The list of networks that you want to add.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-gateway.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_mediaconnect as mediaconnect cfn_gateway_props = mediaconnect.CfnGatewayProps( egress_cidr_blocks=["egressCidrBlocks"], name="name", networks=[mediaconnect.CfnGateway.GatewayNetworkProperty( cidr_block="cidrBlock", name="name" )] )
Attributes
- egress_cidr_blocks
The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.
These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
- name
The name of the network.
This name is used to reference the network and must be unique among networks in this gateway.
- networks
The list of networks that you want to add.