interface CfnTransitGatewayMulticastDomainAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayMulticastDomainAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayMulticastDomainAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayMulticastDomainAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayMulticastDomainAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayMulticastDomainAssociationMixinProps |
Properties for CfnTransitGatewayMulticastDomainAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnTransitGatewayMulticastDomainAssociationMixinProps: ec2.CfnTransitGatewayMulticastDomainAssociationMixinProps = {
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
(optional)
The IDs of the subnets to associate with the transit gateway multicast domain.
transitGatewayAttachmentId?
Type:
string
(optional)
The ID of the transit gateway attachment.
transitGatewayMulticastDomainId?
Type:
string
(optional)
The ID of the transit gateway multicast domain.

.NET
Go
Java
Python
TypeScript