@aws-sdk/client-bcm-data-exports 3.686.0 → 3.691.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.
@@ -14,7 +14,7 @@ export interface DataQuery {
14
14
  * <p>The table configuration.</p>
15
15
  * @public
16
16
  */
17
- TableConfigurations?: Record<string, Record<string, string>>;
17
+ TableConfigurations?: Record<string, Record<string, string>> | undefined;
18
18
  }
19
19
  /**
20
20
  * @public
@@ -162,7 +162,7 @@ export interface Export {
162
162
  * <p>The Amazon Resource Name (ARN) for this export.</p>
163
163
  * @public
164
164
  */
165
- ExportArn?: string;
165
+ ExportArn?: string | undefined;
166
166
  /**
167
167
  * <p>The name of this specific data export.</p>
168
168
  * @public
@@ -172,7 +172,7 @@ export interface Export {
172
172
  * <p>The description for this specific data export.</p>
173
173
  * @public
174
174
  */
175
- Description?: string;
175
+ Description?: string | undefined;
176
176
  /**
177
177
  * <p>The data query for this specific data export.</p>
178
178
  * @public
@@ -220,7 +220,7 @@ export interface CreateExportRequest {
220
220
  * key and a value, and each key must be unique for the resource.</p>
221
221
  * @public
222
222
  */
223
- ResourceTags?: ResourceTag[];
223
+ ResourceTags?: ResourceTag[] | undefined;
224
224
  }
225
225
  /**
226
226
  * @public
@@ -230,7 +230,7 @@ export interface CreateExportResponse {
230
230
  * <p>The Amazon Resource Name (ARN) for this export.</p>
231
231
  * @public
232
232
  */
233
- ExportArn?: string;
233
+ ExportArn?: string | undefined;
234
234
  }
235
235
  /**
236
236
  * <p>An error on the server occurred during the processing of your request. Try again
@@ -259,12 +259,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
259
259
  * <p>The identifier of the resource that exceeded quota.</p>
260
260
  * @public
261
261
  */
262
- ResourceId?: string;
262
+ ResourceId?: string | undefined;
263
263
  /**
264
264
  * <p>The type of the resource that exceeded quota.</p>
265
265
  * @public
266
266
  */
267
- ResourceType?: string;
267
+ ResourceType?: string | undefined;
268
268
  /**
269
269
  * <p>The quota code that was exceeded.</p>
270
270
  * @public
@@ -293,13 +293,13 @@ export declare class ThrottlingException extends __BaseException {
293
293
  * <p>The quota code that exceeded the throttling limit.</p>
294
294
  * @public
295
295
  */
296
- QuotaCode?: string;
296
+ QuotaCode?: string | undefined;
297
297
  /**
298
298
  * <p>The service code that exceeded the throttling limit. It will always be
299
299
  * “AWSBillingAndCostManagementDataExports”.</p>
300
300
  * @public
301
301
  */
302
- ServiceCode?: string;
302
+ ServiceCode?: string | undefined;
303
303
  /**
304
304
  * @internal
305
305
  */
@@ -349,12 +349,12 @@ export declare class ValidationException extends __BaseException {
349
349
  * <p>The reason for the validation exception.</p>
350
350
  * @public
351
351
  */
352
- Reason?: ValidationExceptionReason;
352
+ Reason?: ValidationExceptionReason | undefined;
353
353
  /**
354
354
  * <p>The list of fields that are invalid.</p>
355
355
  * @public
356
356
  */
357
- Fields?: ValidationExceptionField[];
357
+ Fields?: ValidationExceptionField[] | undefined;
358
358
  /**
359
359
  * @internal
360
360
  */
@@ -378,7 +378,7 @@ export interface DeleteExportResponse {
378
378
  * <p>The Amazon Resource Name (ARN) for this export.</p>
379
379
  * @public
380
380
  */
381
- ExportArn?: string;
381
+ ExportArn?: string | undefined;
382
382
  }
383
383
  /**
384
384
  * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
@@ -458,27 +458,27 @@ export interface ExecutionStatus {
458
458
  * <p>The code for the status of the execution.</p>
459
459
  * @public
460
460
  */
461
- StatusCode?: ExecutionStatusCode;
461
+ StatusCode?: ExecutionStatusCode | undefined;
462
462
  /**
463
463
  * <p>The reason for the failed status.</p>
464
464
  * @public
465
465
  */
466
- StatusReason?: ExecutionStatusReason;
466
+ StatusReason?: ExecutionStatusReason | undefined;
467
467
  /**
468
468
  * <p>The time when the execution was created.</p>
469
469
  * @public
470
470
  */
471
- CreatedAt?: Date;
471
+ CreatedAt?: Date | undefined;
472
472
  /**
473
473
  * <p>The time when the execution was completed.</p>
474
474
  * @public
475
475
  */
476
- CompletedAt?: Date;
476
+ CompletedAt?: Date | undefined;
477
477
  /**
478
478
  * <p>The time when the execution was last updated.</p>
479
479
  * @public
480
480
  */
481
- LastUpdatedAt?: Date;
481
+ LastUpdatedAt?: Date | undefined;
482
482
  }
483
483
  /**
484
484
  * @public
@@ -488,19 +488,19 @@ export interface GetExecutionResponse {
488
488
  * <p>The ID for this specific execution.</p>
489
489
  * @public
490
490
  */
491
- ExecutionId?: string;
491
+ ExecutionId?: string | undefined;
492
492
  /**
493
493
  * <p>The export data for this specific execution. This export data is a snapshot from when the
494
494
  * execution was generated. The data could be different from the current export data if the
495
495
  * export was updated since the execution was generated.</p>
496
496
  * @public
497
497
  */
498
- Export?: Export;
498
+ Export?: Export | undefined;
499
499
  /**
500
500
  * <p>The status of this specific execution.</p>
501
501
  * @public
502
502
  */
503
- ExecutionStatus?: ExecutionStatus;
503
+ ExecutionStatus?: ExecutionStatus | undefined;
504
504
  }
505
505
  /**
506
506
  * @public
@@ -533,27 +533,27 @@ export interface ExportStatus {
533
533
  * <p>The status code for the request.</p>
534
534
  * @public
535
535
  */
536
- StatusCode?: ExportStatusCode;
536
+ StatusCode?: ExportStatusCode | undefined;
537
537
  /**
538
538
  * <p>The description for the status code.</p>
539
539
  * @public
540
540
  */
541
- StatusReason?: ExecutionStatusReason;
541
+ StatusReason?: ExecutionStatusReason | undefined;
542
542
  /**
543
543
  * <p>The timestamp of when the export was created.</p>
544
544
  * @public
545
545
  */
546
- CreatedAt?: Date;
546
+ CreatedAt?: Date | undefined;
547
547
  /**
548
548
  * <p>The timestamp of when the export was updated.</p>
549
549
  * @public
550
550
  */
551
- LastUpdatedAt?: Date;
551
+ LastUpdatedAt?: Date | undefined;
552
552
  /**
553
553
  * <p>The timestamp of when the export was last generated.</p>
554
554
  * @public
555
555
  */
556
- LastRefreshedAt?: Date;
556
+ LastRefreshedAt?: Date | undefined;
557
557
  }
558
558
  /**
559
559
  * @public
@@ -563,12 +563,12 @@ export interface GetExportResponse {
563
563
  * <p>The data for this specific export.</p>
564
564
  * @public
565
565
  */
566
- Export?: Export;
566
+ Export?: Export | undefined;
567
567
  /**
568
568
  * <p>The status of this specific export.</p>
569
569
  * @public
570
570
  */
571
- ExportStatus?: ExportStatus;
571
+ ExportStatus?: ExportStatus | undefined;
572
572
  }
573
573
  /**
574
574
  * @public
@@ -586,7 +586,7 @@ export interface GetTableRequest {
586
586
  * specified.</p>
587
587
  * @public
588
588
  */
589
- TableProperties?: Record<string, string>;
589
+ TableProperties?: Record<string, string> | undefined;
590
590
  }
591
591
  /**
592
592
  * <p>Includes basic information for a data column such as its description, name, and
@@ -598,17 +598,17 @@ export interface Column {
598
598
  * <p>The column name.</p>
599
599
  * @public
600
600
  */
601
- Name?: string;
601
+ Name?: string | undefined;
602
602
  /**
603
603
  * <p>The kind of data a column stores.</p>
604
604
  * @public
605
605
  */
606
- Type?: string;
606
+ Type?: string | undefined;
607
607
  /**
608
608
  * <p>The description for a column.</p>
609
609
  * @public
610
610
  */
611
- Description?: string;
611
+ Description?: string | undefined;
612
612
  }
613
613
  /**
614
614
  * @public
@@ -618,12 +618,12 @@ export interface GetTableResponse {
618
618
  * <p>The name of the table.</p>
619
619
  * @public
620
620
  */
621
- TableName?: string;
621
+ TableName?: string | undefined;
622
622
  /**
623
623
  * <p>The table description.</p>
624
624
  * @public
625
625
  */
626
- Description?: string;
626
+ Description?: string | undefined;
627
627
  /**
628
628
  * <p>TableProperties are additional configurations you can provide to change the data and
629
629
  * schema of a table. Each table can have different TableProperties. Tables are not required to
@@ -631,12 +631,12 @@ export interface GetTableResponse {
631
631
  * specified.</p>
632
632
  * @public
633
633
  */
634
- TableProperties?: Record<string, string>;
634
+ TableProperties?: Record<string, string> | undefined;
635
635
  /**
636
636
  * <p>The schema of the table.</p>
637
637
  * @public
638
638
  */
639
- Schema?: Column[];
639
+ Schema?: Column[] | undefined;
640
640
  }
641
641
  /**
642
642
  * @public
@@ -651,12 +651,12 @@ export interface ListExecutionsRequest {
651
651
  * <p>The maximum number of objects that are returned for the request.</p>
652
652
  * @public
653
653
  */
654
- MaxResults?: number;
654
+ MaxResults?: number | undefined;
655
655
  /**
656
656
  * <p>The token to retrieve the next set of results.</p>
657
657
  * @public
658
658
  */
659
- NextToken?: string;
659
+ NextToken?: string | undefined;
660
660
  }
661
661
  /**
662
662
  * <p>The reference for the data export update.</p>
@@ -682,12 +682,12 @@ export interface ListExecutionsResponse {
682
682
  * <p>The list of executions.</p>
683
683
  * @public
684
684
  */
685
- Executions?: ExecutionReference[];
685
+ Executions?: ExecutionReference[] | undefined;
686
686
  /**
687
687
  * <p>The token to retrieve the next set of results.</p>
688
688
  * @public
689
689
  */
690
- NextToken?: string;
690
+ NextToken?: string | undefined;
691
691
  }
692
692
  /**
693
693
  * @public
@@ -697,12 +697,12 @@ export interface ListExportsRequest {
697
697
  * <p>The maximum number of objects that are returned for the request.</p>
698
698
  * @public
699
699
  */
700
- MaxResults?: number;
700
+ MaxResults?: number | undefined;
701
701
  /**
702
702
  * <p>The token to retrieve the next set of results.</p>
703
703
  * @public
704
704
  */
705
- NextToken?: string;
705
+ NextToken?: string | undefined;
706
706
  }
707
707
  /**
708
708
  * <p>The reference details for a given export.</p>
@@ -733,12 +733,12 @@ export interface ListExportsResponse {
733
733
  * <p>The details of the exports, including name and export status.</p>
734
734
  * @public
735
735
  */
736
- Exports?: ExportReference[];
736
+ Exports?: ExportReference[] | undefined;
737
737
  /**
738
738
  * <p>The token to retrieve the next set of results.</p>
739
739
  * @public
740
740
  */
741
- NextToken?: string;
741
+ NextToken?: string | undefined;
742
742
  }
743
743
  /**
744
744
  * @public
@@ -748,12 +748,12 @@ export interface ListTablesRequest {
748
748
  * <p>The token to retrieve the next set of results.</p>
749
749
  * @public
750
750
  */
751
- NextToken?: string;
751
+ NextToken?: string | undefined;
752
752
  /**
753
753
  * <p>The maximum number of objects that are returned for the request.</p>
754
754
  * @public
755
755
  */
756
- MaxResults?: number;
756
+ MaxResults?: number | undefined;
757
757
  }
758
758
  /**
759
759
  * <p>The properties for the data export table.</p>
@@ -764,22 +764,22 @@ export interface TablePropertyDescription {
764
764
  * <p>The name of the table.</p>
765
765
  * @public
766
766
  */
767
- Name?: string;
767
+ Name?: string | undefined;
768
768
  /**
769
769
  * <p>The valid values for the table.</p>
770
770
  * @public
771
771
  */
772
- ValidValues?: string[];
772
+ ValidValues?: string[] | undefined;
773
773
  /**
774
774
  * <p>The default value for the table.</p>
775
775
  * @public
776
776
  */
777
- DefaultValue?: string;
777
+ DefaultValue?: string | undefined;
778
778
  /**
779
779
  * <p>The description for the table.</p>
780
780
  * @public
781
781
  */
782
- Description?: string;
782
+ Description?: string | undefined;
783
783
  }
784
784
  /**
785
785
  * <p>The details for the data export table.</p>
@@ -790,17 +790,17 @@ export interface Table {
790
790
  * <p>The name of the table.</p>
791
791
  * @public
792
792
  */
793
- TableName?: string;
793
+ TableName?: string | undefined;
794
794
  /**
795
795
  * <p>The description for the table.</p>
796
796
  * @public
797
797
  */
798
- Description?: string;
798
+ Description?: string | undefined;
799
799
  /**
800
800
  * <p>The properties for the table.</p>
801
801
  * @public
802
802
  */
803
- TableProperties?: TablePropertyDescription[];
803
+ TableProperties?: TablePropertyDescription[] | undefined;
804
804
  }
805
805
  /**
806
806
  * @public
@@ -810,12 +810,12 @@ export interface ListTablesResponse {
810
810
  * <p>The list of tables.</p>
811
811
  * @public
812
812
  */
813
- Tables?: Table[];
813
+ Tables?: Table[] | undefined;
814
814
  /**
815
815
  * <p>The token to retrieve the next set of results.</p>
816
816
  * @public
817
817
  */
818
- NextToken?: string;
818
+ NextToken?: string | undefined;
819
819
  }
820
820
  /**
821
821
  * @public
@@ -830,12 +830,12 @@ export interface ListTagsForResourceRequest {
830
830
  * <p>The maximum number of objects that are returned for the request.</p>
831
831
  * @public
832
832
  */
833
- MaxResults?: number;
833
+ MaxResults?: number | undefined;
834
834
  /**
835
835
  * <p>The token to retrieve the next set of results.</p>
836
836
  * @public
837
837
  */
838
- NextToken?: string;
838
+ NextToken?: string | undefined;
839
839
  }
840
840
  /**
841
841
  * @public
@@ -846,12 +846,12 @@ export interface ListTagsForResourceResponse {
846
846
  * key and a value, and each key must be unique for the resource.</p>
847
847
  * @public
848
848
  */
849
- ResourceTags?: ResourceTag[];
849
+ ResourceTags?: ResourceTag[] | undefined;
850
850
  /**
851
851
  * <p>The token to retrieve the next set of results.</p>
852
852
  * @public
853
853
  */
854
- NextToken?: string;
854
+ NextToken?: string | undefined;
855
855
  }
856
856
  /**
857
857
  * @public
@@ -917,5 +917,5 @@ export interface UpdateExportResponse {
917
917
  * <p>The Amazon Resource Name (ARN) for this export.</p>
918
918
  * @public
919
919
  */
920
- ExportArn?: string;
920
+ ExportArn?: string | undefined;
921
921
  }
@@ -2,7 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
3
3
  export interface DataQuery {
4
4
  QueryStatement: string | undefined;
5
- TableConfigurations?: Record<string, Record<string, string>>;
5
+ TableConfigurations?: Record<string, Record<string, string>> | undefined;
6
6
  }
7
7
  export declare const CompressionOption: {
8
8
  readonly GZIP: "GZIP";
@@ -49,9 +49,9 @@ export interface RefreshCadence {
49
49
  Frequency: FrequencyOption | undefined;
50
50
  }
51
51
  export interface Export {
52
- ExportArn?: string;
52
+ ExportArn?: string | undefined;
53
53
  Name: string | undefined;
54
- Description?: string;
54
+ Description?: string | undefined;
55
55
  DataQuery: DataQuery | undefined;
56
56
  DestinationConfigurations: DestinationConfigurations | undefined;
57
57
  RefreshCadence: RefreshCadence | undefined;
@@ -62,10 +62,10 @@ export interface ResourceTag {
62
62
  }
63
63
  export interface CreateExportRequest {
64
64
  Export: Export | undefined;
65
- ResourceTags?: ResourceTag[];
65
+ ResourceTags?: ResourceTag[] | undefined;
66
66
  }
67
67
  export interface CreateExportResponse {
68
- ExportArn?: string;
68
+ ExportArn?: string | undefined;
69
69
  }
70
70
  export declare class InternalServerException extends __BaseException {
71
71
  readonly name: "InternalServerException";
@@ -79,8 +79,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
79
79
  readonly name: "ServiceQuotaExceededException";
80
80
  readonly $fault: "client";
81
81
  Message: string | undefined;
82
- ResourceId?: string;
83
- ResourceType?: string;
82
+ ResourceId?: string | undefined;
83
+ ResourceType?: string | undefined;
84
84
  QuotaCode: string | undefined;
85
85
  ServiceCode: string | undefined;
86
86
  constructor(
@@ -91,8 +91,8 @@ export declare class ThrottlingException extends __BaseException {
91
91
  readonly name: "ThrottlingException";
92
92
  readonly $fault: "client";
93
93
  Message: string | undefined;
94
- QuotaCode?: string;
95
- ServiceCode?: string;
94
+ QuotaCode?: string | undefined;
95
+ ServiceCode?: string | undefined;
96
96
  constructor(
97
97
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
98
98
  );
@@ -113,8 +113,8 @@ export declare class ValidationException extends __BaseException {
113
113
  readonly name: "ValidationException";
114
114
  readonly $fault: "client";
115
115
  Message: string | undefined;
116
- Reason?: ValidationExceptionReason;
117
- Fields?: ValidationExceptionField[];
116
+ Reason?: ValidationExceptionReason | undefined;
117
+ Fields?: ValidationExceptionField[] | undefined;
118
118
  constructor(
119
119
  opts: __ExceptionOptionType<ValidationException, __BaseException>
120
120
  );
@@ -123,7 +123,7 @@ export interface DeleteExportRequest {
123
123
  ExportArn: string | undefined;
124
124
  }
125
125
  export interface DeleteExportResponse {
126
- ExportArn?: string;
126
+ ExportArn?: string | undefined;
127
127
  }
128
128
  export declare class ResourceNotFoundException extends __BaseException {
129
129
  readonly name: "ResourceNotFoundException";
@@ -158,16 +158,16 @@ export declare const ExecutionStatusReason: {
158
158
  export type ExecutionStatusReason =
159
159
  (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
160
160
  export interface ExecutionStatus {
161
- StatusCode?: ExecutionStatusCode;
162
- StatusReason?: ExecutionStatusReason;
163
- CreatedAt?: Date;
164
- CompletedAt?: Date;
165
- LastUpdatedAt?: Date;
161
+ StatusCode?: ExecutionStatusCode | undefined;
162
+ StatusReason?: ExecutionStatusReason | undefined;
163
+ CreatedAt?: Date | undefined;
164
+ CompletedAt?: Date | undefined;
165
+ LastUpdatedAt?: Date | undefined;
166
166
  }
167
167
  export interface GetExecutionResponse {
168
- ExecutionId?: string;
169
- Export?: Export;
170
- ExecutionStatus?: ExecutionStatus;
168
+ ExecutionId?: string | undefined;
169
+ Export?: Export | undefined;
170
+ ExecutionStatus?: ExecutionStatus | undefined;
171
171
  }
172
172
  export interface GetExportRequest {
173
173
  ExportArn: string | undefined;
@@ -179,47 +179,47 @@ export declare const ExportStatusCode: {
179
179
  export type ExportStatusCode =
180
180
  (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
181
181
  export interface ExportStatus {
182
- StatusCode?: ExportStatusCode;
183
- StatusReason?: ExecutionStatusReason;
184
- CreatedAt?: Date;
185
- LastUpdatedAt?: Date;
186
- LastRefreshedAt?: Date;
182
+ StatusCode?: ExportStatusCode | undefined;
183
+ StatusReason?: ExecutionStatusReason | undefined;
184
+ CreatedAt?: Date | undefined;
185
+ LastUpdatedAt?: Date | undefined;
186
+ LastRefreshedAt?: Date | undefined;
187
187
  }
188
188
  export interface GetExportResponse {
189
- Export?: Export;
190
- ExportStatus?: ExportStatus;
189
+ Export?: Export | undefined;
190
+ ExportStatus?: ExportStatus | undefined;
191
191
  }
192
192
  export interface GetTableRequest {
193
193
  TableName: string | undefined;
194
- TableProperties?: Record<string, string>;
194
+ TableProperties?: Record<string, string> | undefined;
195
195
  }
196
196
  export interface Column {
197
- Name?: string;
198
- Type?: string;
199
- Description?: string;
197
+ Name?: string | undefined;
198
+ Type?: string | undefined;
199
+ Description?: string | undefined;
200
200
  }
201
201
  export interface GetTableResponse {
202
- TableName?: string;
203
- Description?: string;
204
- TableProperties?: Record<string, string>;
205
- Schema?: Column[];
202
+ TableName?: string | undefined;
203
+ Description?: string | undefined;
204
+ TableProperties?: Record<string, string> | undefined;
205
+ Schema?: Column[] | undefined;
206
206
  }
207
207
  export interface ListExecutionsRequest {
208
208
  ExportArn: string | undefined;
209
- MaxResults?: number;
210
- NextToken?: string;
209
+ MaxResults?: number | undefined;
210
+ NextToken?: string | undefined;
211
211
  }
212
212
  export interface ExecutionReference {
213
213
  ExecutionId: string | undefined;
214
214
  ExecutionStatus: ExecutionStatus | undefined;
215
215
  }
216
216
  export interface ListExecutionsResponse {
217
- Executions?: ExecutionReference[];
218
- NextToken?: string;
217
+ Executions?: ExecutionReference[] | undefined;
218
+ NextToken?: string | undefined;
219
219
  }
220
220
  export interface ListExportsRequest {
221
- MaxResults?: number;
222
- NextToken?: string;
221
+ MaxResults?: number | undefined;
222
+ NextToken?: string | undefined;
223
223
  }
224
224
  export interface ExportReference {
225
225
  ExportArn: string | undefined;
@@ -227,36 +227,36 @@ export interface ExportReference {
227
227
  ExportStatus: ExportStatus | undefined;
228
228
  }
229
229
  export interface ListExportsResponse {
230
- Exports?: ExportReference[];
231
- NextToken?: string;
230
+ Exports?: ExportReference[] | undefined;
231
+ NextToken?: string | undefined;
232
232
  }
233
233
  export interface ListTablesRequest {
234
- NextToken?: string;
235
- MaxResults?: number;
234
+ NextToken?: string | undefined;
235
+ MaxResults?: number | undefined;
236
236
  }
237
237
  export interface TablePropertyDescription {
238
- Name?: string;
239
- ValidValues?: string[];
240
- DefaultValue?: string;
241
- Description?: string;
238
+ Name?: string | undefined;
239
+ ValidValues?: string[] | undefined;
240
+ DefaultValue?: string | undefined;
241
+ Description?: string | undefined;
242
242
  }
243
243
  export interface Table {
244
- TableName?: string;
245
- Description?: string;
246
- TableProperties?: TablePropertyDescription[];
244
+ TableName?: string | undefined;
245
+ Description?: string | undefined;
246
+ TableProperties?: TablePropertyDescription[] | undefined;
247
247
  }
248
248
  export interface ListTablesResponse {
249
- Tables?: Table[];
250
- NextToken?: string;
249
+ Tables?: Table[] | undefined;
250
+ NextToken?: string | undefined;
251
251
  }
252
252
  export interface ListTagsForResourceRequest {
253
253
  ResourceArn: string | undefined;
254
- MaxResults?: number;
255
- NextToken?: string;
254
+ MaxResults?: number | undefined;
255
+ NextToken?: string | undefined;
256
256
  }
257
257
  export interface ListTagsForResourceResponse {
258
- ResourceTags?: ResourceTag[];
259
- NextToken?: string;
258
+ ResourceTags?: ResourceTag[] | undefined;
259
+ NextToken?: string | undefined;
260
260
  }
261
261
  export interface TagResourceRequest {
262
262
  ResourceArn: string | undefined;
@@ -273,5 +273,5 @@ export interface UpdateExportRequest {
273
273
  Export: Export | undefined;
274
274
  }
275
275
  export interface UpdateExportResponse {
276
- ExportArn?: string;
276
+ ExportArn?: string | undefined;
277
277
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bcm-data-exports",
3
3
  "description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",