Struct aws_sdk_acm::input::ExportCertificateInput [−][src]
#[non_exhaustive]pub struct ExportCertificateInput {
pub certificate_arn: Option<String>,
pub passphrase: Option<Blob>,
}
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_arn: Option<String>
An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:
arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012
passphrase: Option<Blob>
Passphrase to associate with the encrypted exported private key. If you want to later decrypt the private key, you must have the passphrase. You can use the following OpenSSL command to decrypt a private key:
openssl rsa -in encrypted_key.pem -out decrypted_key.pem
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExportCertificate, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExportCertificate, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ExportCertificate
>
Creates a new builder-style object to manufacture ExportCertificateInput
An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:
arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012
Passphrase to associate with the encrypted exported private key. If you want to later decrypt the private key, you must have the passphrase. You can use the following OpenSSL command to decrypt a private key:
openssl rsa -in encrypted_key.pem -out decrypted_key.pem
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 ExportCertificateInput
impl Send for ExportCertificateInput
impl Sync for ExportCertificateInput
impl Unpin for ExportCertificateInput
impl UnwindSafe for ExportCertificateInput
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