[][src]Struct rusoto_acm::ResourceRecord

pub struct ResourceRecord {
    pub name: String,
    pub type_: String,
    pub value: String,
}

Contains a DNS record value that you can use to can use to validate ownership or control of a domain. This is used by the DescribeCertificate action.

Fields

The name of the DNS record to create in your domain. This is supplied by ACM.

The type of DNS record. Currently this can be CNAME.

The value of the CNAME record to add to your DNS database. This is supplied by ACM.

Trait Implementations

impl Clone for ResourceRecord
[src]

Performs copy-assignment from source. Read more

impl Default for ResourceRecord
[src]

impl PartialEq<ResourceRecord> for ResourceRecord
[src]

impl Debug for ResourceRecord
[src]

impl<'de> Deserialize<'de> for ResourceRecord
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self