Struct aws_sdk_acm::client::fluent_builders::ImportCertificate [−][src]
pub struct ImportCertificate<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to ImportCertificate
.
Imports a certificate into Amazon Web Services 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 Amazon Web Services 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
impl<C, M, R> ImportCertificate<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> ImportCertificate<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<ImportCertificateOutput, SdkError<ImportCertificateError>> where
R::Policy: SmithyRetryPolicy<ImportCertificateInputOperationOutputAlias, ImportCertificateOutput, ImportCertificateError, ImportCertificateInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<ImportCertificateOutput, SdkError<ImportCertificateError>> where
R::Policy: SmithyRetryPolicy<ImportCertificateInputOperationOutputAlias, ImportCertificateOutput, ImportCertificateError, ImportCertificateInputOperationRetryAlias>,
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.
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
The certificate to import.
The certificate to import.
The private key that matches the public key in the certificate.
The private key that matches the public key in the certificate.
The PEM encoded certificate chain.
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
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for ImportCertificate<C, M, R>
impl<C, M, R> Send for ImportCertificate<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for ImportCertificate<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for ImportCertificate<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for ImportCertificate<C, M, R>
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