Struct aws_sdk_acm::client::fluent_builders::ImportCertificate
source · pub struct ImportCertificate { /* private fields */ }
Expand description
Fluent builder constructing a request to ImportCertificate
.
Imports a certificate into Certificate Manager (ACM) to use with services that are integrated with ACM. Note that integrated services allow only certificate types and keys they support to be associated with their resources. Further, their support differs depending on whether the certificate is imported into IAM or into ACM. For more information, see the documentation for each service. For more information about importing certificates into ACM, see Importing Certificates in the Certificate Manager User Guide.
ACM does not provide managed renewal for certificates that you import.
Note the following guidelines when importing third party certificates:
-
You must enter the private key that matches the certificate you are importing.
-
The private key must be unencrypted. You cannot import a private key that is protected by a password or a passphrase.
-
The private key must be no larger than 5 KB (5,120 bytes).
-
If the certificate you are importing is not self-signed, you must enter its certificate chain.
-
If a certificate chain is included, the issuer must be the subject of one of the certificates in the chain.
-
The certificate, private key, and certificate chain must be PEM-encoded.
-
The current time must be between the
Not Before
andNot After
certificate fields. -
The
Issuer
field must not be empty. -
The OCSP authority URL, if present, must not exceed 1000 characters.
-
To import a new certificate, omit the
CertificateArn
argument. Include this argument only when you want to replace a previously imported certificate. -
When you import a certificate by using the CLI, you must specify the certificate, the certificate chain, and the private key by their file names preceded by
fileb://
. For example, you can specify a certificate saved in theC:\temp
folder asfileb://C:\temp\certificate_to_import.pem
. If you are making an HTTP or HTTPS Query request, include these arguments as BLOBs. -
When you import a certificate by using an SDK, you must specify the certificate, the certificate chain, and the private key files in the manner required by the programming language you're using.
-
The cryptographic algorithm of an imported certificate must match the algorithm of the signing CA. For example, if the signing CA key type is RSA, then the certificate key type must also be RSA.
This operation returns the Amazon Resource Name (ARN) of the imported certificate.
Implementations§
source§impl ImportCertificate
impl ImportCertificate
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ImportCertificate, AwsResponseRetryClassifier>, SdkError<ImportCertificateError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ImportCertificate, AwsResponseRetryClassifier>, SdkError<ImportCertificateError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ImportCertificateOutput, SdkError<ImportCertificateError>>
pub async fn send(
self
) -> Result<ImportCertificateOutput, SdkError<ImportCertificateError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn certificate_arn(self, input: impl Into<String>) -> Self
pub fn certificate_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
sourcepub fn set_certificate_arn(self, input: Option<String>) -> Self
pub fn set_certificate_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
sourcepub fn certificate(self, input: Blob) -> Self
pub fn certificate(self, input: Blob) -> Self
The certificate to import.
sourcepub fn set_certificate(self, input: Option<Blob>) -> Self
pub fn set_certificate(self, input: Option<Blob>) -> Self
The certificate to import.
sourcepub fn private_key(self, input: Blob) -> Self
pub fn private_key(self, input: Blob) -> Self
The private key that matches the public key in the certificate.
sourcepub fn set_private_key(self, input: Option<Blob>) -> Self
pub fn set_private_key(self, input: Option<Blob>) -> Self
The private key that matches the public key in the certificate.
sourcepub fn certificate_chain(self, input: Blob) -> Self
pub fn certificate_chain(self, input: Blob) -> Self
The PEM encoded certificate chain.
sourcepub fn set_certificate_chain(self, input: Option<Blob>) -> Self
pub fn set_certificate_chain(self, input: Option<Blob>) -> Self
The PEM encoded certificate chain.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
One or more resource tags to associate with the imported certificate.
Note: You cannot apply tags when reimporting a certificate.
One or more resource tags to associate with the imported certificate.
Note: You cannot apply tags when reimporting a certificate.
Trait Implementations§
source§impl Clone for ImportCertificate
impl Clone for ImportCertificate
source§fn clone(&self) -> ImportCertificate
fn clone(&self) -> ImportCertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more