@aws-sdk/client-wellarchitected 3.933.0 → 3.935.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 +193 -192
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +192 -0
- package/dist-es/models/errors.js +123 -0
- package/dist-es/models/models_0.js +1 -315
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +512 -0
- package/dist-types/models/errors.d.ts +183 -0
- package/dist-types/models/models_0.d.ts +1 -693
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +259 -0
- package/dist-types/ts3.4/models/errors.d.ts +70 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -327
- package/package.json +12 -12
- 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,123 @@
|
|
|
1
|
+
import { WellArchitectedServiceException as __BaseException } from "./WellArchitectedServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
name = "ConflictException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
ResourceId;
|
|
21
|
+
ResourceType;
|
|
22
|
+
constructor(opts) {
|
|
23
|
+
super({
|
|
24
|
+
name: "ConflictException",
|
|
25
|
+
$fault: "client",
|
|
26
|
+
...opts,
|
|
27
|
+
});
|
|
28
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
29
|
+
this.Message = opts.Message;
|
|
30
|
+
this.ResourceId = opts.ResourceId;
|
|
31
|
+
this.ResourceType = opts.ResourceType;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export class InternalServerException extends __BaseException {
|
|
35
|
+
name = "InternalServerException";
|
|
36
|
+
$fault = "server";
|
|
37
|
+
Message;
|
|
38
|
+
constructor(opts) {
|
|
39
|
+
super({
|
|
40
|
+
name: "InternalServerException",
|
|
41
|
+
$fault: "server",
|
|
42
|
+
...opts,
|
|
43
|
+
});
|
|
44
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
45
|
+
this.Message = opts.Message;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
49
|
+
name = "ResourceNotFoundException";
|
|
50
|
+
$fault = "client";
|
|
51
|
+
Message;
|
|
52
|
+
ResourceId;
|
|
53
|
+
ResourceType;
|
|
54
|
+
constructor(opts) {
|
|
55
|
+
super({
|
|
56
|
+
name: "ResourceNotFoundException",
|
|
57
|
+
$fault: "client",
|
|
58
|
+
...opts,
|
|
59
|
+
});
|
|
60
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
61
|
+
this.Message = opts.Message;
|
|
62
|
+
this.ResourceId = opts.ResourceId;
|
|
63
|
+
this.ResourceType = opts.ResourceType;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export class ThrottlingException extends __BaseException {
|
|
67
|
+
name = "ThrottlingException";
|
|
68
|
+
$fault = "client";
|
|
69
|
+
Message;
|
|
70
|
+
QuotaCode;
|
|
71
|
+
ServiceCode;
|
|
72
|
+
constructor(opts) {
|
|
73
|
+
super({
|
|
74
|
+
name: "ThrottlingException",
|
|
75
|
+
$fault: "client",
|
|
76
|
+
...opts,
|
|
77
|
+
});
|
|
78
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
79
|
+
this.Message = opts.Message;
|
|
80
|
+
this.QuotaCode = opts.QuotaCode;
|
|
81
|
+
this.ServiceCode = opts.ServiceCode;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
export class ValidationException extends __BaseException {
|
|
85
|
+
name = "ValidationException";
|
|
86
|
+
$fault = "client";
|
|
87
|
+
Message;
|
|
88
|
+
Reason;
|
|
89
|
+
Fields;
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ValidationException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
97
|
+
this.Message = opts.Message;
|
|
98
|
+
this.Reason = opts.Reason;
|
|
99
|
+
this.Fields = opts.Fields;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
103
|
+
name = "ServiceQuotaExceededException";
|
|
104
|
+
$fault = "client";
|
|
105
|
+
Message;
|
|
106
|
+
ResourceId;
|
|
107
|
+
ResourceType;
|
|
108
|
+
QuotaCode;
|
|
109
|
+
ServiceCode;
|
|
110
|
+
constructor(opts) {
|
|
111
|
+
super({
|
|
112
|
+
name: "ServiceQuotaExceededException",
|
|
113
|
+
$fault: "client",
|
|
114
|
+
...opts,
|
|
115
|
+
});
|
|
116
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
117
|
+
this.Message = opts.Message;
|
|
118
|
+
this.ResourceId = opts.ResourceId;
|
|
119
|
+
this.ResourceType = opts.ResourceType;
|
|
120
|
+
this.QuotaCode = opts.QuotaCode;
|
|
121
|
+
this.ServiceCode = opts.ServiceCode;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -1,315 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export const IntegrationStatusInput = {
|
|
17
|
-
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
18
|
-
};
|
|
19
|
-
export const AccountJiraIssueManagementStatus = {
|
|
20
|
-
DISABLED: "DISABLED",
|
|
21
|
-
ENABLED: "ENABLED",
|
|
22
|
-
};
|
|
23
|
-
export const IssueManagementType = {
|
|
24
|
-
AUTO: "AUTO",
|
|
25
|
-
MANUAL: "MANUAL",
|
|
26
|
-
};
|
|
27
|
-
export const IntegrationStatus = {
|
|
28
|
-
CONFIGURED: "CONFIGURED",
|
|
29
|
-
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
30
|
-
};
|
|
31
|
-
export const CheckStatus = {
|
|
32
|
-
ERROR: "ERROR",
|
|
33
|
-
FETCH_FAILED: "FETCH_FAILED",
|
|
34
|
-
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
35
|
-
OKAY: "OKAY",
|
|
36
|
-
WARNING: "WARNING",
|
|
37
|
-
};
|
|
38
|
-
export const AdditionalResourceType = {
|
|
39
|
-
HELPFUL_RESOURCE: "HELPFUL_RESOURCE",
|
|
40
|
-
IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN",
|
|
41
|
-
};
|
|
42
|
-
export const ChoiceReason = {
|
|
43
|
-
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
44
|
-
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
45
|
-
NONE: "NONE",
|
|
46
|
-
OTHER: "OTHER",
|
|
47
|
-
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
48
|
-
};
|
|
49
|
-
export const ChoiceStatus = {
|
|
50
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
51
|
-
SELECTED: "SELECTED",
|
|
52
|
-
UNSELECTED: "UNSELECTED",
|
|
53
|
-
};
|
|
54
|
-
export const AnswerReason = {
|
|
55
|
-
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
56
|
-
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
57
|
-
NONE: "NONE",
|
|
58
|
-
OTHER: "OTHER",
|
|
59
|
-
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
60
|
-
};
|
|
61
|
-
export const Risk = {
|
|
62
|
-
HIGH: "HIGH",
|
|
63
|
-
MEDIUM: "MEDIUM",
|
|
64
|
-
NONE: "NONE",
|
|
65
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
66
|
-
UNANSWERED: "UNANSWERED",
|
|
67
|
-
};
|
|
68
|
-
export const QuestionType = {
|
|
69
|
-
NON_PRIORITIZED: "NON_PRIORITIZED",
|
|
70
|
-
PRIORITIZED: "PRIORITIZED",
|
|
71
|
-
};
|
|
72
|
-
export class ConflictException extends __BaseException {
|
|
73
|
-
name = "ConflictException";
|
|
74
|
-
$fault = "client";
|
|
75
|
-
Message;
|
|
76
|
-
ResourceId;
|
|
77
|
-
ResourceType;
|
|
78
|
-
constructor(opts) {
|
|
79
|
-
super({
|
|
80
|
-
name: "ConflictException",
|
|
81
|
-
$fault: "client",
|
|
82
|
-
...opts,
|
|
83
|
-
});
|
|
84
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
85
|
-
this.Message = opts.Message;
|
|
86
|
-
this.ResourceId = opts.ResourceId;
|
|
87
|
-
this.ResourceType = opts.ResourceType;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
export class InternalServerException extends __BaseException {
|
|
91
|
-
name = "InternalServerException";
|
|
92
|
-
$fault = "server";
|
|
93
|
-
Message;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "InternalServerException",
|
|
97
|
-
$fault: "server",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
105
|
-
name = "ResourceNotFoundException";
|
|
106
|
-
$fault = "client";
|
|
107
|
-
Message;
|
|
108
|
-
ResourceId;
|
|
109
|
-
ResourceType;
|
|
110
|
-
constructor(opts) {
|
|
111
|
-
super({
|
|
112
|
-
name: "ResourceNotFoundException",
|
|
113
|
-
$fault: "client",
|
|
114
|
-
...opts,
|
|
115
|
-
});
|
|
116
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
117
|
-
this.Message = opts.Message;
|
|
118
|
-
this.ResourceId = opts.ResourceId;
|
|
119
|
-
this.ResourceType = opts.ResourceType;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
export class ThrottlingException extends __BaseException {
|
|
123
|
-
name = "ThrottlingException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
Message;
|
|
126
|
-
QuotaCode;
|
|
127
|
-
ServiceCode;
|
|
128
|
-
constructor(opts) {
|
|
129
|
-
super({
|
|
130
|
-
name: "ThrottlingException",
|
|
131
|
-
$fault: "client",
|
|
132
|
-
...opts,
|
|
133
|
-
});
|
|
134
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
135
|
-
this.Message = opts.Message;
|
|
136
|
-
this.QuotaCode = opts.QuotaCode;
|
|
137
|
-
this.ServiceCode = opts.ServiceCode;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
export const ValidationExceptionReason = {
|
|
141
|
-
CANNOT_PARSE: "CANNOT_PARSE",
|
|
142
|
-
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
143
|
-
OTHER: "OTHER",
|
|
144
|
-
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
145
|
-
};
|
|
146
|
-
export class ValidationException extends __BaseException {
|
|
147
|
-
name = "ValidationException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
Message;
|
|
150
|
-
Reason;
|
|
151
|
-
Fields;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ValidationException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
this.Reason = opts.Reason;
|
|
161
|
-
this.Fields = opts.Fields;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
export const CheckProvider = {
|
|
165
|
-
TRUSTED_ADVISOR: "TRUSTED_ADVISOR",
|
|
166
|
-
};
|
|
167
|
-
export const CheckFailureReason = {
|
|
168
|
-
ACCESS_DENIED: "ACCESS_DENIED",
|
|
169
|
-
ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR",
|
|
170
|
-
PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED",
|
|
171
|
-
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
172
|
-
};
|
|
173
|
-
export const MetricType = {
|
|
174
|
-
WORKLOAD: "WORKLOAD",
|
|
175
|
-
};
|
|
176
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
177
|
-
name = "ServiceQuotaExceededException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
ResourceId;
|
|
181
|
-
ResourceType;
|
|
182
|
-
QuotaCode;
|
|
183
|
-
ServiceCode;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ServiceQuotaExceededException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
191
|
-
this.Message = opts.Message;
|
|
192
|
-
this.ResourceId = opts.ResourceId;
|
|
193
|
-
this.ResourceType = opts.ResourceType;
|
|
194
|
-
this.QuotaCode = opts.QuotaCode;
|
|
195
|
-
this.ServiceCode = opts.ServiceCode;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
export const TrustedAdvisorIntegrationStatus = {
|
|
199
|
-
DISABLED: "DISABLED",
|
|
200
|
-
ENABLED: "ENABLED",
|
|
201
|
-
};
|
|
202
|
-
export const DefinitionType = {
|
|
203
|
-
APP_REGISTRY: "APP_REGISTRY",
|
|
204
|
-
WORKLOAD_METADATA: "WORKLOAD_METADATA",
|
|
205
|
-
};
|
|
206
|
-
export const WorkloadEnvironment = {
|
|
207
|
-
PREPRODUCTION: "PREPRODUCTION",
|
|
208
|
-
PRODUCTION: "PRODUCTION",
|
|
209
|
-
};
|
|
210
|
-
export const WorkloadIssueManagementStatus = {
|
|
211
|
-
DISABLED: "DISABLED",
|
|
212
|
-
ENABLED: "ENABLED",
|
|
213
|
-
INHERIT: "INHERIT",
|
|
214
|
-
};
|
|
215
|
-
export const PermissionType = {
|
|
216
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
217
|
-
READONLY: "READONLY",
|
|
218
|
-
};
|
|
219
|
-
export const LensStatusType = {
|
|
220
|
-
ALL: "ALL",
|
|
221
|
-
DRAFT: "DRAFT",
|
|
222
|
-
PUBLISHED: "PUBLISHED",
|
|
223
|
-
};
|
|
224
|
-
export const DifferenceStatus = {
|
|
225
|
-
DELETED: "DELETED",
|
|
226
|
-
NEW: "NEW",
|
|
227
|
-
UPDATED: "UPDATED",
|
|
228
|
-
};
|
|
229
|
-
export const DiscoveryIntegrationStatus = {
|
|
230
|
-
DISABLED: "DISABLED",
|
|
231
|
-
ENABLED: "ENABLED",
|
|
232
|
-
};
|
|
233
|
-
export const ReportFormat = {
|
|
234
|
-
JSON: "JSON",
|
|
235
|
-
PDF: "PDF",
|
|
236
|
-
};
|
|
237
|
-
export const OrganizationSharingStatus = {
|
|
238
|
-
DISABLED: "DISABLED",
|
|
239
|
-
ENABLED: "ENABLED",
|
|
240
|
-
};
|
|
241
|
-
export const LensStatus = {
|
|
242
|
-
CURRENT: "CURRENT",
|
|
243
|
-
DELETED: "DELETED",
|
|
244
|
-
DEPRECATED: "DEPRECATED",
|
|
245
|
-
NOT_CURRENT: "NOT_CURRENT",
|
|
246
|
-
UNSHARED: "UNSHARED",
|
|
247
|
-
};
|
|
248
|
-
export const WorkloadImprovementStatus = {
|
|
249
|
-
COMPLETE: "COMPLETE",
|
|
250
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
251
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
252
|
-
NOT_STARTED: "NOT_STARTED",
|
|
253
|
-
RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED",
|
|
254
|
-
};
|
|
255
|
-
export const Question = {
|
|
256
|
-
ANSWERED: "ANSWERED",
|
|
257
|
-
UNANSWERED: "UNANSWERED",
|
|
258
|
-
};
|
|
259
|
-
export const ReviewTemplateUpdateStatus = {
|
|
260
|
-
CURRENT: "CURRENT",
|
|
261
|
-
LENS_NOT_CURRENT: "LENS_NOT_CURRENT",
|
|
262
|
-
};
|
|
263
|
-
export const ReviewTemplateAnswerStatus = {
|
|
264
|
-
ANSWERED: "ANSWERED",
|
|
265
|
-
UNANSWERED: "UNANSWERED",
|
|
266
|
-
};
|
|
267
|
-
export const ImportLensStatus = {
|
|
268
|
-
COMPLETE: "COMPLETE",
|
|
269
|
-
ERROR: "ERROR",
|
|
270
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
271
|
-
};
|
|
272
|
-
export const IntegratingService = {
|
|
273
|
-
JIRA: "JIRA",
|
|
274
|
-
};
|
|
275
|
-
export const ShareStatus = {
|
|
276
|
-
ACCEPTED: "ACCEPTED",
|
|
277
|
-
ASSOCIATED: "ASSOCIATED",
|
|
278
|
-
ASSOCIATING: "ASSOCIATING",
|
|
279
|
-
EXPIRED: "EXPIRED",
|
|
280
|
-
FAILED: "FAILED",
|
|
281
|
-
PENDING: "PENDING",
|
|
282
|
-
REJECTED: "REJECTED",
|
|
283
|
-
REVOKED: "REVOKED",
|
|
284
|
-
};
|
|
285
|
-
export const LensType = {
|
|
286
|
-
AWS_OFFICIAL: "AWS_OFFICIAL",
|
|
287
|
-
CUSTOM_SELF: "CUSTOM_SELF",
|
|
288
|
-
CUSTOM_SHARED: "CUSTOM_SHARED",
|
|
289
|
-
};
|
|
290
|
-
export const QuestionPriority = {
|
|
291
|
-
NONE: "NONE",
|
|
292
|
-
PRIORITIZED: "PRIORITIZED",
|
|
293
|
-
};
|
|
294
|
-
export const NotificationType = {
|
|
295
|
-
LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED",
|
|
296
|
-
LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED",
|
|
297
|
-
};
|
|
298
|
-
export const ProfileNotificationType = {
|
|
299
|
-
PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED",
|
|
300
|
-
PROFILE_DELETED: "PROFILE_DELETED",
|
|
301
|
-
};
|
|
302
|
-
export const ProfileOwnerType = {
|
|
303
|
-
SELF: "SELF",
|
|
304
|
-
SHARED: "SHARED",
|
|
305
|
-
};
|
|
306
|
-
export const ShareResourceType = {
|
|
307
|
-
LENS: "LENS",
|
|
308
|
-
PROFILE: "PROFILE",
|
|
309
|
-
TEMPLATE: "TEMPLATE",
|
|
310
|
-
WORKLOAD: "WORKLOAD",
|
|
311
|
-
};
|
|
312
|
-
export const ShareInvitationAction = {
|
|
313
|
-
ACCEPT: "ACCEPT",
|
|
314
|
-
REJECT: "REJECT",
|
|
315
|
-
};
|
|
1
|
+
export {};
|
|
@@ -465,7 +465,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wellarchitected";
|
|
|
465
465
|
const _tK = "tagKeys";
|
|
466
466
|
const n0 = "com.amazonaws.wellarchitected";
|
|
467
467
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
468
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
468
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
469
469
|
import { WellArchitectedServiceException as __WellArchitectedServiceException } from "../models/WellArchitectedServiceException";
|
|
470
470
|
export var AccessDeniedException = [
|
|
471
471
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -15,5 +15,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
15
15
|
export type { WellArchitectedExtensionConfiguration } from "./extensionConfiguration";
|
|
16
16
|
export * from "./commands";
|
|
17
17
|
export * from "./pagination";
|
|
18
|
-
export * from "./models";
|
|
18
|
+
export * from "./models/enums";
|
|
19
|
+
export * from "./models/errors";
|
|
20
|
+
export type * from "./models/models_0";
|
|
19
21
|
export { WellArchitectedServiceException } from "./models/WellArchitectedServiceException";
|