CfnRouterNetworkInterfaceProps

class aws_cdk.aws_mediaconnect.CfnRouterNetworkInterfaceProps(*, configuration, name, region_name=None, tags=None)

Bases: object

Properties for defining a CfnRouterNetworkInterface.

Parameters:
  • configuration (Union[IResolvable, RouterNetworkInterfaceConfigurationProperty, Dict[str, Any]]) – The configuration settings for a router network interface.

  • name (str) – The name of the router network interface.

  • region_name (Optional[str]) – The AWS Region for the router network interface. Defaults to the current region if not specified.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Key-value pairs that can be used to tag and organize this router network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.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_router_network_interface_props = mediaconnect.CfnRouterNetworkInterfaceProps(
    configuration=mediaconnect.CfnRouterNetworkInterface.RouterNetworkInterfaceConfigurationProperty(
        public=mediaconnect.CfnRouterNetworkInterface.PublicRouterNetworkInterfaceConfigurationProperty(
            allow_rules=[mediaconnect.CfnRouterNetworkInterface.PublicRouterNetworkInterfaceRuleProperty(
                cidr="cidr"
            )]
        ),
        vpc=mediaconnect.CfnRouterNetworkInterface.VpcRouterNetworkInterfaceConfigurationProperty(
            security_group_ids=["securityGroupIds"],
            subnet_id="subnetId"
        )
    ),
    name="name",

    # the properties below are optional
    region_name="regionName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

configuration

The configuration settings for a router network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-configuration

name

The name of the router network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-name

region_name

The AWS Region for the router network interface.

Defaults to the current region if not specified.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-regionname

tags

Key-value pairs that can be used to tag and organize this router network interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-routernetworkinterface.html#cfn-mediaconnect-routernetworkinterface-tags