CfnTransitGatewayMulticastDomainMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastDomainMixinProps(*, options=None, tags=None, transit_gateway_id=None)
Bases:
objectProperties for CfnTransitGatewayMulticastDomainPropsMixin.
- Parameters:
options (
Any) – The options for the transit gateway multicast domain. - AutoAcceptSharedAssociations (enable | disable) - Igmpv2Support (enable | disable) - StaticSourcesSupport (enable | disable)tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags for the transit gateway multicast domain.transit_gateway_id (
Optional[str]) – The ID of the transit gateway.
- 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: Any cfn_transit_gateway_multicast_domain_mixin_props = ec2_mixins.CfnTransitGatewayMulticastDomainMixinProps( options=options, tags=[CfnTag( key="key", value="value" )], transit_gateway_id="transitGatewayId" )
Attributes
- options
The options for the transit gateway multicast domain.
AutoAcceptSharedAssociations (enable | disable)
Igmpv2Support (enable | disable)
StaticSourcesSupport (enable | disable)
- tags
The tags for the transit gateway multicast domain.
- transit_gateway_id
The ID of the transit gateway.