#[non_exhaustive]pub struct AwsCloudFrontDistributionOriginGroupBuilder { /* private fields */ }
Expand description
A builder for AwsCloudFrontDistributionOriginGroup
.
Implementations§
source§impl AwsCloudFrontDistributionOriginGroupBuilder
impl AwsCloudFrontDistributionOriginGroupBuilder
sourcepub fn failover_criteria(
self,
input: AwsCloudFrontDistributionOriginGroupFailover
) -> Self
pub fn failover_criteria( self, input: AwsCloudFrontDistributionOriginGroupFailover ) -> Self
Provides the criteria for an origin group to fail over.
sourcepub fn set_failover_criteria(
self,
input: Option<AwsCloudFrontDistributionOriginGroupFailover>
) -> Self
pub fn set_failover_criteria( self, input: Option<AwsCloudFrontDistributionOriginGroupFailover> ) -> Self
Provides the criteria for an origin group to fail over.
sourcepub fn get_failover_criteria(
&self
) -> &Option<AwsCloudFrontDistributionOriginGroupFailover>
pub fn get_failover_criteria( &self ) -> &Option<AwsCloudFrontDistributionOriginGroupFailover>
Provides the criteria for an origin group to fail over.
sourcepub fn build(self) -> AwsCloudFrontDistributionOriginGroup
pub fn build(self) -> AwsCloudFrontDistributionOriginGroup
Consumes the builder and constructs a AwsCloudFrontDistributionOriginGroup
.
Trait Implementations§
source§impl Clone for AwsCloudFrontDistributionOriginGroupBuilder
impl Clone for AwsCloudFrontDistributionOriginGroupBuilder
source§fn clone(&self) -> AwsCloudFrontDistributionOriginGroupBuilder
fn clone(&self) -> AwsCloudFrontDistributionOriginGroupBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for AwsCloudFrontDistributionOriginGroupBuilder
impl Default for AwsCloudFrontDistributionOriginGroupBuilder
source§fn default() -> AwsCloudFrontDistributionOriginGroupBuilder
fn default() -> AwsCloudFrontDistributionOriginGroupBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsCloudFrontDistributionOriginGroupBuilder
impl PartialEq for AwsCloudFrontDistributionOriginGroupBuilder
source§fn eq(&self, other: &AwsCloudFrontDistributionOriginGroupBuilder) -> bool
fn eq(&self, other: &AwsCloudFrontDistributionOriginGroupBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsCloudFrontDistributionOriginGroupBuilder
Auto Trait Implementations§
impl Freeze for AwsCloudFrontDistributionOriginGroupBuilder
impl RefUnwindSafe for AwsCloudFrontDistributionOriginGroupBuilder
impl Send for AwsCloudFrontDistributionOriginGroupBuilder
impl Sync for AwsCloudFrontDistributionOriginGroupBuilder
impl Unpin for AwsCloudFrontDistributionOriginGroupBuilder
impl UnwindSafe for AwsCloudFrontDistributionOriginGroupBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.