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

.NET
Go
Java
Python
TypeScript