CfnTransitGatewayMulticastDomainProps
- class aws_cdk.aws_ec2.CfnTransitGatewayMulticastDomainProps(*, transit_gateway_id, options=None, tags=None)
Bases:
object
Properties for defining a
CfnTransitGatewayMulticastDomain
.- Parameters:
transit_gateway_id (
str
) – The ID of the transit gateway.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.
- 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 import aws_ec2 as ec2 # options: Any cfn_transit_gateway_multicast_domain_props = ec2.CfnTransitGatewayMulticastDomainProps( transit_gateway_id="transitGatewayId", # the properties below are optional options=options, tags=[CfnTag( key="key", value="value" )] )
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.