@aws-sdk/client-acm 3.934.0 → 3.936.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/dist-cjs/index.js +124 -123
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +123 -0
- package/dist-es/models/errors.js +195 -0
- package/dist-es/models/models_0.js +1 -318
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +259 -0
- package/dist-types/models/errors.d.ts +195 -0
- package/dist-types/models/models_0.d.ts +1 -454
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +149 -0
- package/dist-types/ts3.4/models/errors.d.ts +114 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -263
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have access required to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InvalidArnException extends __BaseException {
|
|
21
|
+
readonly name: "InvalidArnException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>An input parameter was invalid.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
33
|
+
readonly name: "InvalidParameterException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <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>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class InvalidTagException extends __BaseException {
|
|
45
|
+
readonly name: "InvalidTagException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
57
|
+
readonly name: "ResourceNotFoundException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class TagPolicyException extends __BaseException {
|
|
69
|
+
readonly name: "TagPolicyException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class ThrottlingException extends __BaseException {
|
|
81
|
+
readonly name: "ThrottlingException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
93
|
+
readonly name: "TooManyTagsException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* <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>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class ConflictException extends __BaseException {
|
|
105
|
+
readonly name: "ConflictException";
|
|
106
|
+
readonly $fault: "client";
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the association and try again.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
117
|
+
readonly name: "ResourceInUseException";
|
|
118
|
+
readonly $fault: "client";
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
122
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* <p>The certificate request is in process and the certificate in your account has not yet been issued.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
129
|
+
readonly name: "RequestInProgressException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* <p>An ACM quota has been exceeded.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
export declare class LimitExceededException extends __BaseException {
|
|
141
|
+
readonly name: "LimitExceededException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
/**
|
|
144
|
+
* @internal
|
|
145
|
+
*/
|
|
146
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* <p>One or more of request parameters specified is not valid.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
153
|
+
readonly name: "InvalidArgsException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
export declare class ValidationException extends __BaseException {
|
|
165
|
+
readonly name: "ValidationException";
|
|
166
|
+
readonly $fault: "client";
|
|
167
|
+
/**
|
|
168
|
+
* @internal
|
|
169
|
+
*/
|
|
170
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* <p>One or more values in the <a>DomainValidationOption</a> structure is incorrect.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export declare class InvalidDomainValidationOptionsException extends __BaseException {
|
|
177
|
+
readonly name: "InvalidDomainValidationOptionsException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
/**
|
|
180
|
+
* @internal
|
|
181
|
+
*/
|
|
182
|
+
constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* <p>Processing has reached an invalid state.</p>
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
export declare class InvalidStateException extends __BaseException {
|
|
189
|
+
readonly name: "InvalidStateException";
|
|
190
|
+
readonly $fault: "client";
|
|
191
|
+
/**
|
|
192
|
+
* @internal
|
|
193
|
+
*/
|
|
194
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
195
|
+
}
|