Class CfnTransitGatewayMulticastDomain.OptionsProperty
The options for the transit gateway multicast domain.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransitGatewayMulticastDomain.OptionsProperty : CfnTransitGatewayMulticastDomain.IOptionsProperty
Syntax (vb)
Public Class CfnTransitGatewayMulticastDomain.OptionsProperty Implements CfnTransitGatewayMulticastDomain.IOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var optionsProperty = new OptionsProperty {
AutoAcceptSharedAssociations = "autoAcceptSharedAssociations",
Igmpv2Support = "igmpv2Support",
StaticSourcesSupport = "staticSourcesSupport"
};
Synopsis
Constructors
| OptionsProperty() | The options for the transit gateway multicast domain. |
Properties
| AutoAcceptSharedAssociations | Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain. |
| Igmpv2Support | Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain. |
| StaticSourcesSupport | Specify whether to enable support for statically configuring multicast group sources for a domain. |
Constructors
OptionsProperty()
The options for the transit gateway multicast domain.
public OptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var optionsProperty = new OptionsProperty {
AutoAcceptSharedAssociations = "autoAcceptSharedAssociations",
Igmpv2Support = "igmpv2Support",
StaticSourcesSupport = "staticSourcesSupport"
};
Properties
AutoAcceptSharedAssociations
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
public string? AutoAcceptSharedAssociations { get; set; }
Property Value
Remarks
Igmpv2Support
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
public string? Igmpv2Support { get; set; }
Property Value
Remarks
StaticSourcesSupport
Specify whether to enable support for statically configuring multicast group sources for a domain.
public string? StaticSourcesSupport { get; set; }