@aws-sdk/client-acm 3.52.0 → 3.53.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.
- package/CHANGELOG.md +12 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ACMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +212 -1
- package/dist-cjs/protocols/Aws_json1_1.js +183 -580
- package/dist-es/endpoints.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/ACMServiceException.js +12 -0
- package/dist-es/models/models_0.js +195 -1
- package/dist-es/protocols/Aws_json1_1.js +361 -609
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ACMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -64
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +82 -64
- package/package.json +26 -26
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ACM service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ACMServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have access
|
|
4
5
|
* required to perform this action.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
9
10
|
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* <p>A key-value pair that identifies or specifies metadata about an ACM resource.</p>
|
|
@@ -53,61 +58,82 @@ export declare namespace AddTagsToCertificateRequest {
|
|
|
53
58
|
/**
|
|
54
59
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
55
60
|
*/
|
|
56
|
-
export
|
|
57
|
-
name: "InvalidArnException";
|
|
58
|
-
$fault: "client";
|
|
59
|
-
|
|
61
|
+
export declare class InvalidArnException extends __BaseException {
|
|
62
|
+
readonly name: "InvalidArnException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
60
68
|
}
|
|
61
69
|
/**
|
|
62
70
|
* <p>An input parameter was invalid.</p>
|
|
63
71
|
*/
|
|
64
|
-
export
|
|
65
|
-
name: "InvalidParameterException";
|
|
66
|
-
$fault: "client";
|
|
67
|
-
|
|
72
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
73
|
+
readonly name: "InvalidParameterException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
68
79
|
}
|
|
69
80
|
/**
|
|
70
81
|
* <p>One or both of the values that make up the key-value pair is not valid. For example, you
|
|
71
82
|
* cannot specify a tag value that begins with <code>aws:</code>.</p>
|
|
72
83
|
*/
|
|
73
|
-
export
|
|
74
|
-
name: "InvalidTagException";
|
|
75
|
-
$fault: "client";
|
|
76
|
-
|
|
84
|
+
export declare class InvalidTagException extends __BaseException {
|
|
85
|
+
readonly name: "InvalidTagException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
77
91
|
}
|
|
78
92
|
/**
|
|
79
93
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
80
94
|
* cannot be found.</p>
|
|
81
95
|
*/
|
|
82
|
-
export
|
|
83
|
-
name: "ResourceNotFoundException";
|
|
84
|
-
$fault: "client";
|
|
85
|
-
|
|
96
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
97
|
+
readonly name: "ResourceNotFoundException";
|
|
98
|
+
readonly $fault: "client";
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
86
103
|
}
|
|
87
104
|
/**
|
|
88
105
|
* <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
|
|
89
106
|
*/
|
|
90
|
-
export
|
|
91
|
-
name: "TagPolicyException";
|
|
92
|
-
$fault: "client";
|
|
93
|
-
|
|
107
|
+
export declare class TagPolicyException extends __BaseException {
|
|
108
|
+
readonly name: "TagPolicyException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
94
114
|
}
|
|
95
115
|
/**
|
|
96
116
|
* <p>The request was denied
|
|
97
117
|
* because it exceeded a quota.</p>
|
|
98
118
|
*/
|
|
99
|
-
export
|
|
100
|
-
name: "ThrottlingException";
|
|
101
|
-
$fault: "client";
|
|
102
|
-
|
|
119
|
+
export declare class ThrottlingException extends __BaseException {
|
|
120
|
+
readonly name: "ThrottlingException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
103
126
|
}
|
|
104
127
|
/**
|
|
105
128
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
106
129
|
*/
|
|
107
|
-
export
|
|
108
|
-
name: "TooManyTagsException";
|
|
109
|
-
$fault: "client";
|
|
110
|
-
|
|
130
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
131
|
+
readonly name: "TooManyTagsException";
|
|
132
|
+
readonly $fault: "client";
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
111
137
|
}
|
|
112
138
|
export declare enum RecordType {
|
|
113
139
|
CNAME = "CNAME"
|
|
@@ -612,10 +638,13 @@ export declare namespace DeleteCertificateRequest {
|
|
|
612
638
|
* <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
|
|
613
639
|
* association and try again.</p>
|
|
614
640
|
*/
|
|
615
|
-
export
|
|
616
|
-
name: "ResourceInUseException";
|
|
617
|
-
$fault: "client";
|
|
618
|
-
|
|
641
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
642
|
+
readonly name: "ResourceInUseException";
|
|
643
|
+
readonly $fault: "client";
|
|
644
|
+
/**
|
|
645
|
+
* @internal
|
|
646
|
+
*/
|
|
647
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
619
648
|
}
|
|
620
649
|
export interface DescribeCertificateRequest {
|
|
621
650
|
/**
|
|
@@ -696,10 +725,13 @@ export declare namespace ExportCertificateResponse {
|
|
|
696
725
|
* <p>The certificate request is in process and the certificate in your account has not yet been
|
|
697
726
|
* issued.</p>
|
|
698
727
|
*/
|
|
699
|
-
export
|
|
700
|
-
name: "RequestInProgressException";
|
|
701
|
-
$fault: "client";
|
|
702
|
-
|
|
728
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
729
|
+
readonly name: "RequestInProgressException";
|
|
730
|
+
readonly $fault: "client";
|
|
731
|
+
/**
|
|
732
|
+
* @internal
|
|
733
|
+
*/
|
|
734
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
703
735
|
}
|
|
704
736
|
/**
|
|
705
737
|
* <p>Object containing
|
|
@@ -814,18 +846,24 @@ export declare namespace ImportCertificateResponse {
|
|
|
814
846
|
/**
|
|
815
847
|
* <p>An ACM quota has been exceeded.</p>
|
|
816
848
|
*/
|
|
817
|
-
export
|
|
818
|
-
name: "LimitExceededException";
|
|
819
|
-
$fault: "client";
|
|
820
|
-
|
|
849
|
+
export declare class LimitExceededException extends __BaseException {
|
|
850
|
+
readonly name: "LimitExceededException";
|
|
851
|
+
readonly $fault: "client";
|
|
852
|
+
/**
|
|
853
|
+
* @internal
|
|
854
|
+
*/
|
|
855
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
821
856
|
}
|
|
822
857
|
/**
|
|
823
858
|
* <p>One or more of of request parameters specified is not valid.</p>
|
|
824
859
|
*/
|
|
825
|
-
export
|
|
826
|
-
name: "InvalidArgsException";
|
|
827
|
-
$fault: "client";
|
|
828
|
-
|
|
860
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
861
|
+
readonly name: "InvalidArgsException";
|
|
862
|
+
readonly $fault: "client";
|
|
863
|
+
/**
|
|
864
|
+
* @internal
|
|
865
|
+
*/
|
|
866
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
829
867
|
}
|
|
830
868
|
/**
|
|
831
869
|
* <p>This structure can be used in the <a>ListCertificates</a> action to filter the
|
|
@@ -964,10 +1002,13 @@ export declare namespace ListTagsForCertificateResponse {
|
|
|
964
1002
|
* update a resource or configuration that is already being created or updated. Wait for the
|
|
965
1003
|
* previous operation to finish and try again.</p>
|
|
966
1004
|
*/
|
|
967
|
-
export
|
|
968
|
-
name: "ConflictException";
|
|
969
|
-
$fault: "client";
|
|
970
|
-
|
|
1005
|
+
export declare class ConflictException extends __BaseException {
|
|
1006
|
+
readonly name: "ConflictException";
|
|
1007
|
+
readonly $fault: "client";
|
|
1008
|
+
/**
|
|
1009
|
+
* @internal
|
|
1010
|
+
*/
|
|
1011
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
971
1012
|
}
|
|
972
1013
|
export interface PutAccountConfigurationRequest {
|
|
973
1014
|
/**
|
|
@@ -995,10 +1036,13 @@ export declare namespace PutAccountConfigurationRequest {
|
|
|
995
1036
|
* <p>The supplied input
|
|
996
1037
|
* failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
997
1038
|
*/
|
|
998
|
-
export
|
|
999
|
-
name: "ValidationException";
|
|
1000
|
-
$fault: "client";
|
|
1001
|
-
|
|
1039
|
+
export declare class ValidationException extends __BaseException {
|
|
1040
|
+
readonly name: "ValidationException";
|
|
1041
|
+
readonly $fault: "client";
|
|
1042
|
+
/**
|
|
1043
|
+
* @internal
|
|
1044
|
+
*/
|
|
1045
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1002
1046
|
}
|
|
1003
1047
|
export interface RemoveTagsFromCertificateRequest {
|
|
1004
1048
|
/**
|
|
@@ -1044,10 +1088,13 @@ export declare namespace RenewCertificateRequest {
|
|
|
1044
1088
|
* <p>One or more values in the <a>DomainValidationOption</a> structure is
|
|
1045
1089
|
* incorrect.</p>
|
|
1046
1090
|
*/
|
|
1047
|
-
export
|
|
1048
|
-
name: "InvalidDomainValidationOptionsException";
|
|
1049
|
-
$fault: "client";
|
|
1050
|
-
|
|
1091
|
+
export declare class InvalidDomainValidationOptionsException extends __BaseException {
|
|
1092
|
+
readonly name: "InvalidDomainValidationOptionsException";
|
|
1093
|
+
readonly $fault: "client";
|
|
1094
|
+
/**
|
|
1095
|
+
* @internal
|
|
1096
|
+
*/
|
|
1097
|
+
constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
|
|
1051
1098
|
}
|
|
1052
1099
|
/**
|
|
1053
1100
|
* <p>Contains information about the domain names that you want ACM to use to send you emails
|
|
@@ -1201,10 +1248,13 @@ export declare namespace RequestCertificateResponse {
|
|
|
1201
1248
|
/**
|
|
1202
1249
|
* <p>Processing has reached an invalid state.</p>
|
|
1203
1250
|
*/
|
|
1204
|
-
export
|
|
1205
|
-
name: "InvalidStateException";
|
|
1206
|
-
$fault: "client";
|
|
1207
|
-
|
|
1251
|
+
export declare class InvalidStateException extends __BaseException {
|
|
1252
|
+
readonly name: "InvalidStateException";
|
|
1253
|
+
readonly $fault: "client";
|
|
1254
|
+
/**
|
|
1255
|
+
* @internal
|
|
1256
|
+
*/
|
|
1257
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
1208
1258
|
}
|
|
1209
1259
|
export interface ResendValidationEmailRequest {
|
|
1210
1260
|
/**
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export interface Tag {
|
|
@@ -27,46 +30,53 @@ export declare namespace AddTagsToCertificateRequest {
|
|
|
27
30
|
const filterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
|
|
28
31
|
}
|
|
29
32
|
|
|
30
|
-
export
|
|
31
|
-
name: "InvalidArnException";
|
|
32
|
-
$fault: "client";
|
|
33
|
-
|
|
33
|
+
export declare class InvalidArnException extends __BaseException {
|
|
34
|
+
readonly name: "InvalidArnException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
34
38
|
}
|
|
35
39
|
|
|
36
|
-
export
|
|
37
|
-
name: "InvalidParameterException";
|
|
38
|
-
$fault: "client";
|
|
39
|
-
|
|
40
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
41
|
+
readonly name: "InvalidParameterException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
|
|
44
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
40
45
|
}
|
|
41
46
|
|
|
42
|
-
export
|
|
43
|
-
name: "InvalidTagException";
|
|
44
|
-
$fault: "client";
|
|
45
|
-
|
|
47
|
+
export declare class InvalidTagException extends __BaseException {
|
|
48
|
+
readonly name: "InvalidTagException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
|
|
51
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
46
52
|
}
|
|
47
53
|
|
|
48
|
-
export
|
|
49
|
-
name: "ResourceNotFoundException";
|
|
50
|
-
$fault: "client";
|
|
51
|
-
|
|
54
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
55
|
+
readonly name: "ResourceNotFoundException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
52
59
|
}
|
|
53
60
|
|
|
54
|
-
export
|
|
55
|
-
name: "TagPolicyException";
|
|
56
|
-
$fault: "client";
|
|
57
|
-
|
|
61
|
+
export declare class TagPolicyException extends __BaseException {
|
|
62
|
+
readonly name: "TagPolicyException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
|
|
65
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
58
66
|
}
|
|
59
67
|
|
|
60
|
-
export
|
|
61
|
-
name: "ThrottlingException";
|
|
62
|
-
$fault: "client";
|
|
63
|
-
|
|
68
|
+
export declare class ThrottlingException extends __BaseException {
|
|
69
|
+
readonly name: "ThrottlingException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
|
|
72
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
64
73
|
}
|
|
65
74
|
|
|
66
|
-
export
|
|
67
|
-
name: "TooManyTagsException";
|
|
68
|
-
$fault: "client";
|
|
69
|
-
|
|
75
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
76
|
+
readonly name: "TooManyTagsException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
|
|
79
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
70
80
|
}
|
|
71
81
|
export declare enum RecordType {
|
|
72
82
|
CNAME = "CNAME"
|
|
@@ -319,10 +329,11 @@ export declare namespace DeleteCertificateRequest {
|
|
|
319
329
|
const filterSensitiveLog: (obj: DeleteCertificateRequest) => any;
|
|
320
330
|
}
|
|
321
331
|
|
|
322
|
-
export
|
|
323
|
-
name: "ResourceInUseException";
|
|
324
|
-
$fault: "client";
|
|
325
|
-
|
|
332
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
333
|
+
readonly name: "ResourceInUseException";
|
|
334
|
+
readonly $fault: "client";
|
|
335
|
+
|
|
336
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
326
337
|
}
|
|
327
338
|
export interface DescribeCertificateRequest {
|
|
328
339
|
|
|
@@ -363,10 +374,11 @@ export declare namespace ExportCertificateResponse {
|
|
|
363
374
|
const filterSensitiveLog: (obj: ExportCertificateResponse) => any;
|
|
364
375
|
}
|
|
365
376
|
|
|
366
|
-
export
|
|
367
|
-
name: "RequestInProgressException";
|
|
368
|
-
$fault: "client";
|
|
369
|
-
|
|
377
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
378
|
+
readonly name: "RequestInProgressException";
|
|
379
|
+
readonly $fault: "client";
|
|
380
|
+
|
|
381
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
370
382
|
}
|
|
371
383
|
|
|
372
384
|
export interface ExpiryEventsConfiguration {
|
|
@@ -428,16 +440,18 @@ export declare namespace ImportCertificateResponse {
|
|
|
428
440
|
const filterSensitiveLog: (obj: ImportCertificateResponse) => any;
|
|
429
441
|
}
|
|
430
442
|
|
|
431
|
-
export
|
|
432
|
-
name: "LimitExceededException";
|
|
433
|
-
$fault: "client";
|
|
434
|
-
|
|
443
|
+
export declare class LimitExceededException extends __BaseException {
|
|
444
|
+
readonly name: "LimitExceededException";
|
|
445
|
+
readonly $fault: "client";
|
|
446
|
+
|
|
447
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
435
448
|
}
|
|
436
449
|
|
|
437
|
-
export
|
|
438
|
-
name: "InvalidArgsException";
|
|
439
|
-
$fault: "client";
|
|
440
|
-
|
|
450
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
451
|
+
readonly name: "InvalidArgsException";
|
|
452
|
+
readonly $fault: "client";
|
|
453
|
+
|
|
454
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
441
455
|
}
|
|
442
456
|
|
|
443
457
|
export interface Filters {
|
|
@@ -504,10 +518,11 @@ export declare namespace ListTagsForCertificateResponse {
|
|
|
504
518
|
const filterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
|
|
505
519
|
}
|
|
506
520
|
|
|
507
|
-
export
|
|
508
|
-
name: "ConflictException";
|
|
509
|
-
$fault: "client";
|
|
510
|
-
|
|
521
|
+
export declare class ConflictException extends __BaseException {
|
|
522
|
+
readonly name: "ConflictException";
|
|
523
|
+
readonly $fault: "client";
|
|
524
|
+
|
|
525
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
511
526
|
}
|
|
512
527
|
export interface PutAccountConfigurationRequest {
|
|
513
528
|
|
|
@@ -520,10 +535,11 @@ export declare namespace PutAccountConfigurationRequest {
|
|
|
520
535
|
const filterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
|
|
521
536
|
}
|
|
522
537
|
|
|
523
|
-
export
|
|
524
|
-
name: "ValidationException";
|
|
525
|
-
$fault: "client";
|
|
526
|
-
|
|
538
|
+
export declare class ValidationException extends __BaseException {
|
|
539
|
+
readonly name: "ValidationException";
|
|
540
|
+
readonly $fault: "client";
|
|
541
|
+
|
|
542
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
527
543
|
}
|
|
528
544
|
export interface RemoveTagsFromCertificateRequest {
|
|
529
545
|
|
|
@@ -544,10 +560,11 @@ export declare namespace RenewCertificateRequest {
|
|
|
544
560
|
const filterSensitiveLog: (obj: RenewCertificateRequest) => any;
|
|
545
561
|
}
|
|
546
562
|
|
|
547
|
-
export
|
|
548
|
-
name: "InvalidDomainValidationOptionsException";
|
|
549
|
-
$fault: "client";
|
|
550
|
-
|
|
563
|
+
export declare class InvalidDomainValidationOptionsException extends __BaseException {
|
|
564
|
+
readonly name: "InvalidDomainValidationOptionsException";
|
|
565
|
+
readonly $fault: "client";
|
|
566
|
+
|
|
567
|
+
constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
|
|
551
568
|
}
|
|
552
569
|
|
|
553
570
|
export interface DomainValidationOption {
|
|
@@ -591,10 +608,11 @@ export declare namespace RequestCertificateResponse {
|
|
|
591
608
|
const filterSensitiveLog: (obj: RequestCertificateResponse) => any;
|
|
592
609
|
}
|
|
593
610
|
|
|
594
|
-
export
|
|
595
|
-
name: "InvalidStateException";
|
|
596
|
-
$fault: "client";
|
|
597
|
-
|
|
611
|
+
export declare class InvalidStateException extends __BaseException {
|
|
612
|
+
readonly name: "InvalidStateException";
|
|
613
|
+
readonly $fault: "client";
|
|
614
|
+
|
|
615
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
598
616
|
}
|
|
599
617
|
export interface ResendValidationEmailRequest {
|
|
600
618
|
|
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.
|
|
4
|
+
"version": "3.53.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",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
51
|
+
"@aws-sdk/util-waiter": "3.53.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|