Struct rusoto_elasticbeanstalk::CheckDNSAvailabilityResultMessage[][src]

pub struct CheckDNSAvailabilityResultMessage {
    pub available: Option<bool>,
    pub fully_qualified_cname: Option<String>,
}

Indicates if the specified CNAME is available.

Fields

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.

Trait Implementations

impl Default for CheckDNSAvailabilityResultMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for CheckDNSAvailabilityResultMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CheckDNSAvailabilityResultMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CheckDNSAvailabilityResultMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations