Struct aws_sdk_ec2::types::builders::CreateTransitGatewayMulticastDomainRequestOptionsBuilder
source · #[non_exhaustive]pub struct CreateTransitGatewayMulticastDomainRequestOptionsBuilder { /* private fields */ }
Expand description
A builder for CreateTransitGatewayMulticastDomainRequestOptions
.
Implementations§
source§impl CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl CreateTransitGatewayMulticastDomainRequestOptionsBuilder
sourcepub fn igmpv2_support(self, input: Igmpv2SupportValue) -> Self
pub fn igmpv2_support(self, input: Igmpv2SupportValue) -> Self
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
sourcepub fn set_igmpv2_support(self, input: Option<Igmpv2SupportValue>) -> Self
pub fn set_igmpv2_support(self, input: Option<Igmpv2SupportValue>) -> Self
Specify whether to enable Internet Group Management Protocol (IGMP) version 2 for the transit gateway multicast domain.
sourcepub fn get_igmpv2_support(&self) -> &Option<Igmpv2SupportValue>
pub fn get_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, input: StaticSourcesSupportValue) -> Self
pub fn static_sources_support(self, input: StaticSourcesSupportValue) -> Self
Specify whether to enable support for statically configuring multicast group sources for a domain.
sourcepub fn set_static_sources_support(
self,
input: Option<StaticSourcesSupportValue>,
) -> Self
pub fn set_static_sources_support( self, input: Option<StaticSourcesSupportValue>, ) -> Self
Specify whether to enable support for statically configuring multicast group sources for a domain.
sourcepub fn get_static_sources_support(&self) -> &Option<StaticSourcesSupportValue>
pub fn get_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.
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
Indicates whether to automatically accept cross-account subnet associations that are associated with the transit gateway multicast domain.
sourcepub fn build(self) -> CreateTransitGatewayMulticastDomainRequestOptions
pub fn build(self) -> CreateTransitGatewayMulticastDomainRequestOptions
Consumes the builder and constructs a CreateTransitGatewayMulticastDomainRequestOptions
.
Trait Implementations§
source§impl Clone for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl Clone for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
source§fn clone(&self) -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
fn clone(&self) -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl Default for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
source§fn default() -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
fn default() -> CreateTransitGatewayMulticastDomainRequestOptionsBuilder
source§impl PartialEq for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl PartialEq for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
source§fn eq(
&self,
other: &CreateTransitGatewayMulticastDomainRequestOptionsBuilder,
) -> bool
fn eq( &self, other: &CreateTransitGatewayMulticastDomainRequestOptionsBuilder, ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
Auto Trait Implementations§
impl Freeze for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl RefUnwindSafe for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl Send for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl Sync for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl Unpin for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
impl UnwindSafe for CreateTransitGatewayMulticastDomainRequestOptionsBuilder
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