Struct aws_sdk_elasticbeanstalk::operation::check_dns_availability::builders::CheckDnsAvailabilityOutputBuilder
source · #[non_exhaustive]pub struct CheckDnsAvailabilityOutputBuilder { /* private fields */ }Expand description
A builder for CheckDnsAvailabilityOutput.
Implementations§
source§impl CheckDnsAvailabilityOutputBuilder
impl CheckDnsAvailabilityOutputBuilder
sourcepub fn available(self, input: bool) -> Self
pub fn available(self, input: bool) -> Self
Indicates if the specified CNAME is available:
-
true: The CNAME is available. -
false: The CNAME is not available.
sourcepub fn set_available(self, input: Option<bool>) -> Self
pub fn set_available(self, input: Option<bool>) -> Self
Indicates if the specified CNAME is available:
-
true: The CNAME is available. -
false: The CNAME is not available.
sourcepub fn get_available(&self) -> &Option<bool>
pub fn get_available(&self) -> &Option<bool>
Indicates if the specified CNAME is available:
-
true: The CNAME is available. -
false: The CNAME is not available.
sourcepub fn fully_qualified_cname(self, input: impl Into<String>) -> Self
pub fn fully_qualified_cname(self, input: impl Into<String>) -> Self
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
sourcepub fn set_fully_qualified_cname(self, input: Option<String>) -> Self
pub fn set_fully_qualified_cname(self, input: Option<String>) -> Self
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
sourcepub fn get_fully_qualified_cname(&self) -> &Option<String>
pub fn get_fully_qualified_cname(&self) -> &Option<String>
The fully qualified CNAME to reserve when CreateEnvironment is called with the provided prefix.
sourcepub fn build(self) -> CheckDnsAvailabilityOutput
pub fn build(self) -> CheckDnsAvailabilityOutput
Consumes the builder and constructs a CheckDnsAvailabilityOutput.
Trait Implementations§
source§impl Clone for CheckDnsAvailabilityOutputBuilder
impl Clone for CheckDnsAvailabilityOutputBuilder
source§fn clone(&self) -> CheckDnsAvailabilityOutputBuilder
fn clone(&self) -> CheckDnsAvailabilityOutputBuilder
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 CheckDnsAvailabilityOutputBuilder
impl Default for CheckDnsAvailabilityOutputBuilder
source§fn default() -> CheckDnsAvailabilityOutputBuilder
fn default() -> CheckDnsAvailabilityOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CheckDnsAvailabilityOutputBuilder
impl PartialEq for CheckDnsAvailabilityOutputBuilder
source§fn eq(&self, other: &CheckDnsAvailabilityOutputBuilder) -> bool
fn eq(&self, other: &CheckDnsAvailabilityOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CheckDnsAvailabilityOutputBuilder
Auto Trait Implementations§
impl Freeze for CheckDnsAvailabilityOutputBuilder
impl RefUnwindSafe for CheckDnsAvailabilityOutputBuilder
impl Send for CheckDnsAvailabilityOutputBuilder
impl Sync for CheckDnsAvailabilityOutputBuilder
impl Unpin for CheckDnsAvailabilityOutputBuilder
impl UnwindSafe for CheckDnsAvailabilityOutputBuilder
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.