@aws-sdk/client-acm 3.830.0 → 3.831.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/README.md +9 -4
  2. package/dist-cjs/index.js +44 -0
  3. package/dist-es/ACM.js +2 -0
  4. package/dist-es/commands/RevokeCertificateCommand.js +22 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +4 -0
  7. package/dist-es/protocols/Aws_json1_1.js +20 -0
  8. package/dist-types/ACM.d.ts +8 -3
  9. package/dist-types/ACMClient.d.ts +4 -5
  10. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +3 -18
  11. package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -14
  12. package/dist-types/commands/DescribeCertificateCommand.d.ts +3 -5
  13. package/dist-types/commands/ExportCertificateCommand.d.ts +3 -11
  14. package/dist-types/commands/GetCertificateCommand.d.ts +3 -10
  15. package/dist-types/commands/ImportCertificateCommand.d.ts +3 -64
  16. package/dist-types/commands/ListCertificatesCommand.d.ts +4 -5
  17. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +2 -5
  18. package/dist-types/commands/PutAccountConfigurationCommand.d.ts +2 -8
  19. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +3 -10
  20. package/dist-types/commands/RenewCertificateCommand.d.ts +3 -9
  21. package/dist-types/commands/RequestCertificateCommand.d.ts +4 -20
  22. package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -13
  23. package/dist-types/commands/RevokeCertificateCommand.d.ts +91 -0
  24. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -6
  25. package/dist-types/commands/index.d.ts +1 -0
  26. package/dist-types/index.d.ts +1 -3
  27. package/dist-types/models/models_0.d.ts +148 -492
  28. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  29. package/dist-types/ts3.4/ACM.d.ts +17 -0
  30. package/dist-types/ts3.4/ACMClient.d.ts +6 -0
  31. package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +16 -0
  34. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  35. package/package.json +1 -1
@@ -27,12 +27,7 @@ declare const PutAccountConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Adds or modifies account-level configurations in ACM. </p>
31
- * <p>The supported configuration option is <code>DaysBeforeExpiry</code>. This option specifies
32
- * the number of days prior to certificate expiration when ACM starts generating
33
- * <code>EventBridge</code> events. ACM sends one event per day per certificate until the
34
- * certificate expires. By default, accounts receive events starting 45 days before certificate
35
- * expiration.</p>
30
+ * <p>Adds or modifies account-level configurations in ACM. </p> <p>The supported configuration option is <code>DaysBeforeExpiry</code>. This option specifies the number of days prior to certificate expiration when ACM starts generating <code>EventBridge</code> events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.</p>
36
31
  * @example
37
32
  * Use a bare-bones client and the command you need to make an API call.
38
33
  * ```javascript
@@ -61,8 +56,7 @@ declare const PutAccountConfigurationCommand_base: {
61
56
  * <p>You do not have access required to perform this action.</p>
62
57
  *
63
58
  * @throws {@link ConflictException} (client fault)
64
- * <p>You are trying to update a resource or configuration that is already being created or
65
- * updated. Wait for the previous operation to finish and try again.</p>
59
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
66
60
  *
67
61
  * @throws {@link ThrottlingException} (client fault)
68
62
  * <p>The request was denied because it exceeded a quota.</p>
@@ -27,12 +27,7 @@ declare const RemoveTagsFromCertificateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If
31
- * you do not specify the value portion of the tag when calling this function, the tag will be
32
- * removed regardless of value. If you specify a value, the tag is removed only if it is
33
- * associated with the specified value. </p>
34
- * <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To
35
- * view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
30
+ * <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. </p> <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
36
31
  * @example
37
32
  * Use a bare-bones client and the command you need to make an API call.
38
33
  * ```javascript
@@ -67,12 +62,10 @@ declare const RemoveTagsFromCertificateCommand_base: {
67
62
  * <p>An input parameter was invalid.</p>
68
63
  *
69
64
  * @throws {@link InvalidTagException} (client fault)
70
- * <p>One or both of the values that make up the key-value pair is not valid. For example, you
71
- * cannot specify a tag value that begins with <code>aws:</code>.</p>
65
+ * <p>One or both of the values that make up the key-value pair is not valid. For example, you cannot specify a tag value that begins with <code>aws:</code>.</p>
72
66
  *
73
67
  * @throws {@link ResourceNotFoundException} (client fault)
74
- * <p>The specified certificate cannot be found in the caller's account or the caller's account
75
- * cannot be found.</p>
68
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
76
69
  *
77
70
  * @throws {@link TagPolicyException} (client fault)
78
71
  * <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
@@ -27,11 +27,7 @@ declare const RenewCertificateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Renews an eligible ACM certificate. At this time, only exported private certificates can
31
- * be renewed with this operation. In order to renew your Amazon Web Services Private CA certificates with ACM, you
32
- * must first <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PcaPermissions.html">grant the ACM
33
- * service principal permission to do so</a>. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/manual-renewal.html">Testing Managed Renewal</a>
34
- * in the ACM User Guide.</p>
30
+ * <p>Renews an <a href="https://docs.aws.amazon.com/acm/latest/userguide/managed-renewal.html">eligible ACM certificate</a>. In order to renew your Amazon Web Services Private CA certificates with ACM, you must first <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PcaPermissions.html">grant the ACM service principal permission to do so</a>. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/manual-renewal.html">Testing Managed Renewal</a> in the ACM User Guide.</p>
35
31
  * @example
36
32
  * Use a bare-bones client and the command you need to make an API call.
37
33
  * ```javascript
@@ -57,12 +53,10 @@ declare const RenewCertificateCommand_base: {
57
53
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
58
54
  *
59
55
  * @throws {@link RequestInProgressException} (client fault)
60
- * <p>The certificate request is in process and the certificate in your account has not yet been
61
- * issued.</p>
56
+ * <p>The certificate request is in process and the certificate in your account has not yet been issued.</p>
62
57
  *
63
58
  * @throws {@link ResourceNotFoundException} (client fault)
64
- * <p>The specified certificate cannot be found in the caller's account or the caller's account
65
- * cannot be found.</p>
59
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
66
60
  *
67
61
  * @throws {@link ACMServiceException}
68
62
  * <p>Base exception class for all service exceptions from ACM service.</p>
@@ -27,22 +27,7 @@ declare const RequestCertificateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Requests an ACM certificate for use with other Amazon Web Services services. To request an ACM
31
- * certificate, you must specify a fully qualified domain name (FQDN) in the
32
- * <code>DomainName</code> parameter. You can also specify additional FQDNs in the
33
- * <code>SubjectAlternativeNames</code> parameter. </p>
34
- * <p>If you are requesting a private certificate, domain validation is not required. If you are
35
- * requesting a public certificate, each domain name that you specify must be validated to verify
36
- * that you own or control the domain. You can use <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html">DNS validation</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html">email validation</a>.
37
- * We recommend that you use DNS validation. ACM issues public certificates after receiving
38
- * approval from the domain owner. </p>
39
- * <note>
40
- * <p>ACM behavior differs from the <a href="https://datatracker.ietf.org/doc/html/rfc6125#appendix-B.2">RFC 6125</a>
41
- * specification of the certificate validation process. ACM first checks for a Subject
42
- * Alternative Name, and, if it finds one, ignores the common name (CN).</p>
43
- * </note>
44
- * <p>After successful completion of the <code>RequestCertificate</code> action, there is a
45
- * delay of several seconds before you can retrieve information about the new certificate.</p>
30
+ * <p>Requests an ACM certificate for use with other Amazon Web Services services. To request an ACM certificate, you must specify a fully qualified domain name (FQDN) in the <code>DomainName</code> parameter. You can also specify additional FQDNs in the <code>SubjectAlternativeNames</code> parameter. </p> <p>If you are requesting a private certificate, domain validation is not required. If you are requesting a public certificate, each domain name that you specify must be validated to verify that you own or control the domain. You can use <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html">DNS validation</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html">email validation</a>. We recommend that you use DNS validation.</p> <note> <p>ACM behavior differs from the <a href="https://datatracker.ietf.org/doc/html/rfc6125#appendix-B.2">RFC 6125</a> specification of the certificate validation process. ACM first checks for a Subject Alternative Name, and, if it finds one, ignores the common name (CN).</p> </note> <p>After successful completion of the <code>RequestCertificate</code> action, there is a delay of several seconds before you can retrieve information about the new certificate.</p>
46
31
  * @example
47
32
  * Use a bare-bones client and the command you need to make an API call.
48
33
  * ```javascript
@@ -64,6 +49,7 @@ declare const RequestCertificateCommand_base: {
64
49
  * ],
65
50
  * Options: { // CertificateOptions
66
51
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
52
+ * Export: "ENABLED" || "DISABLED",
67
53
  * },
68
54
  * CertificateAuthorityArn: "STRING_VALUE",
69
55
  * Tags: [ // TagList
@@ -93,15 +79,13 @@ declare const RequestCertificateCommand_base: {
93
79
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
94
80
  *
95
81
  * @throws {@link InvalidDomainValidationOptionsException} (client fault)
96
- * <p>One or more values in the <a>DomainValidationOption</a> structure is
97
- * incorrect.</p>
82
+ * <p>One or more values in the <a>DomainValidationOption</a> structure is incorrect.</p>
98
83
  *
99
84
  * @throws {@link InvalidParameterException} (client fault)
100
85
  * <p>An input parameter was invalid.</p>
101
86
  *
102
87
  * @throws {@link InvalidTagException} (client fault)
103
- * <p>One or both of the values that make up the key-value pair is not valid. For example, you
104
- * cannot specify a tag value that begins with <code>aws:</code>.</p>
88
+ * <p>One or both of the values that make up the key-value pair is not valid. For example, you cannot specify a tag value that begins with <code>aws:</code>.</p>
105
89
  *
106
90
  * @throws {@link LimitExceededException} (client fault)
107
91
  * <p>An ACM quota has been exceeded.</p>
@@ -27,15 +27,7 @@ declare const ResendValidationEmailCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Resends the email that requests domain ownership validation. The domain owner or an
31
- * authorized representative must approve the ACM certificate before it can be issued. The
32
- * certificate can be approved by clicking a link in the mail to navigate to the Amazon
33
- * certificate approval website and then clicking <b>I Approve</b>.
34
- * However, the validation email can be blocked by spam filters. Therefore, if you do not receive
35
- * the original mail, you can request that the mail be resent within 72 hours of requesting the
36
- * ACM certificate. If more than 72 hours have elapsed since your original request or since
37
- * your last attempt to resend validation mail, you must request a new certificate. For more
38
- * information about setting up your contact email addresses, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/setup-email.html">Configure Email for your Domain</a>. </p>
30
+ * <p>Resends the email that requests domain ownership validation. The domain owner or an authorized representative must approve the ACM certificate before it can be issued. The certificate can be approved by clicking a link in the mail to navigate to the Amazon certificate approval website and then clicking <b>I Approve</b>. However, the validation email can be blocked by spam filters. Therefore, if you do not receive the original mail, you can request that the mail be resent within 72 hours of requesting the ACM certificate. If more than 72 hours have elapsed since your original request or since your last attempt to resend validation mail, you must request a new certificate. For more information about setting up your contact email addresses, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/setup-email.html">Configure Email for your Domain</a>. </p>
39
31
  * @example
40
32
  * Use a bare-bones client and the command you need to make an API call.
41
33
  * ```javascript
@@ -63,15 +55,13 @@ declare const ResendValidationEmailCommand_base: {
63
55
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
64
56
  *
65
57
  * @throws {@link InvalidDomainValidationOptionsException} (client fault)
66
- * <p>One or more values in the <a>DomainValidationOption</a> structure is
67
- * incorrect.</p>
58
+ * <p>One or more values in the <a>DomainValidationOption</a> structure is incorrect.</p>
68
59
  *
69
60
  * @throws {@link InvalidStateException} (client fault)
70
61
  * <p>Processing has reached an invalid state.</p>
71
62
  *
72
63
  * @throws {@link ResourceNotFoundException} (client fault)
73
- * <p>The specified certificate cannot be found in the caller's account or the caller's account
74
- * cannot be found.</p>
64
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
75
65
  *
76
66
  * @throws {@link ACMServiceException}
77
67
  * <p>Base exception class for all service exceptions from ACM service.</p>
@@ -0,0 +1,91 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import { RevokeCertificateRequest, RevokeCertificateResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link RevokeCertificateCommand}.
14
+ */
15
+ export interface RevokeCertificateCommandInput extends RevokeCertificateRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RevokeCertificateCommand}.
21
+ */
22
+ export interface RevokeCertificateCommandOutput extends RevokeCertificateResponse, __MetadataBearer {
23
+ }
24
+ declare const RevokeCertificateCommand_base: {
25
+ new (input: RevokeCertificateCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: RevokeCertificateCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Revokes a public ACM certificate. You can only revoke certificates that have been previously exported.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ACMClient, RevokeCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
35
+ * // const { ACMClient, RevokeCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
36
+ * const client = new ACMClient(config);
37
+ * const input = { // RevokeCertificateRequest
38
+ * CertificateArn: "STRING_VALUE", // required
39
+ * RevocationReason: "UNSPECIFIED" || "KEY_COMPROMISE" || "CA_COMPROMISE" || "AFFILIATION_CHANGED" || "SUPERCEDED" || "SUPERSEDED" || "CESSATION_OF_OPERATION" || "CERTIFICATE_HOLD" || "REMOVE_FROM_CRL" || "PRIVILEGE_WITHDRAWN" || "A_A_COMPROMISE", // required
40
+ * };
41
+ * const command = new RevokeCertificateCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // RevokeCertificateResponse
44
+ * // CertificateArn: "STRING_VALUE",
45
+ * // };
46
+ *
47
+ * ```
48
+ *
49
+ * @param RevokeCertificateCommandInput - {@link RevokeCertificateCommandInput}
50
+ * @returns {@link RevokeCertificateCommandOutput}
51
+ * @see {@link RevokeCertificateCommandInput} for command's `input` shape.
52
+ * @see {@link RevokeCertificateCommandOutput} for command's `response` shape.
53
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You do not have access required to perform this action.</p>
57
+ *
58
+ * @throws {@link ConflictException} (client fault)
59
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
60
+ *
61
+ * @throws {@link InvalidArnException} (client fault)
62
+ * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
63
+ *
64
+ * @throws {@link ResourceInUseException} (client fault)
65
+ * <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the association and try again.</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
69
+ *
70
+ * @throws {@link ThrottlingException} (client fault)
71
+ * <p>The request was denied because it exceeded a quota.</p>
72
+ *
73
+ * @throws {@link ACMServiceException}
74
+ * <p>Base exception class for all service exceptions from ACM service.</p>
75
+ *
76
+ *
77
+ * @public
78
+ */
79
+ export declare class RevokeCertificateCommand extends RevokeCertificateCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: RevokeCertificateRequest;
84
+ output: RevokeCertificateResponse;
85
+ };
86
+ sdk: {
87
+ input: RevokeCertificateCommandInput;
88
+ output: RevokeCertificateCommandOutput;
89
+ };
90
+ };
91
+ }
@@ -27,10 +27,7 @@ declare const UpdateCertificateOptionsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Updates a certificate. Currently, you can use this function to specify whether to opt in
31
- * to or out of recording your certificate in a certificate transparency log. For more
32
- * information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency"> Opting Out of
33
- * Certificate Transparency Logging</a>. </p>
30
+ * <p>Updates a certificate. You can use this function to specify whether to opt in to or out of recording your certificate in a certificate transparency log and exporting. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency"> Opting Out of Certificate Transparency Logging</a> and <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html">Certificate Manager Exportable Managed Certificates</a>.</p>
34
31
  * @example
35
32
  * Use a bare-bones client and the command you need to make an API call.
36
33
  * ```javascript
@@ -41,6 +38,7 @@ declare const UpdateCertificateOptionsCommand_base: {
41
38
  * CertificateArn: "STRING_VALUE", // required
42
39
  * Options: { // CertificateOptions
43
40
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
41
+ * Export: "ENABLED" || "DISABLED",
44
42
  * },
45
43
  * };
46
44
  * const command = new UpdateCertificateOptionsCommand(input);
@@ -65,8 +63,7 @@ declare const UpdateCertificateOptionsCommand_base: {
65
63
  * <p>An ACM quota has been exceeded.</p>
66
64
  *
67
65
  * @throws {@link ResourceNotFoundException} (client fault)
68
- * <p>The specified certificate cannot be found in the caller's account or the caller's account
69
- * cannot be found.</p>
66
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
70
67
  *
71
68
  * @throws {@link ACMServiceException}
72
69
  * <p>Base exception class for all service exceptions from ACM service.</p>
@@ -12,4 +12,5 @@ export * from "./RemoveTagsFromCertificateCommand";
12
12
  export * from "./RenewCertificateCommand";
13
13
  export * from "./RequestCertificateCommand";
14
14
  export * from "./ResendValidationEmailCommand";
15
+ export * from "./RevokeCertificateCommand";
15
16
  export * from "./UpdateCertificateOptionsCommand";
@@ -1,7 +1,5 @@
1
1
  /**
2
- * <fullname>Certificate Manager</fullname>
3
- * <p>You can use Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites
4
- * and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Certificate Manager User Guide</a>.</p>
2
+ * <fullname>Certificate Manager</fullname> <p>You can use Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Certificate Manager User Guide</a>.</p>
5
3
  *
6
4
  * @packageDocumentation
7
5
  */