interface OptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayMulticastDomain.OptionsProperty | 
|  Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayMulticastDomain.OptionsProperty | 
|  Python | aws_cdk.aws_ec2.CfnTransitGatewayMulticastDomain.OptionsProperty | 
|  TypeScript | @aws-cdk/aws-ec2»CfnTransitGatewayMulticastDomain»OptionsProperty | 
The options for the transit gateway multicast domain.
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 optionsProperty: ec2.CfnTransitGatewayMulticastDomain.OptionsProperty = {
  autoAcceptSharedAssociations: 'autoAcceptSharedAssociations',
  igmpv2Support: 'igmpv2Support',
  staticSourcesSupport: 'staticSourcesSupport',
};
Properties
| Name | Type | Description | 
|---|---|---|
| auto | string | Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain. | 
| igmpv2 | string | Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain. | 
| static | string | Specify whether to enable support for statically configuring multicast group sources for a domain. | 
autoAcceptSharedAssociations?
Type:
string
(optional)
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
igmpv2Support?
Type:
string
(optional)
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
staticSourcesSupport?
Type:
string
(optional)
Specify whether to enable support for statically configuring multicast group sources for a domain.
