Struct aws_sdk_acm::output::ExportCertificateOutput [−][src]
#[non_exhaustive]pub struct ExportCertificateOutput {
pub certificate: Option<String>,
pub certificate_chain: Option<String>,
pub private_key: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
Implementations
The base64 PEM-encoded certificate.
The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.
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.
Creates a new builder-style object to manufacture ExportCertificateOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ExportCertificateOutput
impl Send for ExportCertificateOutput
impl Sync for ExportCertificateOutput
impl Unpin for ExportCertificateOutput
impl UnwindSafe for ExportCertificateOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more