Struct rusoto_acm::ResourceRecord[][src]

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 Default for ResourceRecord
[src]

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

impl Debug for ResourceRecord
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceRecord
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceRecord
[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