#[non_exhaustive]pub struct CreateTransitGatewayMulticastDomainRequestOptions {
pub igmpv2_support: Option<Igmpv2SupportValue>,
pub static_sources_support: Option<StaticSourcesSupportValue>,
pub auto_accept_shared_associations: Option<AutoAcceptSharedAssociationsValue>,
}
Expand description
The options for the transit gateway multicast domain.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.igmpv2_support: Option<Igmpv2SupportValue>
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
static_sources_support: Option<StaticSourcesSupportValue>
Specify whether to enable support for statically configuring multicast group sources for a domain.
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
Implementations§
source§impl CreateTransitGatewayMulticastDomainRequestOptions
impl CreateTransitGatewayMulticastDomainRequestOptions
sourcepub fn igmpv2_support(&self) -> Option<&Igmpv2SupportValue>
pub fn igmpv2_support(&self) -> Option<&Igmpv2SupportValue>
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
sourcepub fn static_sources_support(&self) -> Option<&StaticSourcesSupportValue>
pub fn static_sources_support(&self) -> Option<&StaticSourcesSupportValue>
Specify whether to enable support for statically configuring multicast group sources for a domain.
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
source§impl CreateTransitGatewayMulticastDomainRequestOptions
impl CreateTransitGatewayMulticastDomainRequestOptions
sourcepub fn builder() -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
pub fn builder() -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
Creates a new builder-style object to manufacture CreateTransitGatewayMulticastDomainRequestOptions
.
Trait Implementations§
source§impl Clone for CreateTransitGatewayMulticastDomainRequestOptions
impl Clone for CreateTransitGatewayMulticastDomainRequestOptions
source§fn clone(&self) -> CreateTransitGatewayMulticastDomainRequestOptions
fn clone(&self) -> CreateTransitGatewayMulticastDomainRequestOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateTransitGatewayMulticastDomainRequestOptions
impl PartialEq for CreateTransitGatewayMulticastDomainRequestOptions
source§fn eq(&self, other: &CreateTransitGatewayMulticastDomainRequestOptions) -> bool
fn eq(&self, other: &CreateTransitGatewayMulticastDomainRequestOptions) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateTransitGatewayMulticastDomainRequestOptions
Auto Trait Implementations§
impl Freeze for CreateTransitGatewayMulticastDomainRequestOptions
impl RefUnwindSafe for CreateTransitGatewayMulticastDomainRequestOptions
impl Send for CreateTransitGatewayMulticastDomainRequestOptions
impl Sync for CreateTransitGatewayMulticastDomainRequestOptions
impl Unpin for CreateTransitGatewayMulticastDomainRequestOptions
impl UnwindSafe for CreateTransitGatewayMulticastDomainRequestOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more