CfnTransitGatewayMulticastDomainPropsMixin
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastDomainPropsMixin(props, *, strategy=None)
Bases:
MixinCreates a multicast domain using the specified transit gateway.
The transit gateway must be in the available state before you create a domain.
- See:
- 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:
props (
Union[CfnTransitGatewayMulticastDomainMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
OptionsProperty
- class CfnTransitGatewayMulticastDomainPropsMixin.OptionsProperty(*, auto_accept_shared_associations=None, igmpv2_support=None, static_sources_support=None)
Bases:
objectThe 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:
- 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
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
- igmpv2_support
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
- static_sources_support
Specify whether to enable support for statically configuring multicast group sources for a domain.