@aws-sdk/client-bcm-data-exports 3.529.1 → 3.535.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 (37) hide show
  1. package/dist-types/BCMDataExports.d.ts +3 -1
  2. package/dist-types/BCMDataExportsClient.d.ts +1 -1
  3. package/dist-types/commands/CreateExportCommand.d.ts +2 -1
  4. package/dist-types/commands/DeleteExportCommand.d.ts +2 -1
  5. package/dist-types/commands/GetExecutionCommand.d.ts +2 -1
  6. package/dist-types/commands/GetExportCommand.d.ts +2 -1
  7. package/dist-types/commands/GetTableCommand.d.ts +2 -1
  8. package/dist-types/commands/ListExecutionsCommand.d.ts +2 -1
  9. package/dist-types/commands/ListExportsCommand.d.ts +2 -1
  10. package/dist-types/commands/ListTablesCommand.d.ts +2 -1
  11. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  12. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  13. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  14. package/dist-types/commands/UpdateExportCommand.d.ts +2 -1
  15. package/dist-types/models/models_0.d.ts +121 -121
  16. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  17. package/dist-types/runtimeConfig.d.ts +2 -2
  18. package/dist-types/runtimeConfig.native.d.ts +2 -2
  19. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  20. package/dist-types/ts3.4/BCMDataExports.d.ts +2 -0
  21. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  37. package/package.json +40 -40
@@ -1,18 +1,18 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>The SQL query of column selections and row filters from the data table you want.</p>
5
+ * @public
6
6
  */
7
7
  export interface DataQuery {
8
8
  /**
9
- * @public
10
9
  * <p>The query statement.</p>
10
+ * @public
11
11
  */
12
12
  QueryStatement: string | undefined;
13
13
  /**
14
- * @public
15
14
  * <p>The table configuration.</p>
15
+ * @public
16
16
  */
17
17
  TableConfigurations?: Record<string, Record<string, string>>;
18
18
  }
@@ -64,69 +64,69 @@ export declare const OverwriteOption: {
64
64
  */
65
65
  export type OverwriteOption = (typeof OverwriteOption)[keyof typeof OverwriteOption];
66
66
  /**
67
- * @public
68
67
  * <p>The compression type, file format, and overwrite preference for the data export.</p>
68
+ * @public
69
69
  */
70
70
  export interface S3OutputConfigurations {
71
71
  /**
72
- * @public
73
72
  * <p>The output type for the data export.</p>
73
+ * @public
74
74
  */
75
75
  OutputType: S3OutputType | undefined;
76
76
  /**
77
- * @public
78
77
  * <p>The file format for the data export.</p>
78
+ * @public
79
79
  */
80
80
  Format: FormatOption | undefined;
81
81
  /**
82
- * @public
83
82
  * <p>The compression type for the data export.</p>
83
+ * @public
84
84
  */
85
85
  Compression: CompressionOption | undefined;
86
86
  /**
87
- * @public
88
87
  * <p>The rule to follow when generating a version of the data export file. You have the choice
89
88
  * to overwrite the previous version or to be delivered in addition to the previous versions.
90
89
  * Overwriting exports can save on Amazon S3 storage costs. Creating new export versions allows
91
90
  * you to track the changes in cost and usage data over time.</p>
91
+ * @public
92
92
  */
93
93
  Overwrite: OverwriteOption | undefined;
94
94
  }
95
95
  /**
96
- * @public
97
96
  * <p>Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object
98
97
  * keys of a data exports file.</p>
98
+ * @public
99
99
  */
100
100
  export interface S3Destination {
101
101
  /**
102
- * @public
103
102
  * <p>The name of the Amazon S3 bucket used as the destination of a data export file.</p>
103
+ * @public
104
104
  */
105
105
  S3Bucket: string | undefined;
106
106
  /**
107
- * @public
108
107
  * <p>The S3 path prefix you want prepended to the name of your data export.</p>
108
+ * @public
109
109
  */
110
110
  S3Prefix: string | undefined;
111
111
  /**
112
- * @public
113
112
  * <p>The S3 bucket Region.</p>
113
+ * @public
114
114
  */
115
115
  S3Region: string | undefined;
116
116
  /**
117
- * @public
118
117
  * <p>The output configuration for the data export.</p>
118
+ * @public
119
119
  */
120
120
  S3OutputConfigurations: S3OutputConfigurations | undefined;
121
121
  }
122
122
  /**
123
- * @public
124
123
  * <p>The destinations used for data exports.</p>
124
+ * @public
125
125
  */
126
126
  export interface DestinationConfigurations {
127
127
  /**
128
- * @public
129
128
  * <p>An object that describes the destination of the data exports file.</p>
129
+ * @public
130
130
  */
131
131
  S3Destination: S3Destination | undefined;
132
132
  }
@@ -142,66 +142,66 @@ export declare const FrequencyOption: {
142
142
  */
143
143
  export type FrequencyOption = (typeof FrequencyOption)[keyof typeof FrequencyOption];
144
144
  /**
145
- * @public
146
145
  * <p>The cadence for Amazon Web Services to update the data export in your S3 bucket.</p>
146
+ * @public
147
147
  */
148
148
  export interface RefreshCadence {
149
149
  /**
150
- * @public
151
150
  * <p>The frequency that data exports are updated. The export refreshes each time the source
152
151
  * data updates, up to three times daily.</p>
152
+ * @public
153
153
  */
154
154
  Frequency: FrequencyOption | undefined;
155
155
  }
156
156
  /**
157
- * @public
158
157
  * <p>The details that are available for an export.</p>
158
+ * @public
159
159
  */
160
160
  export interface Export {
161
161
  /**
162
- * @public
163
162
  * <p>The Amazon Resource Name (ARN) for this export.</p>
163
+ * @public
164
164
  */
165
165
  ExportArn?: string;
166
166
  /**
167
- * @public
168
167
  * <p>The name of this specific data export.</p>
168
+ * @public
169
169
  */
170
170
  Name: string | undefined;
171
171
  /**
172
- * @public
173
172
  * <p>The description for this specific data export.</p>
173
+ * @public
174
174
  */
175
175
  Description?: string;
176
176
  /**
177
- * @public
178
177
  * <p>The data query for this specific data export.</p>
178
+ * @public
179
179
  */
180
180
  DataQuery: DataQuery | undefined;
181
181
  /**
182
- * @public
183
182
  * <p>The destination configuration for this specific data export.</p>
183
+ * @public
184
184
  */
185
185
  DestinationConfigurations: DestinationConfigurations | undefined;
186
186
  /**
187
- * @public
188
187
  * <p>The cadence for Amazon Web Services to update the export in your S3 bucket.</p>
188
+ * @public
189
189
  */
190
190
  RefreshCadence: RefreshCadence | undefined;
191
191
  }
192
192
  /**
193
- * @public
194
193
  * <p>The tag structure that contains a tag key and value.</p>
194
+ * @public
195
195
  */
196
196
  export interface ResourceTag {
197
197
  /**
198
- * @public
199
198
  * <p>The key that's associated with the tag.</p>
199
+ * @public
200
200
  */
201
201
  Key: string | undefined;
202
202
  /**
203
- * @public
204
203
  * <p>The value that's associated with the tag.</p>
204
+ * @public
205
205
  */
206
206
  Value: string | undefined;
207
207
  }
@@ -210,15 +210,15 @@ export interface ResourceTag {
210
210
  */
211
211
  export interface CreateExportRequest {
212
212
  /**
213
- * @public
214
213
  * <p>The details of the export, including data query, name, description, and destination
215
214
  * configuration.</p>
215
+ * @public
216
216
  */
217
217
  Export: Export | undefined;
218
218
  /**
219
- * @public
220
219
  * <p>An optional list of tags to associate with the specified export. Each tag consists of a
221
220
  * key and a value, and each key must be unique for the resource.</p>
221
+ * @public
222
222
  */
223
223
  ResourceTags?: ResourceTag[];
224
224
  }
@@ -227,15 +227,15 @@ export interface CreateExportRequest {
227
227
  */
228
228
  export interface CreateExportResponse {
229
229
  /**
230
- * @public
231
230
  * <p>The Amazon Resource Name (ARN) for this export.</p>
231
+ * @public
232
232
  */
233
233
  ExportArn?: string;
234
234
  }
235
235
  /**
236
- * @public
237
236
  * <p>An error on the server occurred during the processing of your request. Try again
238
237
  * later.</p>
238
+ * @public
239
239
  */
240
240
  export declare class InternalServerException extends __BaseException {
241
241
  readonly name: "InternalServerException";
@@ -247,33 +247,33 @@ export declare class InternalServerException extends __BaseException {
247
247
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
248
248
  }
249
249
  /**
250
- * @public
251
250
  * <p>You've reached the limit on the number of resources you can create, or exceeded the size
252
251
  * of an individual resource.</p>
252
+ * @public
253
253
  */
254
254
  export declare class ServiceQuotaExceededException extends __BaseException {
255
255
  readonly name: "ServiceQuotaExceededException";
256
256
  readonly $fault: "client";
257
257
  Message: string | undefined;
258
258
  /**
259
- * @public
260
259
  * <p>The identifier of the resource that exceeded quota.</p>
260
+ * @public
261
261
  */
262
262
  ResourceId?: string;
263
263
  /**
264
- * @public
265
264
  * <p>The type of the resource that exceeded quota.</p>
265
+ * @public
266
266
  */
267
267
  ResourceType?: string;
268
268
  /**
269
- * @public
270
269
  * <p>The quota code that was exceeded.</p>
270
+ * @public
271
271
  */
272
272
  QuotaCode: string | undefined;
273
273
  /**
274
- * @public
275
274
  * <p>The service code that exceeded quota. It will always be
276
275
  * “AWSBillingAndCostManagementDataExports”.</p>
276
+ * @public
277
277
  */
278
278
  ServiceCode: string | undefined;
279
279
  /**
@@ -282,22 +282,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
282
282
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
283
283
  }
284
284
  /**
285
- * @public
286
285
  * <p>The request was denied due to request throttling.</p>
286
+ * @public
287
287
  */
288
288
  export declare class ThrottlingException extends __BaseException {
289
289
  readonly name: "ThrottlingException";
290
290
  readonly $fault: "client";
291
291
  Message: string | undefined;
292
292
  /**
293
- * @public
294
293
  * <p>The quota code that exceeded the throttling limit.</p>
294
+ * @public
295
295
  */
296
296
  QuotaCode?: string;
297
297
  /**
298
- * @public
299
298
  * <p>The service code that exceeded the throttling limit. It will always be
300
299
  * “AWSBillingAndCostManagementDataExports”.</p>
300
+ * @public
301
301
  */
302
302
  ServiceCode?: string;
303
303
  /**
@@ -306,19 +306,19 @@ export declare class ThrottlingException extends __BaseException {
306
306
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
307
307
  }
308
308
  /**
309
- * @public
310
309
  * <p>The input failed to meet the constraints specified by the Amazon Web Services service in a
311
310
  * specified field.</p>
311
+ * @public
312
312
  */
313
313
  export interface ValidationExceptionField {
314
314
  /**
315
- * @public
316
315
  * <p>The field name where the invalid entry was detected.</p>
316
+ * @public
317
317
  */
318
318
  Name: string | undefined;
319
319
  /**
320
- * @public
321
320
  * <p>A message with the reason for the validation exception error.</p>
321
+ * @public
322
322
  */
323
323
  Message: string | undefined;
324
324
  }
@@ -337,22 +337,22 @@ export declare const ValidationExceptionReason: {
337
337
  */
338
338
  export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
339
339
  /**
340
- * @public
341
340
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
342
341
  * service.</p>
342
+ * @public
343
343
  */
344
344
  export declare class ValidationException extends __BaseException {
345
345
  readonly name: "ValidationException";
346
346
  readonly $fault: "client";
347
347
  Message: string | undefined;
348
348
  /**
349
- * @public
350
349
  * <p>The reason for the validation exception.</p>
350
+ * @public
351
351
  */
352
352
  Reason?: ValidationExceptionReason;
353
353
  /**
354
- * @public
355
354
  * <p>The list of fields that are invalid.</p>
355
+ * @public
356
356
  */
357
357
  Fields?: ValidationExceptionField[];
358
358
  /**
@@ -365,8 +365,8 @@ export declare class ValidationException extends __BaseException {
365
365
  */
366
366
  export interface DeleteExportRequest {
367
367
  /**
368
- * @public
369
368
  * <p>The Amazon Resource Name (ARN) for this export.</p>
369
+ * @public
370
370
  */
371
371
  ExportArn: string | undefined;
372
372
  }
@@ -375,27 +375,27 @@ export interface DeleteExportRequest {
375
375
  */
376
376
  export interface DeleteExportResponse {
377
377
  /**
378
- * @public
379
378
  * <p>The Amazon Resource Name (ARN) for this export.</p>
379
+ * @public
380
380
  */
381
381
  ExportArn?: string;
382
382
  }
383
383
  /**
384
- * @public
385
384
  * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
385
+ * @public
386
386
  */
387
387
  export declare class ResourceNotFoundException extends __BaseException {
388
388
  readonly name: "ResourceNotFoundException";
389
389
  readonly $fault: "client";
390
390
  Message: string | undefined;
391
391
  /**
392
- * @public
393
392
  * <p>The identifier of the resource that was not found.</p>
393
+ * @public
394
394
  */
395
395
  ResourceId: string | undefined;
396
396
  /**
397
- * @public
398
397
  * <p>The type of the resource that was not found.</p>
398
+ * @public
399
399
  */
400
400
  ResourceType: string | undefined;
401
401
  /**
@@ -408,14 +408,14 @@ export declare class ResourceNotFoundException extends __BaseException {
408
408
  */
409
409
  export interface GetExecutionRequest {
410
410
  /**
411
- * @public
412
411
  * <p>The Amazon Resource Name (ARN) of the Export object that generated this specific
413
412
  * execution.</p>
413
+ * @public
414
414
  */
415
415
  ExportArn: string | undefined;
416
416
  /**
417
- * @public
418
417
  * <p>The ID for this specific execution.</p>
418
+ * @public
419
419
  */
420
420
  ExecutionId: string | undefined;
421
421
  }
@@ -450,33 +450,33 @@ export declare const ExecutionStatusReason: {
450
450
  */
451
451
  export type ExecutionStatusReason = (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
452
452
  /**
453
- * @public
454
453
  * <p>The status of the execution.</p>
454
+ * @public
455
455
  */
456
456
  export interface ExecutionStatus {
457
457
  /**
458
- * @public
459
458
  * <p>The code for the status of the execution.</p>
459
+ * @public
460
460
  */
461
461
  StatusCode?: ExecutionStatusCode;
462
462
  /**
463
- * @public
464
463
  * <p>The reason for the failed status.</p>
464
+ * @public
465
465
  */
466
466
  StatusReason?: ExecutionStatusReason;
467
467
  /**
468
- * @public
469
468
  * <p>The time when the execution was created.</p>
469
+ * @public
470
470
  */
471
471
  CreatedAt?: Date;
472
472
  /**
473
- * @public
474
473
  * <p>The time when the execution was completed.</p>
474
+ * @public
475
475
  */
476
476
  CompletedAt?: Date;
477
477
  /**
478
- * @public
479
478
  * <p>The time when the execution was last updated.</p>
479
+ * @public
480
480
  */
481
481
  LastUpdatedAt?: Date;
482
482
  }
@@ -485,20 +485,20 @@ export interface ExecutionStatus {
485
485
  */
486
486
  export interface GetExecutionResponse {
487
487
  /**
488
- * @public
489
488
  * <p>The ID for this specific execution.</p>
489
+ * @public
490
490
  */
491
491
  ExecutionId?: string;
492
492
  /**
493
- * @public
494
493
  * <p>The export data for this specific execution. This export data is a snapshot from when the
495
494
  * execution was generated. The data could be different from the current export data if the
496
495
  * export was updated since the execution was generated.</p>
496
+ * @public
497
497
  */
498
498
  Export?: Export;
499
499
  /**
500
- * @public
501
500
  * <p>The status of this specific execution.</p>
501
+ * @public
502
502
  */
503
503
  ExecutionStatus?: ExecutionStatus;
504
504
  }
@@ -507,8 +507,8 @@ export interface GetExecutionResponse {
507
507
  */
508
508
  export interface GetExportRequest {
509
509
  /**
510
- * @public
511
510
  * <p>The Amazon Resource Name (ARN) for this export.</p>
511
+ * @public
512
512
  */
513
513
  ExportArn: string | undefined;
514
514
  }
@@ -525,33 +525,33 @@ export declare const ExportStatusCode: {
525
525
  */
526
526
  export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
527
527
  /**
528
- * @public
529
528
  * <p>The status of the data export.</p>
529
+ * @public
530
530
  */
531
531
  export interface ExportStatus {
532
532
  /**
533
- * @public
534
533
  * <p>The status code for the request.</p>
534
+ * @public
535
535
  */
536
536
  StatusCode?: ExportStatusCode;
537
537
  /**
538
- * @public
539
538
  * <p>The description for the status code.</p>
539
+ * @public
540
540
  */
541
541
  StatusReason?: ExecutionStatusReason;
542
542
  /**
543
- * @public
544
543
  * <p>The timestamp of when the export was created.</p>
544
+ * @public
545
545
  */
546
546
  CreatedAt?: Date;
547
547
  /**
548
- * @public
549
548
  * <p>The timestamp of when the export was updated.</p>
549
+ * @public
550
550
  */
551
551
  LastUpdatedAt?: Date;
552
552
  /**
553
- * @public
554
553
  * <p>The timestamp of when the export was last generated.</p>
554
+ * @public
555
555
  */
556
556
  LastRefreshedAt?: Date;
557
557
  }
@@ -560,13 +560,13 @@ export interface ExportStatus {
560
560
  */
561
561
  export interface GetExportResponse {
562
562
  /**
563
- * @public
564
563
  * <p>The data for this specific export.</p>
564
+ * @public
565
565
  */
566
566
  Export?: Export;
567
567
  /**
568
- * @public
569
568
  * <p>The status of this specific export.</p>
569
+ * @public
570
570
  */
571
571
  ExportStatus?: ExportStatus;
572
572
  }
@@ -575,38 +575,38 @@ export interface GetExportResponse {
575
575
  */
576
576
  export interface GetTableRequest {
577
577
  /**
578
- * @public
579
578
  * <p>The name of the table.</p>
579
+ * @public
580
580
  */
581
581
  TableName: string | undefined;
582
582
  /**
583
- * @public
584
583
  * <p>TableProperties are additional configurations you can provide to change the data and
585
584
  * schema of a table. Each table can have different TableProperties. Tables are not required to
586
585
  * have any TableProperties. Each table property has a default value that it assumes if not
587
586
  * specified.</p>
587
+ * @public
588
588
  */
589
589
  TableProperties?: Record<string, string>;
590
590
  }
591
591
  /**
592
- * @public
593
592
  * <p>Includes basic information for a data column such as its description, name, and
594
593
  * type.</p>
594
+ * @public
595
595
  */
596
596
  export interface Column {
597
597
  /**
598
- * @public
599
598
  * <p>The column name.</p>
599
+ * @public
600
600
  */
601
601
  Name?: string;
602
602
  /**
603
- * @public
604
603
  * <p>The kind of data a column stores.</p>
604
+ * @public
605
605
  */
606
606
  Type?: string;
607
607
  /**
608
- * @public
609
608
  * <p>The description for a column.</p>
609
+ * @public
610
610
  */
611
611
  Description?: string;
612
612
  }
@@ -615,26 +615,26 @@ export interface Column {
615
615
  */
616
616
  export interface GetTableResponse {
617
617
  /**
618
- * @public
619
618
  * <p>The name of the table.</p>
619
+ * @public
620
620
  */
621
621
  TableName?: string;
622
622
  /**
623
- * @public
624
623
  * <p>The table description.</p>
624
+ * @public
625
625
  */
626
626
  Description?: string;
627
627
  /**
628
- * @public
629
628
  * <p>TableProperties are additional configurations you can provide to change the data and
630
629
  * schema of a table. Each table can have different TableProperties. Tables are not required to
631
630
  * have any TableProperties. Each table property has a default value that it assumes if not
632
631
  * specified.</p>
632
+ * @public
633
633
  */
634
634
  TableProperties?: Record<string, string>;
635
635
  /**
636
- * @public
637
636
  * <p>The schema of the table.</p>
637
+ * @public
638
638
  */
639
639
  Schema?: Column[];
640
640
  }
@@ -643,34 +643,34 @@ export interface GetTableResponse {
643
643
  */
644
644
  export interface ListExecutionsRequest {
645
645
  /**
646
- * @public
647
646
  * <p>The Amazon Resource Name (ARN) for this export.</p>
647
+ * @public
648
648
  */
649
649
  ExportArn: string | undefined;
650
650
  /**
651
- * @public
652
651
  * <p>The maximum number of objects that are returned for the request.</p>
652
+ * @public
653
653
  */
654
654
  MaxResults?: number;
655
655
  /**
656
- * @public
657
656
  * <p>The token to retrieve the next set of results.</p>
657
+ * @public
658
658
  */
659
659
  NextToken?: string;
660
660
  }
661
661
  /**
662
- * @public
663
662
  * <p>The reference for the data export update.</p>
663
+ * @public
664
664
  */
665
665
  export interface ExecutionReference {
666
666
  /**
667
- * @public
668
667
  * <p>The ID for this specific execution.</p>
668
+ * @public
669
669
  */
670
670
  ExecutionId: string | undefined;
671
671
  /**
672
- * @public
673
672
  * <p>The status of this specific execution.</p>
673
+ * @public
674
674
  */
675
675
  ExecutionStatus: ExecutionStatus | undefined;
676
676
  }
@@ -679,13 +679,13 @@ export interface ExecutionReference {
679
679
  */
680
680
  export interface ListExecutionsResponse {
681
681
  /**
682
- * @public
683
682
  * <p>The list of executions.</p>
683
+ * @public
684
684
  */
685
685
  Executions?: ExecutionReference[];
686
686
  /**
687
- * @public
688
687
  * <p>The token to retrieve the next set of results.</p>
688
+ * @public
689
689
  */
690
690
  NextToken?: string;
691
691
  }
@@ -694,34 +694,34 @@ export interface ListExecutionsResponse {
694
694
  */
695
695
  export interface ListExportsRequest {
696
696
  /**
697
- * @public
698
697
  * <p>The maximum number of objects that are returned for the request.</p>
698
+ * @public
699
699
  */
700
700
  MaxResults?: number;
701
701
  /**
702
- * @public
703
702
  * <p>The token to retrieve the next set of results.</p>
703
+ * @public
704
704
  */
705
705
  NextToken?: string;
706
706
  }
707
707
  /**
708
- * @public
709
708
  * <p>The reference details for a given export.</p>
709
+ * @public
710
710
  */
711
711
  export interface ExportReference {
712
712
  /**
713
- * @public
714
713
  * <p>The Amazon Resource Name (ARN) for this export.</p>
714
+ * @public
715
715
  */
716
716
  ExportArn: string | undefined;
717
717
  /**
718
- * @public
719
718
  * <p>The name of this specific data export.</p>
719
+ * @public
720
720
  */
721
721
  ExportName: string | undefined;
722
722
  /**
723
- * @public
724
723
  * <p>The status of this specific data export.</p>
724
+ * @public
725
725
  */
726
726
  ExportStatus: ExportStatus | undefined;
727
727
  }
@@ -730,13 +730,13 @@ export interface ExportReference {
730
730
  */
731
731
  export interface ListExportsResponse {
732
732
  /**
733
- * @public
734
733
  * <p>The details of the exports, including name and export status.</p>
734
+ * @public
735
735
  */
736
736
  Exports?: ExportReference[];
737
737
  /**
738
- * @public
739
738
  * <p>The token to retrieve the next set of results.</p>
739
+ * @public
740
740
  */
741
741
  NextToken?: string;
742
742
  }
@@ -745,60 +745,60 @@ export interface ListExportsResponse {
745
745
  */
746
746
  export interface ListTablesRequest {
747
747
  /**
748
- * @public
749
748
  * <p>The token to retrieve the next set of results.</p>
749
+ * @public
750
750
  */
751
751
  NextToken?: string;
752
752
  /**
753
- * @public
754
753
  * <p>The maximum number of objects that are returned for the request.</p>
754
+ * @public
755
755
  */
756
756
  MaxResults?: number;
757
757
  }
758
758
  /**
759
- * @public
760
759
  * <p>The properties for the data export table.</p>
760
+ * @public
761
761
  */
762
762
  export interface TablePropertyDescription {
763
763
  /**
764
- * @public
765
764
  * <p>The name of the table.</p>
765
+ * @public
766
766
  */
767
767
  Name?: string;
768
768
  /**
769
- * @public
770
769
  * <p>The valid values for the table.</p>
770
+ * @public
771
771
  */
772
772
  ValidValues?: string[];
773
773
  /**
774
- * @public
775
774
  * <p>The default value for the table.</p>
775
+ * @public
776
776
  */
777
777
  DefaultValue?: string;
778
778
  /**
779
- * @public
780
779
  * <p>The description for the table.</p>
780
+ * @public
781
781
  */
782
782
  Description?: string;
783
783
  }
784
784
  /**
785
- * @public
786
785
  * <p>The details for the data export table.</p>
786
+ * @public
787
787
  */
788
788
  export interface Table {
789
789
  /**
790
- * @public
791
790
  * <p>The name of the table.</p>
791
+ * @public
792
792
  */
793
793
  TableName?: string;
794
794
  /**
795
- * @public
796
795
  * <p>The description for the table.</p>
796
+ * @public
797
797
  */
798
798
  Description?: string;
799
799
  /**
800
- * @public
801
800
  * <p>The properties for the table.</p>
801
+ * @public
802
802
  */
803
803
  TableProperties?: TablePropertyDescription[];
804
804
  }
@@ -807,13 +807,13 @@ export interface Table {
807
807
  */
808
808
  export interface ListTablesResponse {
809
809
  /**
810
- * @public
811
810
  * <p>The list of tables.</p>
811
+ * @public
812
812
  */
813
813
  Tables?: Table[];
814
814
  /**
815
- * @public
816
815
  * <p>The token to retrieve the next set of results.</p>
816
+ * @public
817
817
  */
818
818
  NextToken?: string;
819
819
  }
@@ -822,18 +822,18 @@ export interface ListTablesResponse {
822
822
  */
823
823
  export interface ListTagsForResourceRequest {
824
824
  /**
825
- * @public
826
825
  * <p>The unique identifier for the resource.</p>
826
+ * @public
827
827
  */
828
828
  ResourceArn: string | undefined;
829
829
  /**
830
- * @public
831
830
  * <p>The maximum number of objects that are returned for the request.</p>
831
+ * @public
832
832
  */
833
833
  MaxResults?: number;
834
834
  /**
835
- * @public
836
835
  * <p>The token to retrieve the next set of results.</p>
836
+ * @public
837
837
  */
838
838
  NextToken?: string;
839
839
  }
@@ -842,14 +842,14 @@ export interface ListTagsForResourceRequest {
842
842
  */
843
843
  export interface ListTagsForResourceResponse {
844
844
  /**
845
- * @public
846
845
  * <p>An optional list of tags to associate with the specified export. Each tag consists of a
847
846
  * key and a value, and each key must be unique for the resource.</p>
847
+ * @public
848
848
  */
849
849
  ResourceTags?: ResourceTag[];
850
850
  /**
851
- * @public
852
851
  * <p>The token to retrieve the next set of results.</p>
852
+ * @public
853
853
  */
854
854
  NextToken?: string;
855
855
  }
@@ -858,14 +858,14 @@ export interface ListTagsForResourceResponse {
858
858
  */
859
859
  export interface TagResourceRequest {
860
860
  /**
861
- * @public
862
861
  * <p>The unique identifier for the resource.</p>
862
+ * @public
863
863
  */
864
864
  ResourceArn: string | undefined;
865
865
  /**
866
- * @public
867
866
  * <p>The tags to associate with the resource. Each tag consists of a key and a value, and each
868
867
  * key must be unique for the resource.</p>
868
+ * @public
869
869
  */
870
870
  ResourceTags: ResourceTag[] | undefined;
871
871
  }
@@ -879,13 +879,13 @@ export interface TagResourceResponse {
879
879
  */
880
880
  export interface UntagResourceRequest {
881
881
  /**
882
- * @public
883
882
  * <p>The unique identifier for the resource.</p>
883
+ * @public
884
884
  */
885
885
  ResourceArn: string | undefined;
886
886
  /**
887
- * @public
888
887
  * <p>The tag keys that are associated with the resource ARN.</p>
888
+ * @public
889
889
  */
890
890
  ResourceTagKeys: string[] | undefined;
891
891
  }
@@ -899,13 +899,13 @@ export interface UntagResourceResponse {
899
899
  */
900
900
  export interface UpdateExportRequest {
901
901
  /**
902
- * @public
903
902
  * <p>The Amazon Resource Name (ARN) for this export.</p>
903
+ * @public
904
904
  */
905
905
  ExportArn: string | undefined;
906
906
  /**
907
- * @public
908
907
  * <p>The name and query details for the export.</p>
908
+ * @public
909
909
  */
910
910
  Export: Export | undefined;
911
911
  }
@@ -914,8 +914,8 @@ export interface UpdateExportRequest {
914
914
  */
915
915
  export interface UpdateExportResponse {
916
916
  /**
917
- * @public
918
917
  * <p>The Amazon Resource Name (ARN) for this export.</p>
918
+ * @public
919
919
  */
920
920
  ExportArn?: string;
921
921
  }