@aws-sdk/client-partnercentral-benefits 3.942.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/LICENSE +201 -0
- package/README.md +341 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1344 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/PartnerCentralBenefits.js +41 -0
- package/dist-es/PartnerCentralBenefitsClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AmendBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/AssociateBenefitApplicationResourceCommand.js +16 -0
- package/dist-es/commands/CancelBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/CreateBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/DisassociateBenefitApplicationResourceCommand.js +16 -0
- package/dist-es/commands/GetBenefitAllocationCommand.js +16 -0
- package/dist-es/commands/GetBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/GetBenefitCommand.js +16 -0
- package/dist-es/commands/ListBenefitAllocationsCommand.js +16 -0
- package/dist-es/commands/ListBenefitApplicationsCommand.js +16 -0
- package/dist-es/commands/ListBenefitsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/RecallBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/SubmitBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/PartnerCentralBenefitsServiceException.js +8 -0
- package/dist-es/models/enums.js +153 -0
- package/dist-es/models/errors.js +110 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBenefitAllocationsPaginator.js +4 -0
- package/dist-es/pagination/ListBenefitApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListBenefitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +699 -0
- package/dist-types/PartnerCentralBenefits.d.ts +129 -0
- package/dist-types/PartnerCentralBenefitsClient.d.ts +213 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AmendBenefitApplicationCommand.d.ts +100 -0
- package/dist-types/commands/AssociateBenefitApplicationResourceCommand.d.ts +96 -0
- package/dist-types/commands/CancelBenefitApplicationCommand.d.ts +93 -0
- package/dist-types/commands/CreateBenefitApplicationCommand.d.ts +126 -0
- package/dist-types/commands/DisassociateBenefitApplicationResourceCommand.d.ts +96 -0
- package/dist-types/commands/GetBenefitAllocationCommand.d.ts +158 -0
- package/dist-types/commands/GetBenefitApplicationCommand.d.ts +139 -0
- package/dist-types/commands/GetBenefitCommand.d.ts +102 -0
- package/dist-types/commands/ListBenefitAllocationsCommand.d.ts +123 -0
- package/dist-types/commands/ListBenefitApplicationsCommand.d.ts +141 -0
- package/dist-types/commands/ListBenefitsCommand.d.ts +116 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
- package/dist-types/commands/RecallBenefitApplicationCommand.d.ts +93 -0
- package/dist-types/commands/SubmitBenefitApplicationCommand.d.ts +91 -0
- package/dist-types/commands/TagResourceCommand.d.ts +99 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +96 -0
- package/dist-types/commands/UpdateBenefitApplicationCommand.d.ts +115 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/PartnerCentralBenefitsServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +149 -0
- package/dist-types/models/models_0.d.ts +1450 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListBenefitAllocationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBenefitApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBenefitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +107 -0
- package/dist-types/ts3.4/PartnerCentralBenefits.d.ts +308 -0
- package/dist-types/ts3.4/PartnerCentralBenefitsClient.d.ts +228 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AmendBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateBenefitApplicationResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateBenefitApplicationResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitAllocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBenefitAllocationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBenefitApplicationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBenefitsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RecallBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SubmitBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/PartnerCentralBenefitsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +167 -0
- package/dist-types/ts3.4/models/errors.d.ts +64 -0
- package/dist-types/ts3.4/models/models_0.d.ts +376 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListBenefitAllocationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBenefitApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBenefitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +113 -0
- package/package.json +99 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ValidationExceptionErrorCode: {
|
|
6
|
+
readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
|
|
7
|
+
readonly DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE";
|
|
8
|
+
readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
|
|
9
|
+
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
10
|
+
readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
|
|
11
|
+
readonly INVALID_VALUE: "INVALID_VALUE";
|
|
12
|
+
readonly NOT_ENOUGH_VALUES: "NOT_ENOUGH_VALUES";
|
|
13
|
+
readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
|
|
14
|
+
readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
|
|
15
|
+
readonly VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE";
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export type ValidationExceptionErrorCode = (typeof ValidationExceptionErrorCode)[keyof typeof ValidationExceptionErrorCode];
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
* @enum
|
|
24
|
+
*/
|
|
25
|
+
export declare const ValidationExceptionReason: {
|
|
26
|
+
readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
|
|
27
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
28
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
29
|
+
readonly OTHER: "other";
|
|
30
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* @enum
|
|
39
|
+
*/
|
|
40
|
+
export declare const ResourceType: {
|
|
41
|
+
readonly BENEFIT_ALLOCATION: "BENEFIT_ALLOCATION";
|
|
42
|
+
readonly OPPORTUNITY: "OPPORTUNITY";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const BenefitAllocationStatus: {
|
|
53
|
+
readonly ACTIVE: "ACTIVE";
|
|
54
|
+
readonly FULFILLED: "FULFILLED";
|
|
55
|
+
readonly INACTIVE: "INACTIVE";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export type BenefitAllocationStatus = (typeof BenefitAllocationStatus)[keyof typeof BenefitAllocationStatus];
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* @enum
|
|
64
|
+
*/
|
|
65
|
+
export declare const FulfillmentType: {
|
|
66
|
+
readonly ACCESS: "ACCESS";
|
|
67
|
+
readonly CASH: "CASH";
|
|
68
|
+
readonly CREDITS: "CREDITS";
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export type FulfillmentType = (typeof FulfillmentType)[keyof typeof FulfillmentType];
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const BenefitApplicationStatus: {
|
|
79
|
+
readonly ACTION_REQUIRED: "ACTION_REQUIRED";
|
|
80
|
+
readonly APPROVED: "APPROVED";
|
|
81
|
+
readonly CANCELED: "CANCELED";
|
|
82
|
+
readonly IN_REVIEW: "IN_REVIEW";
|
|
83
|
+
readonly PENDING_SUBMISSION: "PENDING_SUBMISSION";
|
|
84
|
+
readonly REJECTED: "REJECTED";
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export type BenefitApplicationStatus = (typeof BenefitApplicationStatus)[keyof typeof BenefitApplicationStatus];
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
* @enum
|
|
93
|
+
*/
|
|
94
|
+
export declare const BenefitStatus: {
|
|
95
|
+
readonly ACTIVE: "ACTIVE";
|
|
96
|
+
readonly INACTIVE: "INACTIVE";
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export type BenefitStatus = (typeof BenefitStatus)[keyof typeof BenefitStatus];
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
* @enum
|
|
105
|
+
*/
|
|
106
|
+
export declare const CurrencyCode: {
|
|
107
|
+
readonly AED: "AED";
|
|
108
|
+
readonly AMD: "AMD";
|
|
109
|
+
readonly ARS: "ARS";
|
|
110
|
+
readonly AUD: "AUD";
|
|
111
|
+
readonly AWG: "AWG";
|
|
112
|
+
readonly AZN: "AZN";
|
|
113
|
+
readonly BBD: "BBD";
|
|
114
|
+
readonly BDT: "BDT";
|
|
115
|
+
readonly BGN: "BGN";
|
|
116
|
+
readonly BMD: "BMD";
|
|
117
|
+
readonly BND: "BND";
|
|
118
|
+
readonly BOB: "BOB";
|
|
119
|
+
readonly BRL: "BRL";
|
|
120
|
+
readonly BSD: "BSD";
|
|
121
|
+
readonly BYR: "BYR";
|
|
122
|
+
readonly BZD: "BZD";
|
|
123
|
+
readonly CAD: "CAD";
|
|
124
|
+
readonly CHF: "CHF";
|
|
125
|
+
readonly CLP: "CLP";
|
|
126
|
+
readonly CNY: "CNY";
|
|
127
|
+
readonly COP: "COP";
|
|
128
|
+
readonly CRC: "CRC";
|
|
129
|
+
readonly CZK: "CZK";
|
|
130
|
+
readonly DKK: "DKK";
|
|
131
|
+
readonly DOP: "DOP";
|
|
132
|
+
readonly EEK: "EEK";
|
|
133
|
+
readonly EGP: "EGP";
|
|
134
|
+
readonly EUR: "EUR";
|
|
135
|
+
readonly GBP: "GBP";
|
|
136
|
+
readonly GEL: "GEL";
|
|
137
|
+
readonly GHS: "GHS";
|
|
138
|
+
readonly GTQ: "GTQ";
|
|
139
|
+
readonly GYD: "GYD";
|
|
140
|
+
readonly HKD: "HKD";
|
|
141
|
+
readonly HNL: "HNL";
|
|
142
|
+
readonly HRK: "HRK";
|
|
143
|
+
readonly HTG: "HTG";
|
|
144
|
+
readonly HUF: "HUF";
|
|
145
|
+
readonly IDR: "IDR";
|
|
146
|
+
readonly ILS: "ILS";
|
|
147
|
+
readonly INR: "INR";
|
|
148
|
+
readonly ISK: "ISK";
|
|
149
|
+
readonly JMD: "JMD";
|
|
150
|
+
readonly JPY: "JPY";
|
|
151
|
+
readonly KES: "KES";
|
|
152
|
+
readonly KHR: "KHR";
|
|
153
|
+
readonly KRW: "KRW";
|
|
154
|
+
readonly KYD: "KYD";
|
|
155
|
+
readonly KZT: "KZT";
|
|
156
|
+
readonly LBP: "LBP";
|
|
157
|
+
readonly LKR: "LKR";
|
|
158
|
+
readonly LTL: "LTL";
|
|
159
|
+
readonly LVL: "LVL";
|
|
160
|
+
readonly MAD: "MAD";
|
|
161
|
+
readonly MNT: "MNT";
|
|
162
|
+
readonly MOP: "MOP";
|
|
163
|
+
readonly MUR: "MUR";
|
|
164
|
+
readonly MVR: "MVR";
|
|
165
|
+
readonly MXN: "MXN";
|
|
166
|
+
readonly MYR: "MYR";
|
|
167
|
+
readonly NAD: "NAD";
|
|
168
|
+
readonly NGN: "NGN";
|
|
169
|
+
readonly NIO: "NIO";
|
|
170
|
+
readonly NOK: "NOK";
|
|
171
|
+
readonly NZD: "NZD";
|
|
172
|
+
readonly PAB: "PAB";
|
|
173
|
+
readonly PEN: "PEN";
|
|
174
|
+
readonly PHP: "PHP";
|
|
175
|
+
readonly PKR: "PKR";
|
|
176
|
+
readonly PLN: "PLN";
|
|
177
|
+
readonly PYG: "PYG";
|
|
178
|
+
readonly QAR: "QAR";
|
|
179
|
+
readonly RON: "RON";
|
|
180
|
+
readonly RUB: "RUB";
|
|
181
|
+
readonly SAR: "SAR";
|
|
182
|
+
readonly SEK: "SEK";
|
|
183
|
+
readonly SGD: "SGD";
|
|
184
|
+
readonly SIT: "SIT";
|
|
185
|
+
readonly SKK: "SKK";
|
|
186
|
+
readonly THB: "THB";
|
|
187
|
+
readonly TND: "TND";
|
|
188
|
+
readonly TRY: "TRY";
|
|
189
|
+
readonly TTD: "TTD";
|
|
190
|
+
readonly TWD: "TWD";
|
|
191
|
+
readonly TZS: "TZS";
|
|
192
|
+
readonly UAH: "UAH";
|
|
193
|
+
readonly USD: "USD";
|
|
194
|
+
readonly UYU: "UYU";
|
|
195
|
+
readonly UZS: "UZS";
|
|
196
|
+
readonly VND: "VND";
|
|
197
|
+
readonly XAF: "XAF";
|
|
198
|
+
readonly XCD: "XCD";
|
|
199
|
+
readonly XOF: "XOF";
|
|
200
|
+
readonly XPF: "XPF";
|
|
201
|
+
readonly ZAR: "ZAR";
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
* @enum
|
|
210
|
+
*/
|
|
211
|
+
export declare const FileType: {
|
|
212
|
+
readonly CSV: "text/csv";
|
|
213
|
+
readonly DOC: "application/msword";
|
|
214
|
+
readonly DOCX: "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
|
|
215
|
+
readonly JPG: "image/jpeg";
|
|
216
|
+
readonly PDF: "application/pdf";
|
|
217
|
+
readonly PNG: "image/png";
|
|
218
|
+
readonly PPTX: "application/vnd.openxmlformats-officedocument.presentationml.presentation";
|
|
219
|
+
readonly SVG: "image/svg+xml";
|
|
220
|
+
readonly XLSX: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export type FileType = (typeof FileType)[keyof typeof FileType];
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { PartnerCentralBenefitsServiceException as __BaseException } from "./PartnerCentralBenefitsServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Thrown when the caller does not have sufficient permissions to perform the requested operation.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* <p>A message describing the access denial.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
Message: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* @internal
|
|
19
|
+
*/
|
|
20
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* <p>Thrown when the request conflicts with the current state of the resource, such as attempting to modify a resource that has been changed by another process.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export declare class ConflictException extends __BaseException {
|
|
27
|
+
readonly name: "ConflictException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
/**
|
|
30
|
+
* <p>A message describing the conflict.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
Message: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>Thrown when an unexpected error occurs on the server side during request processing.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InternalServerException extends __BaseException {
|
|
44
|
+
readonly name: "InternalServerException";
|
|
45
|
+
readonly $fault: "server";
|
|
46
|
+
/**
|
|
47
|
+
* <p>A message describing the internal server error.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
Message: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* <p>Thrown when the requested resource cannot be found or does not exist.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
|
+
readonly name: "ResourceNotFoundException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
/**
|
|
64
|
+
* <p>A message describing the resource not found error.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
Message: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* <p>Thrown when the request rate exceeds the allowed limits and the request is being throttled.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class ThrottlingException extends __BaseException {
|
|
78
|
+
readonly name: "ThrottlingException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
/**
|
|
81
|
+
* <p>A message describing the throttling error.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
Message: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>Thrown when the request contains invalid parameters or fails input validation requirements.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class ValidationException extends __BaseException {
|
|
95
|
+
readonly name: "ValidationException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
/**
|
|
98
|
+
* <p>A message describing the validation error.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
Message: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The reason for the validation failure.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
Reason: ValidationExceptionReason | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>A list of fields that failed validation.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
FieldList?: ValidationExceptionField[] | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* <p>Thrown when the request would exceed the service quotas or limits for the account.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
122
|
+
readonly name: "ServiceQuotaExceededException";
|
|
123
|
+
readonly $fault: "client";
|
|
124
|
+
$retryable: {};
|
|
125
|
+
/**
|
|
126
|
+
* <p>A message describing the service quota exceeded error.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
Message: string | undefined;
|
|
130
|
+
/**
|
|
131
|
+
* <p>The identifier of the resource that would exceed the quota.</p>
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
ResourceId: string | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* <p>The type of the resource that would exceed the quota.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
ResourceType: string | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The code identifying the specific quota that would be exceeded.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
QuotaCode: string | undefined;
|
|
145
|
+
/**
|
|
146
|
+
* @internal
|
|
147
|
+
*/
|
|
148
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
149
|
+
}
|