interface CfnTransitGatewayMulticastDomainProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayMulticastDomainProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayMulticastDomainProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayMulticastDomainProps |
TypeScript | @aws-cdk/aws-ec2 » CfnTransitGatewayMulticastDomainProps |
Properties for defining a CfnTransitGatewayMulticastDomain.
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';
declare const options: any;
const cfnTransitGatewayMulticastDomainProps: ec2.CfnTransitGatewayMulticastDomainProps = {
transitGatewayId: 'transitGatewayId',
// the properties below are optional
options: options,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The ID of the transit gateway. |
| options? | any | The options for the transit gateway multicast domain. |
| tags? | Cfn[] | The tags for the transit gateway multicast domain. |
transitGatewayId
Type:
string
The ID of the transit gateway.
options?
Type:
any
(optional)
The options for the transit gateway multicast domain.
- AutoAcceptSharedAssociations (enable | disable)
- Igmpv2Support (enable | disable)
- StaticSourcesSupport (enable | disable)
tags?
Type:
Cfn[]
(optional)
The tags for the transit gateway multicast domain.

.NET
Java
Python
TypeScript