pub struct CustomDns {
pub ds_records: Option<Vec<DsRecord>>,
pub name_servers: Option<Vec<String>>,
}Expand description
Configuration for an arbitrary DNS provider.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ds_records: Option<Vec<DsRecord>>The list of DS records for this domain, which are used to enable DNSSEC. The domain’s DNS provider can provide the values to set here. If this field is empty, DNSSEC is disabled.
name_servers: Option<Vec<String>>Required. A list of name servers that store the DNS zone for this domain. Each name server is a domain name, with Unicode domain names expressed in Punycode format.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CustomDns
impl<'de> Deserialize<'de> for CustomDns
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
impl Part for CustomDns
Auto Trait Implementations§
impl Freeze for CustomDns
impl RefUnwindSafe for CustomDns
impl Send for CustomDns
impl Sync for CustomDns
impl Unpin for CustomDns
impl UnwindSafe for CustomDns
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