pub struct ExportCertificateResponse {
pub certificate: Option<String>,
pub certificate_chain: Option<String>,
pub private_key: Option<String>,
}
Fields§
§certificate: Option<String>
The base64 PEM-encoded certificate.
certificate_chain: Option<String>
The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.
private_key: Option<String>
The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.
Trait Implementations§
Source§impl Clone for ExportCertificateResponse
impl Clone for ExportCertificateResponse
Source§fn clone(&self) -> ExportCertificateResponse
fn clone(&self) -> ExportCertificateResponse
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 ExportCertificateResponse
impl Debug for ExportCertificateResponse
Source§impl Default for ExportCertificateResponse
impl Default for ExportCertificateResponse
Source§fn default() -> ExportCertificateResponse
fn default() -> ExportCertificateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportCertificateResponse
impl<'de> Deserialize<'de> for ExportCertificateResponse
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 StructuralPartialEq for ExportCertificateResponse
Auto Trait Implementations§
impl Freeze for ExportCertificateResponse
impl RefUnwindSafe for ExportCertificateResponse
impl Send for ExportCertificateResponse
impl Sync for ExportCertificateResponse
impl Unpin for ExportCertificateResponse
impl UnwindSafe for ExportCertificateResponse
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