Struct aws_sdk_workmail::model::DnsRecord [−][src]
#[non_exhaustive]pub struct DnsRecord {
pub type: Option<String>,
pub hostname: Option<String>,
pub value: Option<String>,
}
Expand description
A DNS record uploaded to your DNS provider.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<String>
The RFC 1035 record type. Possible values: CNAME
, A
, MX
.
hostname: Option<String>
The DNS hostname.- For example, domain.example.com
.
value: Option<String>
The value returned by the DNS for a query to that hostname and record type.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DnsRecord
impl UnwindSafe for DnsRecord
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