pub struct CustomDomainConfig {
pub certificate: CustomCertificateConfig,
pub domain: String,
}Expand description
Custom domain configuration for a single resource.
JSON schema
{
"description": "Custom domain configuration for a single resource.",
"type": "object",
"required": [
"certificate",
"domain"
],
"properties": {
"certificate": {
"description": "Customer-provided certificate reference.",
"allOf": [
{
"$ref": "#/components/schemas/CustomCertificateConfig"
}
]
},
"domain": {
"description": "Fully qualified domain name to use.",
"type": "string"
}
}
}Fields§
§certificate: CustomCertificateConfigCustomer-provided certificate reference.
domain: StringFully qualified domain name to use.
Implementations§
Source§impl CustomDomainConfig
impl CustomDomainConfig
pub fn builder() -> CustomDomainConfig
Trait Implementations§
Source§impl Clone for CustomDomainConfig
impl Clone for CustomDomainConfig
Source§fn clone(&self) -> CustomDomainConfig
fn clone(&self) -> CustomDomainConfig
Returns a duplicate 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 CustomDomainConfig
impl Debug for CustomDomainConfig
Source§impl<'de> Deserialize<'de> for CustomDomainConfig
impl<'de> Deserialize<'de> for CustomDomainConfig
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 From<&CustomDomainConfig> for CustomDomainConfig
impl From<&CustomDomainConfig> for CustomDomainConfig
Source§fn from(value: &CustomDomainConfig) -> Self
fn from(value: &CustomDomainConfig) -> Self
Converts to this type from the input type.
Source§impl From<CustomDomainConfig> for CustomDomainConfig
impl From<CustomDomainConfig> for CustomDomainConfig
Source§fn from(value: CustomDomainConfig) -> Self
fn from(value: CustomDomainConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for CustomDomainConfig
impl Serialize for CustomDomainConfig
Source§impl TryFrom<CustomDomainConfig> for CustomDomainConfig
impl TryFrom<CustomDomainConfig> for CustomDomainConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CustomDomainConfig) -> Result<Self, ConversionError>
fn try_from(value: CustomDomainConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CustomDomainConfig
impl RefUnwindSafe for CustomDomainConfig
impl Send for CustomDomainConfig
impl Sync for CustomDomainConfig
impl Unpin for CustomDomainConfig
impl UnsafeUnpin for CustomDomainConfig
impl UnwindSafe for CustomDomainConfig
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