interface TransitGatewayMulticastDomainAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.TransitGatewayMulticastDomainAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#TransitGatewayMulticastDomainAssociationReference |
Java | software.amazon.awscdk.interfaces.ec2.TransitGatewayMulticastDomainAssociationReference |
Python | aws_cdk.interfaces.aws_ec2.TransitGatewayMulticastDomainAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » TransitGatewayMulticastDomainAssociationReference |
A reference to a TransitGatewayMulticastDomainAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_aws_ec2 } from 'aws-cdk-lib/interfaces';
const transitGatewayMulticastDomainAssociationReference: interfaces_aws_ec2.TransitGatewayMulticastDomainAssociationReference = {
subnetId: 'subnetId',
transitGatewayAttachmentId: 'transitGatewayAttachmentId',
transitGatewayMulticastDomainId: 'transitGatewayMulticastDomainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string | The SubnetId of the TransitGatewayMulticastDomainAssociation resource. |
| transit | string | The TransitGatewayAttachmentId of the TransitGatewayMulticastDomainAssociation resource. |
| transit | string | The TransitGatewayMulticastDomainId of the TransitGatewayMulticastDomainAssociation resource. |
subnetId
Type:
string
The SubnetId of the TransitGatewayMulticastDomainAssociation resource.
transitGatewayAttachmentId
Type:
string
The TransitGatewayAttachmentId of the TransitGatewayMulticastDomainAssociation resource.
transitGatewayMulticastDomainId
Type:
string
The TransitGatewayMulticastDomainId of the TransitGatewayMulticastDomainAssociation resource.

.NET
Go
Java
Python
TypeScript