interface CfnTransitGatewayMulticastDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayMulticastDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayMulticastDomainMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayMulticastDomainMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayMulticastDomainMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayMulticastDomainMixinProps |
Properties for CfnTransitGatewayMulticastDomainPropsMixin.
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';
declare const options: any;
const cfnTransitGatewayMulticastDomainMixinProps: ec2.CfnTransitGatewayMulticastDomainMixinProps = {
options: options,
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| options? | any | The options for the transit gateway multicast domain. |
| tags? | Cfn[] | The tags for the transit gateway multicast domain. |
| transit | 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.
transitGatewayId?
Type:
string
(optional)
The ID of the transit gateway.

.NET
Go
Java
Python
TypeScript