interface CfnTransitGatewayMulticastDomainAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayMulticastDomainAssociationProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayMulticastDomainAssociationProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayMulticastDomainAssociationProps |
TypeScript | @aws-cdk/aws-ec2 » CfnTransitGatewayMulticastDomainAssociationProps |
Properties for defining a CfnTransitGatewayMulticastDomainAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnTransitGatewayMulticastDomainAssociationProps: ec2.CfnTransitGatewayMulticastDomainAssociationProps = {
subnetId: 'subnetId',
transitGatewayAttachmentId: 'transitGatewayAttachmentId',
transitGatewayMulticastDomainId: 'transitGatewayMulticastDomainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string | The IDs of the subnets to associate with the transit gateway multicast domain. |
| transit | string | The ID of the transit gateway attachment. |
| transit | string | The ID of the transit gateway multicast domain. |
subnetId
Type:
string
The IDs of the subnets to associate with the transit gateway multicast domain.
transitGatewayAttachmentId
Type:
string
The ID of the transit gateway attachment.
transitGatewayMulticastDomainId
Type:
string
The ID of the transit gateway multicast domain.

.NET
Java
Python
TypeScript