pub struct ResourceRecord {
pub name: String,
pub type_: String,
pub value: String,
}
Expand description
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§
§name: String
The name of the DNS record to create in your domain. This is supplied by ACM.
type_: String
The type of DNS record. Currently this can be CNAME
.
value: String
The value of the CNAME record to add to your DNS database. This is supplied by ACM.
Trait Implementations§
Source§impl Clone for ResourceRecord
impl Clone for ResourceRecord
Source§fn clone(&self) -> ResourceRecord
fn clone(&self) -> ResourceRecord
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResourceRecord
impl Debug for ResourceRecord
Source§impl Default for ResourceRecord
impl Default for ResourceRecord
Source§fn default() -> ResourceRecord
fn default() -> ResourceRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceRecord
impl<'de> Deserialize<'de> for ResourceRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResourceRecord
impl PartialEq for ResourceRecord
impl StructuralPartialEq for ResourceRecord
Auto Trait Implementations§
impl Freeze for ResourceRecord
impl RefUnwindSafe for ResourceRecord
impl Send for ResourceRecord
impl Sync for ResourceRecord
impl Unpin for ResourceRecord
impl UnwindSafe for ResourceRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more