pub struct GetCertificateResponse {
pub certificate: Option<String>,
pub certificate_chain: Option<String>,
}
Fields§
§certificate: Option<String>
The ACM-issued certificate corresponding to the ARN specified as input.
certificate_chain: Option<String>
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
Trait Implementations§
Source§impl Clone for GetCertificateResponse
impl Clone for GetCertificateResponse
Source§fn clone(&self) -> GetCertificateResponse
fn clone(&self) -> GetCertificateResponse
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 GetCertificateResponse
impl Debug for GetCertificateResponse
Source§impl Default for GetCertificateResponse
impl Default for GetCertificateResponse
Source§fn default() -> GetCertificateResponse
fn default() -> GetCertificateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCertificateResponse
impl<'de> Deserialize<'de> for GetCertificateResponse
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 GetCertificateResponse
impl PartialEq for GetCertificateResponse
impl StructuralPartialEq for GetCertificateResponse
Auto Trait Implementations§
impl Freeze for GetCertificateResponse
impl RefUnwindSafe for GetCertificateResponse
impl Send for GetCertificateResponse
impl Sync for GetCertificateResponse
impl Unpin for GetCertificateResponse
impl UnwindSafe for GetCertificateResponse
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