CfnTransitGatewayMulticastDomainAssociationProps
- class aws_cdk.aws_ec2.CfnTransitGatewayMulticastDomainAssociationProps(*, subnet_id, transit_gateway_attachment_id, transit_gateway_multicast_domain_id)
Bases:
object
Properties for defining a
CfnTransitGatewayMulticastDomainAssociation
.- Parameters:
subnet_id (
str
) – The IDs of the subnets to associate with the transit gateway multicast domain.transit_gateway_attachment_id (
str
) – The ID of the transit gateway attachment.transit_gateway_multicast_domain_id (
str
) – The ID of 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 cfn_transit_gateway_multicast_domain_association_props = ec2.CfnTransitGatewayMulticastDomainAssociationProps( subnet_id="subnetId", transit_gateway_attachment_id="transitGatewayAttachmentId", transit_gateway_multicast_domain_id="transitGatewayMulticastDomainId" )
Attributes
- subnet_id
The IDs of the subnets to associate with the transit gateway multicast domain.
- transit_gateway_attachment_id
The ID of the transit gateway attachment.
- transit_gateway_multicast_domain_id
The ID of the transit gateway multicast domain.