#[non_exhaustive]pub struct CheckDnsAvailabilityOutput {
pub available: Option<bool>,
pub fully_qualified_cname: Option<String>,
}
Expand description
Indicates if the specified CNAME is available.
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.available: Option<bool>
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
fully_qualified_cname: Option<String>
The fully qualified CNAME to reserve when CreateEnvironment
is called with the provided prefix.
Implementations
Indicates if the specified CNAME is available:
-
true
: The CNAME is available. -
false
: The CNAME is not available.
The fully qualified CNAME to reserve when CreateEnvironment
is called with the provided prefix.
Creates a new builder-style object to manufacture CheckDnsAvailabilityOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CheckDnsAvailabilityOutput
impl Send for CheckDnsAvailabilityOutput
impl Sync for CheckDnsAvailabilityOutput
impl Unpin for CheckDnsAvailabilityOutput
impl UnwindSafe for CheckDnsAvailabilityOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more