CfnTransitGatewayMulticastDomainPropsMixin

class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastDomainPropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a multicast domain using the specified transit gateway.

The transit gateway must be in the available state before you create a domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymulticastdomain.html

CloudformationResource:

AWS::EC2::TransitGatewayMulticastDomain

Mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins

# options: Any

cfn_transit_gateway_multicast_domain_props_mixin = ec2_mixins.CfnTransitGatewayMulticastDomainPropsMixin(ec2_mixins.CfnTransitGatewayMulticastDomainMixinProps(
    options=options,
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    transit_gateway_id="transitGatewayId"
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::EC2::TransitGatewayMulticastDomain.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['options', 'tags', 'transitGatewayId']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

OptionsProperty

class CfnTransitGatewayMulticastDomainPropsMixin.OptionsProperty(*, auto_accept_shared_associations=None, igmpv2_support=None, static_sources_support=None)

Bases: object

The options for the transit gateway multicast domain.

Parameters:
  • auto_accept_shared_associations (Optional[str]) – Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.

  • igmpv2_support (Optional[str]) – Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.

  • static_sources_support (Optional[str]) – Specify whether to enable support for statically configuring multicast group sources for a domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymulticastdomain-options.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_ec2 import mixins as ec2_mixins

options_property = ec2_mixins.CfnTransitGatewayMulticastDomainPropsMixin.OptionsProperty(
    auto_accept_shared_associations="autoAcceptSharedAssociations",
    igmpv2_support="igmpv2Support",
    static_sources_support="staticSourcesSupport"
)

Attributes

auto_accept_shared_associations

Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymulticastdomain-options.html#cfn-ec2-transitgatewaymulticastdomain-options-autoacceptsharedassociations

igmpv2_support

Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymulticastdomain-options.html#cfn-ec2-transitgatewaymulticastdomain-options-igmpv2support

static_sources_support

Specify whether to enable support for statically configuring multicast group sources for a domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaymulticastdomain-options.html#cfn-ec2-transitgatewaymulticastdomain-options-staticsourcessupport