@aws-sdk/client-bcm-data-exports 3.1002.0 → 3.1004.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.
Files changed (35) hide show
  1. package/README.md +1 -8
  2. package/dist-cjs/endpoint/ruleset.js +2 -2
  3. package/dist-cjs/index.js +9 -9
  4. package/dist-cjs/models/errors.js +16 -1
  5. package/dist-cjs/schemas/schemas_0.js +9 -2
  6. package/dist-es/endpoint/ruleset.js +2 -2
  7. package/dist-es/models/enums.js +9 -9
  8. package/dist-es/models/errors.js +14 -0
  9. package/dist-es/schemas/schemas_0.js +8 -1
  10. package/dist-types/BCMDataExports.d.ts +1 -8
  11. package/dist-types/BCMDataExportsClient.d.ts +1 -8
  12. package/dist-types/commands/CreateExportCommand.d.ts +7 -23
  13. package/dist-types/commands/DeleteExportCommand.d.ts +2 -4
  14. package/dist-types/commands/GetExecutionCommand.d.ts +2 -4
  15. package/dist-types/commands/GetExportCommand.d.ts +2 -4
  16. package/dist-types/commands/GetTableCommand.d.ts +3 -6
  17. package/dist-types/commands/ListExecutionsCommand.d.ts +2 -4
  18. package/dist-types/commands/ListExportsCommand.d.ts +2 -4
  19. package/dist-types/commands/ListTablesCommand.d.ts +2 -4
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -4
  21. package/dist-types/commands/TagResourceCommand.d.ts +5 -4
  22. package/dist-types/commands/UntagResourceCommand.d.ts +5 -4
  23. package/dist-types/commands/UpdateExportCommand.d.ts +3 -6
  24. package/dist-types/endpoint/EndpointParameters.d.ts +2 -2
  25. package/dist-types/index.d.ts +1 -8
  26. package/dist-types/models/enums.d.ts +13 -13
  27. package/dist-types/models/errors.d.ts +18 -10
  28. package/dist-types/models/models_0.d.ts +125 -145
  29. package/dist-types/schemas/schemas_0.d.ts +1 -0
  30. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +2 -2
  31. package/dist-types/ts3.4/models/enums.d.ts +13 -13
  32. package/dist-types/ts3.4/models/errors.d.ts +8 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +34 -34
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  35. package/package.json +37 -37
@@ -74,19 +74,14 @@ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof
74
74
  * @public
75
75
  * @enum
76
76
  */
77
- export declare const ExecutionStatusCode: {
78
- readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
79
- readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
80
- readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
81
- readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
82
- readonly QUERY_FAILURE: "QUERY_FAILURE";
83
- readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
84
- readonly QUERY_QUEUED: "QUERY_QUEUED";
77
+ export declare const ExportStatusCode: {
78
+ readonly HEALTHY: "HEALTHY";
79
+ readonly UNHEALTHY: "UNHEALTHY";
85
80
  };
86
81
  /**
87
82
  * @public
88
83
  */
89
- export type ExecutionStatusCode = (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
84
+ export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
90
85
  /**
91
86
  * @public
92
87
  * @enum
@@ -104,11 +99,16 @@ export type ExecutionStatusReason = (typeof ExecutionStatusReason)[keyof typeof
104
99
  * @public
105
100
  * @enum
106
101
  */
107
- export declare const ExportStatusCode: {
108
- readonly HEALTHY: "HEALTHY";
109
- readonly UNHEALTHY: "UNHEALTHY";
102
+ export declare const ExecutionStatusCode: {
103
+ readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
104
+ readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
105
+ readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
106
+ readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
107
+ readonly QUERY_FAILURE: "QUERY_FAILURE";
108
+ readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
109
+ readonly QUERY_QUEUED: "QUERY_QUEUED";
110
110
  };
111
111
  /**
112
112
  * @public
113
113
  */
114
- export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
114
+ export type ExecutionStatusCode = (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
@@ -3,8 +3,20 @@ import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExpo
3
3
  import { ValidationExceptionReason } from "./enums";
4
4
  import { ValidationExceptionField } from "./models_0";
5
5
  /**
6
- * <p>An error on the server occurred during the processing of your request. Try again
7
- * later.</p>
6
+ * <p>You don't have sufficient access to perform this action.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ Message: string | undefined;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
17
+ }
18
+ /**
19
+ * <p>An error on the server occurred during the processing of your request. Try again later.</p>
8
20
  * @public
9
21
  */
10
22
  export declare class InternalServerException extends __BaseException {
@@ -17,8 +29,7 @@ export declare class InternalServerException extends __BaseException {
17
29
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
18
30
  }
19
31
  /**
20
- * <p>You've reached the limit on the number of resources you can create, or exceeded the size
21
- * of an individual resource.</p>
32
+ * <p>You've reached the limit on the number of resources you can create, or exceeded the size of an individual resource.</p>
22
33
  * @public
23
34
  */
24
35
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -41,8 +52,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
41
52
  */
42
53
  QuotaCode: string | undefined;
43
54
  /**
44
- * <p>The service code that exceeded quota. It will always be
45
- * “AWSBillingAndCostManagementDataExports”.</p>
55
+ * <p>The service code that exceeded quota. It will always be “AWSBillingAndCostManagementDataExports”.</p>
46
56
  * @public
47
57
  */
48
58
  ServiceCode: string | undefined;
@@ -65,8 +75,7 @@ export declare class ThrottlingException extends __BaseException {
65
75
  */
66
76
  QuotaCode?: string | undefined;
67
77
  /**
68
- * <p>The service code that exceeded the throttling limit. It will always be
69
- * “AWSBillingAndCostManagementDataExports”.</p>
78
+ * <p>The service code that exceeded the throttling limit. It will always be “AWSBillingAndCostManagementDataExports”.</p>
70
79
  * @public
71
80
  */
72
81
  ServiceCode?: string | undefined;
@@ -76,8 +85,7 @@ export declare class ThrottlingException extends __BaseException {
76
85
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
77
86
  }
78
87
  /**
79
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
80
- * service.</p>
88
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
81
89
  * @public
82
90
  */
83
91
  export declare class ValidationException extends __BaseException {
@@ -36,17 +36,13 @@ export interface S3OutputConfigurations {
36
36
  */
37
37
  Compression: CompressionOption | undefined;
38
38
  /**
39
- * <p>The rule to follow when generating a version of the data export file. You have the choice
40
- * to overwrite the previous version or to be delivered in addition to the previous versions.
41
- * Overwriting exports can save on Amazon S3 storage costs. Creating new export versions allows
42
- * you to track the changes in cost and usage data over time.</p>
39
+ * <p>The rule to follow when generating a version of the data export file. You have the choice to overwrite the previous version or to be delivered in addition to the previous versions. Overwriting exports can save on Amazon S3 storage costs. Creating new export versions allows you to track the changes in cost and usage data over time.</p>
43
40
  * @public
44
41
  */
45
42
  Overwrite: OverwriteOption | undefined;
46
43
  }
47
44
  /**
48
- * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object
49
- * keys of a data exports file.</p>
45
+ * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a data exports file.</p>
50
46
  * @public
51
47
  */
52
48
  export interface S3Destination {
@@ -88,8 +84,7 @@ export interface DestinationConfigurations {
88
84
  */
89
85
  export interface RefreshCadence {
90
86
  /**
91
- * <p>The frequency that data exports are updated. The export refreshes each time the source
92
- * data updates, up to three times daily.</p>
87
+ * <p>The frequency that data exports are updated. The export refreshes each time the source data updates, up to three times daily.</p>
93
88
  * @public
94
89
  */
95
90
  Frequency: FrequencyOption | undefined;
@@ -151,14 +146,12 @@ export interface ResourceTag {
151
146
  */
152
147
  export interface CreateExportRequest {
153
148
  /**
154
- * <p>The details of the export, including data query, name, description, and destination
155
- * configuration.</p>
149
+ * <p>The details of the export, including data query, name, description, and destination configuration.</p>
156
150
  * @public
157
151
  */
158
152
  Export: Export | undefined;
159
153
  /**
160
- * <p>An optional list of tags to associate with the specified export. Each tag consists of a
161
- * key and a value, and each key must be unique for the resource.</p>
154
+ * <p>An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.</p>
162
155
  * @public
163
156
  */
164
157
  ResourceTags?: ResourceTag[] | undefined;
@@ -174,8 +167,7 @@ export interface CreateExportResponse {
174
167
  ExportArn?: string | undefined;
175
168
  }
176
169
  /**
177
- * <p>The input failed to meet the constraints specified by the Amazon Web Services service in a
178
- * specified field.</p>
170
+ * <p>The input failed to meet the constraints specified by the Amazon Web Services service in a specified field.</p>
179
171
  * @public
180
172
  */
181
173
  export interface ValidationExceptionField {
@@ -213,127 +205,200 @@ export interface DeleteExportResponse {
213
205
  /**
214
206
  * @public
215
207
  */
216
- export interface GetExecutionRequest {
208
+ export interface GetExportRequest {
217
209
  /**
218
- * <p>The Amazon Resource Name (ARN) of the Export object that generated this specific
219
- * execution.</p>
210
+ * <p>The Amazon Resource Name (ARN) for this export.</p>
220
211
  * @public
221
212
  */
222
213
  ExportArn: string | undefined;
214
+ }
215
+ /**
216
+ * <p>The status of the data export.</p>
217
+ * @public
218
+ */
219
+ export interface ExportStatus {
223
220
  /**
224
- * <p>The ID for this specific execution.</p>
221
+ * <p>The status code for the request.</p>
225
222
  * @public
226
223
  */
227
- ExecutionId: string | undefined;
224
+ StatusCode?: ExportStatusCode | undefined;
225
+ /**
226
+ * <p>The description for the status code.</p>
227
+ * @public
228
+ */
229
+ StatusReason?: ExecutionStatusReason | undefined;
230
+ /**
231
+ * <p>The timestamp of when the export was created.</p>
232
+ * @public
233
+ */
234
+ CreatedAt?: Date | undefined;
235
+ /**
236
+ * <p>The timestamp of when the export was updated.</p>
237
+ * @public
238
+ */
239
+ LastUpdatedAt?: Date | undefined;
240
+ /**
241
+ * <p>The timestamp of when the export was last generated.</p>
242
+ * @public
243
+ */
244
+ LastRefreshedAt?: Date | undefined;
228
245
  }
229
246
  /**
230
- * <p>The status of the execution.</p>
231
247
  * @public
232
248
  */
233
- export interface ExecutionStatus {
249
+ export interface GetExportResponse {
234
250
  /**
235
- * <p>The code for the status of the execution.</p>
251
+ * <p>The data for this specific export.</p>
236
252
  * @public
237
253
  */
238
- StatusCode?: ExecutionStatusCode | undefined;
254
+ Export?: Export | undefined;
239
255
  /**
240
- * <p>The reason for the failed status.</p>
256
+ * <p>The status of this specific export.</p>
241
257
  * @public
242
258
  */
243
- StatusReason?: ExecutionStatusReason | undefined;
259
+ ExportStatus?: ExportStatus | undefined;
260
+ }
261
+ /**
262
+ * @public
263
+ */
264
+ export interface ListExportsRequest {
244
265
  /**
245
- * <p>The time when the execution was created.</p>
266
+ * <p>The maximum number of objects that are returned for the request.</p>
246
267
  * @public
247
268
  */
248
- CreatedAt?: Date | undefined;
269
+ MaxResults?: number | undefined;
249
270
  /**
250
- * <p>The time when the execution was completed.</p>
271
+ * <p>The token to retrieve the next set of results.</p>
251
272
  * @public
252
273
  */
253
- CompletedAt?: Date | undefined;
274
+ NextToken?: string | undefined;
275
+ }
276
+ /**
277
+ * <p>The reference details for a given export.</p>
278
+ * @public
279
+ */
280
+ export interface ExportReference {
254
281
  /**
255
- * <p>The time when the execution was last updated.</p>
282
+ * <p>The Amazon Resource Name (ARN) for this export.</p>
256
283
  * @public
257
284
  */
258
- LastUpdatedAt?: Date | undefined;
285
+ ExportArn: string | undefined;
286
+ /**
287
+ * <p>The name of this specific data export.</p>
288
+ * @public
289
+ */
290
+ ExportName: string | undefined;
291
+ /**
292
+ * <p>The status of this specific data export.</p>
293
+ * @public
294
+ */
295
+ ExportStatus: ExportStatus | undefined;
259
296
  }
260
297
  /**
261
298
  * @public
262
299
  */
263
- export interface GetExecutionResponse {
300
+ export interface ListExportsResponse {
264
301
  /**
265
- * <p>The ID for this specific execution.</p>
302
+ * <p>The details of the exports, including name and export status.</p>
266
303
  * @public
267
304
  */
268
- ExecutionId?: string | undefined;
305
+ Exports?: ExportReference[] | undefined;
269
306
  /**
270
- * <p>The export data for this specific execution. This export data is a snapshot from when the
271
- * execution was generated. The data could be different from the current export data if the
272
- * export was updated since the execution was generated.</p>
307
+ * <p>The token to retrieve the next set of results.</p>
273
308
  * @public
274
309
  */
275
- Export?: Export | undefined;
310
+ NextToken?: string | undefined;
311
+ }
312
+ /**
313
+ * @public
314
+ */
315
+ export interface UpdateExportRequest {
276
316
  /**
277
- * <p>The status of this specific execution.</p>
317
+ * <p>The Amazon Resource Name (ARN) for this export.</p>
278
318
  * @public
279
319
  */
280
- ExecutionStatus?: ExecutionStatus | undefined;
320
+ ExportArn: string | undefined;
321
+ /**
322
+ * <p>The name and query details for the export.</p>
323
+ * @public
324
+ */
325
+ Export: Export | undefined;
281
326
  }
282
327
  /**
283
328
  * @public
284
329
  */
285
- export interface GetExportRequest {
330
+ export interface UpdateExportResponse {
286
331
  /**
287
332
  * <p>The Amazon Resource Name (ARN) for this export.</p>
288
333
  * @public
289
334
  */
335
+ ExportArn?: string | undefined;
336
+ }
337
+ /**
338
+ * @public
339
+ */
340
+ export interface GetExecutionRequest {
341
+ /**
342
+ * <p>The Amazon Resource Name (ARN) of the Export object that generated this specific execution.</p>
343
+ * @public
344
+ */
290
345
  ExportArn: string | undefined;
346
+ /**
347
+ * <p>The ID for this specific execution.</p>
348
+ * @public
349
+ */
350
+ ExecutionId: string | undefined;
291
351
  }
292
352
  /**
293
- * <p>The status of the data export.</p>
353
+ * <p>The status of the execution.</p>
294
354
  * @public
295
355
  */
296
- export interface ExportStatus {
356
+ export interface ExecutionStatus {
297
357
  /**
298
- * <p>The status code for the request.</p>
358
+ * <p>The code for the status of the execution.</p>
299
359
  * @public
300
360
  */
301
- StatusCode?: ExportStatusCode | undefined;
361
+ StatusCode?: ExecutionStatusCode | undefined;
302
362
  /**
303
- * <p>The description for the status code.</p>
363
+ * <p>The reason for the failed status.</p>
304
364
  * @public
305
365
  */
306
366
  StatusReason?: ExecutionStatusReason | undefined;
307
367
  /**
308
- * <p>The timestamp of when the export was created.</p>
368
+ * <p>The time when the execution was created.</p>
309
369
  * @public
310
370
  */
311
371
  CreatedAt?: Date | undefined;
312
372
  /**
313
- * <p>The timestamp of when the export was updated.</p>
373
+ * <p>The time when the execution was completed.</p>
314
374
  * @public
315
375
  */
316
- LastUpdatedAt?: Date | undefined;
376
+ CompletedAt?: Date | undefined;
317
377
  /**
318
- * <p>The timestamp of when the export was last generated.</p>
378
+ * <p>The time when the execution was last updated.</p>
319
379
  * @public
320
380
  */
321
- LastRefreshedAt?: Date | undefined;
381
+ LastUpdatedAt?: Date | undefined;
322
382
  }
323
383
  /**
324
384
  * @public
325
385
  */
326
- export interface GetExportResponse {
386
+ export interface GetExecutionResponse {
327
387
  /**
328
- * <p>The data for this specific export.</p>
388
+ * <p>The ID for this specific execution.</p>
389
+ * @public
390
+ */
391
+ ExecutionId?: string | undefined;
392
+ /**
393
+ * <p>The export data for this specific execution. This export data is a snapshot from when the execution was generated. The data could be different from the current export data if the export was updated since the execution was generated.</p>
329
394
  * @public
330
395
  */
331
396
  Export?: Export | undefined;
332
397
  /**
333
- * <p>The status of this specific export.</p>
398
+ * <p>The status of this specific execution.</p>
334
399
  * @public
335
400
  */
336
- ExportStatus?: ExportStatus | undefined;
401
+ ExecutionStatus?: ExecutionStatus | undefined;
337
402
  }
338
403
  /**
339
404
  * @public
@@ -345,17 +410,13 @@ export interface GetTableRequest {
345
410
  */
346
411
  TableName: string | undefined;
347
412
  /**
348
- * <p>TableProperties are additional configurations you can provide to change the data and
349
- * schema of a table. Each table can have different TableProperties. Tables are not required to
350
- * have any TableProperties. Each table property has a default value that it assumes if not
351
- * specified.</p>
413
+ * <p>TableProperties are additional configurations you can provide to change the data and schema of a table. Each table can have different TableProperties. Tables are not required to have any TableProperties. Each table property has a default value that it assumes if not specified.</p>
352
414
  * @public
353
415
  */
354
416
  TableProperties?: Record<string, string> | undefined;
355
417
  }
356
418
  /**
357
- * <p>Includes basic information for a data column such as its description, name, and
358
- * type.</p>
419
+ * <p>Includes basic information for a data column such as its description, name, and type.</p>
359
420
  * @public
360
421
  */
361
422
  export interface Column {
@@ -390,10 +451,7 @@ export interface GetTableResponse {
390
451
  */
391
452
  Description?: string | undefined;
392
453
  /**
393
- * <p>TableProperties are additional configurations you can provide to change the data and
394
- * schema of a table. Each table can have different TableProperties. Tables are not required to
395
- * have any TableProperties. Each table property has a default value that it assumes if not
396
- * specified.</p>
454
+ * <p>TableProperties are additional configurations you can provide to change the data and schema of a table. Each table can have different TableProperties. Tables are not required to have any TableProperties. Each table property has a default value that it assumes if not specified.</p>
397
455
  * @public
398
456
  */
399
457
  TableProperties?: Record<string, string> | undefined;
@@ -454,57 +512,6 @@ export interface ListExecutionsResponse {
454
512
  */
455
513
  NextToken?: string | undefined;
456
514
  }
457
- /**
458
- * @public
459
- */
460
- export interface ListExportsRequest {
461
- /**
462
- * <p>The maximum number of objects that are returned for the request.</p>
463
- * @public
464
- */
465
- MaxResults?: number | undefined;
466
- /**
467
- * <p>The token to retrieve the next set of results.</p>
468
- * @public
469
- */
470
- NextToken?: string | undefined;
471
- }
472
- /**
473
- * <p>The reference details for a given export.</p>
474
- * @public
475
- */
476
- export interface ExportReference {
477
- /**
478
- * <p>The Amazon Resource Name (ARN) for this export.</p>
479
- * @public
480
- */
481
- ExportArn: string | undefined;
482
- /**
483
- * <p>The name of this specific data export.</p>
484
- * @public
485
- */
486
- ExportName: string | undefined;
487
- /**
488
- * <p>The status of this specific data export.</p>
489
- * @public
490
- */
491
- ExportStatus: ExportStatus | undefined;
492
- }
493
- /**
494
- * @public
495
- */
496
- export interface ListExportsResponse {
497
- /**
498
- * <p>The details of the exports, including name and export status.</p>
499
- * @public
500
- */
501
- Exports?: ExportReference[] | undefined;
502
- /**
503
- * <p>The token to retrieve the next set of results.</p>
504
- * @public
505
- */
506
- NextToken?: string | undefined;
507
- }
508
515
  /**
509
516
  * @public
510
517
  */
@@ -607,8 +614,7 @@ export interface ListTagsForResourceRequest {
607
614
  */
608
615
  export interface ListTagsForResourceResponse {
609
616
  /**
610
- * <p>An optional list of tags to associate with the specified export. Each tag consists of a
611
- * key and a value, and each key must be unique for the resource.</p>
617
+ * <p>An optional list of tags to associate with the specified export. Each tag consists of a key and a value, and each key must be unique for the resource.</p>
612
618
  * @public
613
619
  */
614
620
  ResourceTags?: ResourceTag[] | undefined;
@@ -628,8 +634,7 @@ export interface TagResourceRequest {
628
634
  */
629
635
  ResourceArn: string | undefined;
630
636
  /**
631
- * <p>The tags to associate with the resource. Each tag consists of a key and a value, and each
632
- * key must be unique for the resource.</p>
637
+ * <p>The tags to associate with the resource. Each tag consists of a key and a value, and each key must be unique for the resource.</p>
633
638
  * @public
634
639
  */
635
640
  ResourceTags: ResourceTag[] | undefined;
@@ -659,28 +664,3 @@ export interface UntagResourceRequest {
659
664
  */
660
665
  export interface UntagResourceResponse {
661
666
  }
662
- /**
663
- * @public
664
- */
665
- export interface UpdateExportRequest {
666
- /**
667
- * <p>The Amazon Resource Name (ARN) for this export.</p>
668
- * @public
669
- */
670
- ExportArn: string | undefined;
671
- /**
672
- * <p>The name and query details for the export.</p>
673
- * @public
674
- */
675
- Export: Export | undefined;
676
- }
677
- /**
678
- * @public
679
- */
680
- export interface UpdateExportResponse {
681
- /**
682
- * <p>The Amazon Resource Name (ARN) for this export.</p>
683
- * @public
684
- */
685
- ExportArn?: string | undefined;
686
- }
@@ -1,6 +1,7 @@
1
1
  import { TypeRegistry } from "@smithy/core/schema";
2
2
  import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
3
3
  export declare var BCMDataExportsServiceException$: StaticErrorSchema;
4
+ export declare var AccessDeniedException$: StaticErrorSchema;
4
5
  export declare var InternalServerException$: StaticErrorSchema;
5
6
  export declare var ResourceNotFoundException$: StaticErrorSchema;
6
7
  export declare var ServiceQuotaExceededException$: StaticErrorSchema;
@@ -5,7 +5,6 @@ import {
5
5
  Provider,
6
6
  } from "@smithy/types";
7
7
  export interface ClientInputEndpointParameters {
8
- region?: string | undefined | Provider<string | undefined>;
9
8
  useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
10
9
  endpoint?:
11
10
  | string
@@ -14,6 +13,7 @@ export interface ClientInputEndpointParameters {
14
13
  | Provider<Endpoint>
15
14
  | EndpointV2
16
15
  | Provider<EndpointV2>;
16
+ region?: string | undefined | Provider<string | undefined>;
17
17
  }
18
18
  export type ClientResolvedEndpointParameters = Pick<
19
19
  ClientInputEndpointParameters,
@@ -39,7 +39,7 @@ export declare const commonParams: {
39
39
  };
40
40
  };
41
41
  export interface EndpointParameters extends __EndpointParameters {
42
- Region?: string | undefined;
43
42
  UseFIPS?: boolean | undefined;
44
43
  Endpoint?: string | undefined;
44
+ Region?: string | undefined;
45
45
  }
@@ -32,6 +32,19 @@ export declare const ValidationExceptionReason: {
32
32
  };
33
33
  export type ValidationExceptionReason =
34
34
  (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
35
+ export declare const ExportStatusCode: {
36
+ readonly HEALTHY: "HEALTHY";
37
+ readonly UNHEALTHY: "UNHEALTHY";
38
+ };
39
+ export type ExportStatusCode =
40
+ (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
41
+ export declare const ExecutionStatusReason: {
42
+ readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
43
+ readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
44
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
45
+ };
46
+ export type ExecutionStatusReason =
47
+ (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
35
48
  export declare const ExecutionStatusCode: {
36
49
  readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
37
50
  readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
@@ -43,16 +56,3 @@ export declare const ExecutionStatusCode: {
43
56
  };
44
57
  export type ExecutionStatusCode =
45
58
  (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
46
- export declare const ExecutionStatusReason: {
47
- readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
48
- readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
49
- readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
50
- };
51
- export type ExecutionStatusReason =
52
- (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
53
- export declare const ExportStatusCode: {
54
- readonly HEALTHY: "HEALTHY";
55
- readonly UNHEALTHY: "UNHEALTHY";
56
- };
57
- export type ExportStatusCode =
58
- (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
@@ -2,6 +2,14 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
3
3
  import { ValidationExceptionReason } from "./enums";
4
4
  import { ValidationExceptionField } from "./models_0";
5
+ export declare class AccessDeniedException extends __BaseException {
6
+ readonly name: "AccessDeniedException";
7
+ readonly $fault: "client";
8
+ Message: string | undefined;
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
5
13
  export declare class InternalServerException extends __BaseException {
6
14
  readonly name: "InternalServerException";
7
15
  readonly $fault: "server";