pub struct AwsCustomCertificateConfig {
pub certificate_arn: String,
}Expand description
AwsCustomCertificateConfig
JSON schema
{
"type": "object",
"required": [
"certificateArn"
],
"properties": {
"certificateArn": {
"type": "string"
}
}
}Fields§
§certificate_arn: StringImplementations§
Source§impl AwsCustomCertificateConfig
impl AwsCustomCertificateConfig
pub fn builder() -> AwsCustomCertificateConfig
Trait Implementations§
Source§impl Clone for AwsCustomCertificateConfig
impl Clone for AwsCustomCertificateConfig
Source§fn clone(&self) -> AwsCustomCertificateConfig
fn clone(&self) -> AwsCustomCertificateConfig
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 AwsCustomCertificateConfig
impl Debug for AwsCustomCertificateConfig
Source§impl<'de> Deserialize<'de> for AwsCustomCertificateConfig
impl<'de> Deserialize<'de> for AwsCustomCertificateConfig
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<&AwsCustomCertificateConfig> for AwsCustomCertificateConfig
impl From<&AwsCustomCertificateConfig> for AwsCustomCertificateConfig
Source§fn from(value: &AwsCustomCertificateConfig) -> Self
fn from(value: &AwsCustomCertificateConfig) -> Self
Converts to this type from the input type.
Source§impl From<AwsCustomCertificateConfig> for AwsCustomCertificateConfig
impl From<AwsCustomCertificateConfig> for AwsCustomCertificateConfig
Source§fn from(value: AwsCustomCertificateConfig) -> Self
fn from(value: AwsCustomCertificateConfig) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsCustomCertificateConfig> for AwsCustomCertificateConfig
impl TryFrom<AwsCustomCertificateConfig> for AwsCustomCertificateConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AwsCustomCertificateConfig) -> Result<Self, ConversionError>
fn try_from(value: AwsCustomCertificateConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsCustomCertificateConfig
impl RefUnwindSafe for AwsCustomCertificateConfig
impl Send for AwsCustomCertificateConfig
impl Sync for AwsCustomCertificateConfig
impl Unpin for AwsCustomCertificateConfig
impl UnsafeUnpin for AwsCustomCertificateConfig
impl UnwindSafe for AwsCustomCertificateConfig
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