CfnRouterNetworkInterfaceMixinProps

class aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterNetworkInterfaceMixinProps(*, configuration=None, name=None, region_name=None, tags=None)

Bases: object

Properties for CfnRouterNetworkInterfacePropsMixin.

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

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

  • region_name (Optional[str]) – The AWS Region where the router network interface is located.

  • 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.mixins_preview.aws_mediaconnect import mixins as mediaconnect_mixins

cfn_router_network_interface_mixin_props = mediaconnect_mixins.CfnRouterNetworkInterfaceMixinProps(
    configuration=mediaconnect_mixins.CfnRouterNetworkInterfacePropsMixin.RouterNetworkInterfaceConfigurationProperty(
        public=mediaconnect_mixins.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceConfigurationProperty(
            allow_rules=[mediaconnect_mixins.CfnRouterNetworkInterfacePropsMixin.PublicRouterNetworkInterfaceRuleProperty(
                cidr="cidr"
            )]
        ),
        vpc=mediaconnect_mixins.CfnRouterNetworkInterfacePropsMixin.VpcRouterNetworkInterfaceConfigurationProperty(
            security_group_ids=["securityGroupIds"],
            subnet_id="subnetId"
        )
    ),
    name="name",
    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 where the router network interface is located.

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