Struct aws_sdk_acm::model::ResourceRecord [−][src]
#[non_exhaustive]pub struct ResourceRecord {
pub name: Option<String>,
pub type: Option<RecordType>,
pub value: Option<String>,
}
Expand description
Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the DescribeCertificate
action.
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.name: Option<String>
The name of the DNS record to create in your domain. This is supplied by ACM.
type: Option<RecordType>
The type of DNS record. Currently this can be CNAME
.
value: Option<String>
The value of the CNAME record to add to your DNS database. This is supplied by ACM.
Implementations
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
.
Creates a new builder-style object to manufacture ResourceRecord
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 ResourceRecord
impl Send for ResourceRecord
impl Sync for ResourceRecord
impl Unpin for ResourceRecord
impl UnwindSafe for ResourceRecord
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