TransitGatewayMulticastDomainAssociationReference

class aws_cdk.aws_ec2.TransitGatewayMulticastDomainAssociationReference(*, subnet_id, transit_gateway_attachment_id, transit_gateway_multicast_domain_id)

Bases: object

A reference to a TransitGatewayMulticastDomainAssociation resource.

Parameters:
  • subnet_id (str) – The SubnetId of the TransitGatewayMulticastDomainAssociation resource.

  • transit_gateway_attachment_id (str) – The TransitGatewayAttachmentId of the TransitGatewayMulticastDomainAssociation resource.

  • transit_gateway_multicast_domain_id (str) – The TransitGatewayMulticastDomainId of the TransitGatewayMulticastDomainAssociation resource.

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

transit_gateway_multicast_domain_association_reference = ec2.TransitGatewayMulticastDomainAssociationReference(
    subnet_id="subnetId",
    transit_gateway_attachment_id="transitGatewayAttachmentId",
    transit_gateway_multicast_domain_id="transitGatewayMulticastDomainId"
)

Attributes

subnet_id

The SubnetId of the TransitGatewayMulticastDomainAssociation resource.

transit_gateway_attachment_id

The TransitGatewayAttachmentId of the TransitGatewayMulticastDomainAssociation resource.

transit_gateway_multicast_domain_id

The TransitGatewayMulticastDomainId of the TransitGatewayMulticastDomainAssociation resource.