interface CfnTransitGatewayMulticastDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTransitGatewayMulticastDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTransitGatewayMulticastDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTransitGatewayMulticastDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTransitGatewayMulticastDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
declare const options: any;
const cfnTransitGatewayMulticastDomainMixinProps: ec2_mixins.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