@aws-sdk/client-acm 3.300.0 → 3.301.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.
@@ -39,10 +39,10 @@ export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {
39
39
  * import { ACMClient, AddTagsToCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
40
40
  * // const { ACMClient, AddTagsToCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
41
41
  * const client = new ACMClient(config);
42
- * const input = {
42
+ * const input = { // AddTagsToCertificateRequest
43
43
  * CertificateArn: "STRING_VALUE", // required
44
- * Tags: [ // required
45
- * {
44
+ * Tags: [ // TagList // required
45
+ * { // Tag
46
46
  * Key: "STRING_VALUE", // required
47
47
  * Value: "STRING_VALUE",
48
48
  * },
@@ -33,7 +33,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
33
33
  * import { ACMClient, DeleteCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
34
34
  * // const { ACMClient, DeleteCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
35
35
  * const client = new ACMClient(config);
36
- * const input = {
36
+ * const input = { // DeleteCertificateRequest
37
37
  * CertificateArn: "STRING_VALUE", // required
38
38
  * };
39
39
  * const command = new DeleteCertificateCommand(input);
@@ -28,7 +28,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
28
28
  * import { ACMClient, DescribeCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
29
29
  * // const { ACMClient, DescribeCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
30
30
  * const client = new ACMClient(config);
31
- * const input = {
31
+ * const input = { // DescribeCertificateRequest
32
32
  * CertificateArn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DescribeCertificateCommand(input);
@@ -32,7 +32,7 @@ export interface ExportCertificateCommandOutput extends ExportCertificateRespons
32
32
  * import { ACMClient, ExportCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
33
33
  * // const { ACMClient, ExportCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
34
34
  * const client = new ACMClient(config);
35
- * const input = {
35
+ * const input = { // ExportCertificateRequest
36
36
  * CertificateArn: "STRING_VALUE", // required
37
37
  * Passphrase: "BLOB_VALUE", // required
38
38
  * };
@@ -29,7 +29,7 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M
29
29
  * import { ACMClient, GetCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
30
30
  * // const { ACMClient, GetCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
31
31
  * const client = new ACMClient(config);
32
- * const input = {
32
+ * const input = { // GetCertificateRequest
33
33
  * CertificateArn: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new GetCertificateCommand(input);
@@ -93,13 +93,13 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
93
93
  * import { ACMClient, ImportCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
94
94
  * // const { ACMClient, ImportCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
95
95
  * const client = new ACMClient(config);
96
- * const input = {
96
+ * const input = { // ImportCertificateRequest
97
97
  * CertificateArn: "STRING_VALUE",
98
98
  * Certificate: "BLOB_VALUE", // required
99
99
  * PrivateKey: "BLOB_VALUE", // required
100
100
  * CertificateChain: "BLOB_VALUE",
101
- * Tags: [
102
- * {
101
+ * Tags: [ // TagList
102
+ * { // Tag
103
103
  * Key: "STRING_VALUE", // required
104
104
  * Value: "STRING_VALUE",
105
105
  * },
@@ -29,18 +29,18 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
29
29
  * import { ACMClient, ListCertificatesCommand } from "@aws-sdk/client-acm"; // ES Modules import
30
30
  * // const { ACMClient, ListCertificatesCommand } = require("@aws-sdk/client-acm"); // CommonJS import
31
31
  * const client = new ACMClient(config);
32
- * const input = {
33
- * CertificateStatuses: [
32
+ * const input = { // ListCertificatesRequest
33
+ * CertificateStatuses: [ // CertificateStatuses
34
34
  * "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
35
35
  * ],
36
- * Includes: {
37
- * extendedKeyUsage: [
36
+ * Includes: { // Filters
37
+ * extendedKeyUsage: [ // ExtendedKeyUsageFilterList
38
38
  * "TLS_WEB_SERVER_AUTHENTICATION" || "TLS_WEB_CLIENT_AUTHENTICATION" || "CODE_SIGNING" || "EMAIL_PROTECTION" || "TIME_STAMPING" || "OCSP_SIGNING" || "IPSEC_END_SYSTEM" || "IPSEC_TUNNEL" || "IPSEC_USER" || "ANY" || "NONE" || "CUSTOM",
39
39
  * ],
40
- * keyUsage: [
40
+ * keyUsage: [ // KeyUsageFilterList
41
41
  * "DIGITAL_SIGNATURE" || "NON_REPUDIATION" || "KEY_ENCIPHERMENT" || "DATA_ENCIPHERMENT" || "KEY_AGREEMENT" || "CERTIFICATE_SIGNING" || "CRL_SIGNING" || "ENCIPHER_ONLY" || "DECIPHER_ONLY" || "ANY" || "CUSTOM",
42
42
  * ],
43
- * keyTypes: [
43
+ * keyTypes: [ // KeyAlgorithmList
44
44
  * "RSA_1024" || "RSA_2048" || "RSA_3072" || "RSA_4096" || "EC_prime256v1" || "EC_secp384r1" || "EC_secp521r1",
45
45
  * ],
46
46
  * },
@@ -28,7 +28,7 @@ export interface ListTagsForCertificateCommandOutput extends ListTagsForCertific
28
28
  * import { ACMClient, ListTagsForCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
29
29
  * // const { ACMClient, ListTagsForCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
30
30
  * const client = new ACMClient(config);
31
- * const input = {
31
+ * const input = { // ListTagsForCertificateRequest
32
32
  * CertificateArn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new ListTagsForCertificateCommand(input);
@@ -31,8 +31,8 @@ export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
31
31
  * import { ACMClient, PutAccountConfigurationCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
32
  * // const { ACMClient, PutAccountConfigurationCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
33
  * const client = new ACMClient(config);
34
- * const input = {
35
- * ExpiryEvents: {
34
+ * const input = { // PutAccountConfigurationRequest
35
+ * ExpiryEvents: { // ExpiryEventsConfiguration
36
36
  * DaysBeforeExpiry: Number("int"),
37
37
  * },
38
38
  * IdempotencyToken: "STRING_VALUE", // required
@@ -31,10 +31,10 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer
31
31
  * import { ACMClient, RemoveTagsFromCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
32
  * // const { ACMClient, RemoveTagsFromCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
33
  * const client = new ACMClient(config);
34
- * const input = {
34
+ * const input = { // RemoveTagsFromCertificateRequest
35
35
  * CertificateArn: "STRING_VALUE", // required
36
- * Tags: [ // required
37
- * {
36
+ * Tags: [ // TagList // required
37
+ * { // Tag
38
38
  * Key: "STRING_VALUE", // required
39
39
  * Value: "STRING_VALUE",
40
40
  * },
@@ -30,7 +30,7 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {
30
30
  * import { ACMClient, RenewCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
31
31
  * // const { ACMClient, RenewCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
32
32
  * const client = new ACMClient(config);
33
- * const input = {
33
+ * const input = { // RenewCertificateRequest
34
34
  * CertificateArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new RenewCertificateCommand(input);
@@ -41,25 +41,25 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo
41
41
  * import { ACMClient, RequestCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
42
42
  * // const { ACMClient, RequestCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
43
43
  * const client = new ACMClient(config);
44
- * const input = {
44
+ * const input = { // RequestCertificateRequest
45
45
  * DomainName: "STRING_VALUE", // required
46
46
  * ValidationMethod: "EMAIL" || "DNS",
47
- * SubjectAlternativeNames: [
47
+ * SubjectAlternativeNames: [ // DomainList
48
48
  * "STRING_VALUE",
49
49
  * ],
50
50
  * IdempotencyToken: "STRING_VALUE",
51
- * DomainValidationOptions: [
52
- * {
51
+ * DomainValidationOptions: [ // DomainValidationOptionList
52
+ * { // DomainValidationOption
53
53
  * DomainName: "STRING_VALUE", // required
54
54
  * ValidationDomain: "STRING_VALUE", // required
55
55
  * },
56
56
  * ],
57
- * Options: {
57
+ * Options: { // CertificateOptions
58
58
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
59
59
  * },
60
60
  * CertificateAuthorityArn: "STRING_VALUE",
61
- * Tags: [
62
- * {
61
+ * Tags: [ // TagList
62
+ * { // Tag
63
63
  * Key: "STRING_VALUE", // required
64
64
  * Value: "STRING_VALUE",
65
65
  * },
@@ -34,7 +34,7 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
34
34
  * import { ACMClient, ResendValidationEmailCommand } from "@aws-sdk/client-acm"; // ES Modules import
35
35
  * // const { ACMClient, ResendValidationEmailCommand } = require("@aws-sdk/client-acm"); // CommonJS import
36
36
  * const client = new ACMClient(config);
37
- * const input = {
37
+ * const input = { // ResendValidationEmailRequest
38
38
  * CertificateArn: "STRING_VALUE", // required
39
39
  * Domain: "STRING_VALUE", // required
40
40
  * ValidationDomain: "STRING_VALUE", // required
@@ -29,9 +29,9 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer
29
29
  * import { ACMClient, UpdateCertificateOptionsCommand } from "@aws-sdk/client-acm"; // ES Modules import
30
30
  * // const { ACMClient, UpdateCertificateOptionsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
31
31
  * const client = new ACMClient(config);
32
- * const input = {
32
+ * const input = { // UpdateCertificateOptionsRequest
33
33
  * CertificateArn: "STRING_VALUE", // required
34
- * Options: {
34
+ * Options: { // CertificateOptions
35
35
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
36
36
  * },
37
37
  * };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-acm",
3
3
  "description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",