@aws-sdk/client-supplychain 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.
@@ -56,7 +56,7 @@ export interface BillOfMaterialsImportJob {
56
56
  * <p>When the BillOfMaterialsImportJob has reached a terminal state, there will be a message.</p>
57
57
  * @public
58
58
  */
59
- message?: string;
59
+ message?: string | undefined;
60
60
  }
61
61
  /**
62
62
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
@@ -89,7 +89,7 @@ export interface CreateBillOfMaterialsImportJobRequest {
89
89
  * <p>An idempotency token ensures the API request is only completed no more than once. This way, retrying the request will not trigger the operation multiple times. A client token is a unique, case-sensitive string of 33 to 128 ASCII characters. To make an idempotent API request, specify a client token in the request. You should not reuse the same client token for other requests. If you retry a successful request with the same client token, the request will succeed with no further actions being taken, and you will receive the same API response as the original successful request.</p>
90
90
  * @public
91
91
  */
92
- clientToken?: string;
92
+ clientToken?: string | undefined;
93
93
  }
94
94
  /**
95
95
  * <p>The response parameters of CreateBillOfMaterialsImportJob.</p>
@@ -214,12 +214,12 @@ export interface DataIntegrationFlowDatasetOptions {
214
214
  * <p>The dataset data load type in dataset options.</p>
215
215
  * @public
216
216
  */
217
- loadType?: DataIntegrationFlowLoadType;
217
+ loadType?: DataIntegrationFlowLoadType | undefined;
218
218
  /**
219
219
  * <p>The dataset load option to remove duplicates.</p>
220
220
  * @public
221
221
  */
222
- dedupeRecords?: boolean;
222
+ dedupeRecords?: boolean | undefined;
223
223
  }
224
224
  /**
225
225
  * <p>The dataset DataIntegrationFlow source configuration parameters.</p>
@@ -235,7 +235,7 @@ export interface DataIntegrationFlowDatasetSourceConfiguration {
235
235
  * <p>The dataset DataIntegrationFlow source options.</p>
236
236
  * @public
237
237
  */
238
- options?: DataIntegrationFlowDatasetOptions;
238
+ options?: DataIntegrationFlowDatasetOptions | undefined;
239
239
  }
240
240
  /**
241
241
  * @public
@@ -259,7 +259,7 @@ export interface DataIntegrationFlowS3Options {
259
259
  * <p>The Amazon S3 file type in S3 options.</p>
260
260
  * @public
261
261
  */
262
- fileType?: DataIntegrationFlowFileType;
262
+ fileType?: DataIntegrationFlowFileType | undefined;
263
263
  }
264
264
  /**
265
265
  * <p>The S3 DataIntegrationFlow source configuration parameters.</p>
@@ -280,7 +280,7 @@ export interface DataIntegrationFlowS3SourceConfiguration {
280
280
  * <p>The other options of the S3 DataIntegrationFlow source.</p>
281
281
  * @public
282
282
  */
283
- options?: DataIntegrationFlowS3Options;
283
+ options?: DataIntegrationFlowS3Options | undefined;
284
284
  }
285
285
  /**
286
286
  * @public
@@ -313,12 +313,12 @@ export interface DataIntegrationFlowSource {
313
313
  * <p>The S3 DataIntegrationFlow source.</p>
314
314
  * @public
315
315
  */
316
- s3Source?: DataIntegrationFlowS3SourceConfiguration;
316
+ s3Source?: DataIntegrationFlowS3SourceConfiguration | undefined;
317
317
  /**
318
318
  * <p>The dataset DataIntegrationFlow source.</p>
319
319
  * @public
320
320
  */
321
- datasetSource?: DataIntegrationFlowDatasetSourceConfiguration;
321
+ datasetSource?: DataIntegrationFlowDatasetSourceConfiguration | undefined;
322
322
  }
323
323
  /**
324
324
  * <p>The dataset DataIntegrationFlow target configuration parameters.</p>
@@ -334,7 +334,7 @@ export interface DataIntegrationFlowDatasetTargetConfiguration {
334
334
  * <p>The dataset DataIntegrationFlow target options.</p>
335
335
  * @public
336
336
  */
337
- options?: DataIntegrationFlowDatasetOptions;
337
+ options?: DataIntegrationFlowDatasetOptions | undefined;
338
338
  }
339
339
  /**
340
340
  * <p>The S3 DataIntegrationFlow target configuration parameters.</p>
@@ -355,7 +355,7 @@ export interface DataIntegrationFlowS3TargetConfiguration {
355
355
  * <p>The S3 DataIntegrationFlow target options.</p>
356
356
  * @public
357
357
  */
358
- options?: DataIntegrationFlowS3Options;
358
+ options?: DataIntegrationFlowS3Options | undefined;
359
359
  }
360
360
  /**
361
361
  * @public
@@ -383,12 +383,12 @@ export interface DataIntegrationFlowTarget {
383
383
  * <p>The S3 DataIntegrationFlow target.</p>
384
384
  * @public
385
385
  */
386
- s3Target?: DataIntegrationFlowS3TargetConfiguration;
386
+ s3Target?: DataIntegrationFlowS3TargetConfiguration | undefined;
387
387
  /**
388
388
  * <p>The dataset DataIntegrationFlow target.</p>
389
389
  * @public
390
390
  */
391
- datasetTarget?: DataIntegrationFlowDatasetTargetConfiguration;
391
+ datasetTarget?: DataIntegrationFlowDatasetTargetConfiguration | undefined;
392
392
  }
393
393
  /**
394
394
  * <p>The SQL DataIntegrationFlow transformation configuration parameters.</p>
@@ -427,7 +427,7 @@ export interface DataIntegrationFlowTransformation {
427
427
  * <p>The SQL DataIntegrationFlow transformation configuration.</p>
428
428
  * @public
429
429
  */
430
- sqlTransformation?: DataIntegrationFlowSQLTransformationConfiguration;
430
+ sqlTransformation?: DataIntegrationFlowSQLTransformationConfiguration | undefined;
431
431
  }
432
432
  /**
433
433
  * <p>The request parameters for CreateDataIntegrationFlow.</p>
@@ -463,7 +463,7 @@ export interface CreateDataIntegrationFlowRequest {
463
463
  * <p>The tags of the DataIntegrationFlow to be created</p>
464
464
  * @public
465
465
  */
466
- tags?: Record<string, string>;
466
+ tags?: Record<string, string> | undefined;
467
467
  }
468
468
  /**
469
469
  * <p>The response parameters for CreateDataIntegrationFlow.</p>
@@ -566,17 +566,17 @@ export interface CreateDataLakeDatasetRequest {
566
566
  * <p>The custom schema of the data lake dataset and is only required when the name space is <i>default</i>.</p>
567
567
  * @public
568
568
  */
569
- schema?: DataLakeDatasetSchema;
569
+ schema?: DataLakeDatasetSchema | undefined;
570
570
  /**
571
571
  * <p>The description of the dataset.</p>
572
572
  * @public
573
573
  */
574
- description?: string;
574
+ description?: string | undefined;
575
575
  /**
576
576
  * <p>The tags of the dataset.</p>
577
577
  * @public
578
578
  */
579
- tags?: Record<string, string>;
579
+ tags?: Record<string, string> | undefined;
580
580
  }
581
581
  /**
582
582
  * <p>The data lake dataset details.</p>
@@ -622,7 +622,7 @@ export interface DataLakeDataset {
622
622
  * <p>The description of the dataset.</p>
623
623
  * @public
624
624
  */
625
- description?: string;
625
+ description?: string | undefined;
626
626
  /**
627
627
  * <p>The creation time of the dataset.</p>
628
628
  * @public
@@ -654,27 +654,27 @@ export interface CreateInstanceRequest {
654
654
  * <p>The AWS Supply Chain instance name.</p>
655
655
  * @public
656
656
  */
657
- instanceName?: string;
657
+ instanceName?: string | undefined;
658
658
  /**
659
659
  * <p>The AWS Supply Chain instance description.</p>
660
660
  * @public
661
661
  */
662
- instanceDescription?: string;
662
+ instanceDescription?: string | undefined;
663
663
  /**
664
664
  * <p>The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon Web Services owned KMS key. If you don't provide anything here, AWS Supply Chain uses the Amazon Web Services owned KMS key.</p>
665
665
  * @public
666
666
  */
667
- kmsKeyArn?: string;
667
+ kmsKeyArn?: string | undefined;
668
668
  /**
669
669
  * <p>The Amazon Web Services tags of an instance to be created.</p>
670
670
  * @public
671
671
  */
672
- tags?: Record<string, string>;
672
+ tags?: Record<string, string> | undefined;
673
673
  /**
674
674
  * <p>The client token for idempotency.</p>
675
675
  * @public
676
676
  */
677
- clientToken?: string;
677
+ clientToken?: string | undefined;
678
678
  }
679
679
  /**
680
680
  * @public
@@ -716,42 +716,42 @@ export interface Instance {
716
716
  * <p>The Amazon Web Services Supply Chain instance error message. If the instance results in an unhealthy state, customers need to check the error message, delete the current instance, and recreate a new one based on the mitigation from the error message.</p>
717
717
  * @public
718
718
  */
719
- errorMessage?: string;
719
+ errorMessage?: string | undefined;
720
720
  /**
721
721
  * <p>The WebApp DNS domain name of the instance.</p>
722
722
  * @public
723
723
  */
724
- webAppDnsDomain?: string;
724
+ webAppDnsDomain?: string | undefined;
725
725
  /**
726
726
  * <p>The instance creation timestamp.</p>
727
727
  * @public
728
728
  */
729
- createdTime?: Date;
729
+ createdTime?: Date | undefined;
730
730
  /**
731
731
  * <p>The instance last modified timestamp.</p>
732
732
  * @public
733
733
  */
734
- lastModifiedTime?: Date;
734
+ lastModifiedTime?: Date | undefined;
735
735
  /**
736
736
  * <p>The Amazon Web Services Supply Chain instance name.</p>
737
737
  * @public
738
738
  */
739
- instanceName?: string;
739
+ instanceName?: string | undefined;
740
740
  /**
741
741
  * <p>The Amazon Web Services Supply Chain instance description.</p>
742
742
  * @public
743
743
  */
744
- instanceDescription?: string;
744
+ instanceDescription?: string | undefined;
745
745
  /**
746
746
  * <p>The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you optionally provided for encryption. If you did not provide anything here, AWS Supply Chain uses the Amazon Web Services owned KMS key and nothing is returned.</p>
747
747
  * @public
748
748
  */
749
- kmsKeyArn?: string;
749
+ kmsKeyArn?: string | undefined;
750
750
  /**
751
751
  * <p>The version number of the instance.</p>
752
752
  * @public
753
753
  */
754
- versionNumber?: number;
754
+ versionNumber?: number | undefined;
755
755
  }
756
756
  /**
757
757
  * <p>The response parameters for CreateInstance.</p>
@@ -819,12 +819,12 @@ export interface SendDataIntegrationEventRequest {
819
819
  * <p>The event timestamp (in epoch seconds).</p>
820
820
  * @public
821
821
  */
822
- eventTimestamp?: Date;
822
+ eventTimestamp?: Date | undefined;
823
823
  /**
824
824
  * <p>The idempotent client token.</p>
825
825
  * @public
826
826
  */
827
- clientToken?: string;
827
+ clientToken?: string | undefined;
828
828
  }
829
829
  /**
830
830
  * <p>The response parameters for SendDataIntegrationEvent.</p>
@@ -951,12 +951,12 @@ export interface ListDataIntegrationFlowsRequest {
951
951
  * <p>The pagination token to fetch the next page of the DataIntegrationFlows.</p>
952
952
  * @public
953
953
  */
954
- nextToken?: string;
954
+ nextToken?: string | undefined;
955
955
  /**
956
956
  * <p>Specify the maximum number of DataIntegrationFlows to fetch in one paginated request.</p>
957
957
  * @public
958
958
  */
959
- maxResults?: number;
959
+ maxResults?: number | undefined;
960
960
  }
961
961
  /**
962
962
  * <p>The response parameters for ListDataIntegrationFlows.</p>
@@ -972,7 +972,7 @@ export interface ListDataIntegrationFlowsResponse {
972
972
  * <p>The pagination token to fetch the next page of the DataIntegrationFlows.</p>
973
973
  * @public
974
974
  */
975
- nextToken?: string;
975
+ nextToken?: string | undefined;
976
976
  }
977
977
  /**
978
978
  * <p>The request parameters for UpdateDataIntegrationFlow.</p>
@@ -993,17 +993,17 @@ export interface UpdateDataIntegrationFlowRequest {
993
993
  * <p>The new source configurations for the DataIntegrationFlow.</p>
994
994
  * @public
995
995
  */
996
- sources?: DataIntegrationFlowSource[];
996
+ sources?: DataIntegrationFlowSource[] | undefined;
997
997
  /**
998
998
  * <p>The new transformation configurations for the DataIntegrationFlow.</p>
999
999
  * @public
1000
1000
  */
1001
- transformation?: DataIntegrationFlowTransformation;
1001
+ transformation?: DataIntegrationFlowTransformation | undefined;
1002
1002
  /**
1003
1003
  * <p>The new target configurations for the DataIntegrationFlow.</p>
1004
1004
  * @public
1005
1005
  */
1006
- target?: DataIntegrationFlowTarget;
1006
+ target?: DataIntegrationFlowTarget | undefined;
1007
1007
  }
1008
1008
  /**
1009
1009
  * <p>The response parameters for UpdateDataIntegrationFlow.</p>
@@ -1140,12 +1140,12 @@ export interface ListDataLakeDatasetsRequest {
1140
1140
  * <p>The pagination token to fetch next page of datasets.</p>
1141
1141
  * @public
1142
1142
  */
1143
- nextToken?: string;
1143
+ nextToken?: string | undefined;
1144
1144
  /**
1145
1145
  * <p>The max number of datasets to fetch in this paginated request.</p>
1146
1146
  * @public
1147
1147
  */
1148
- maxResults?: number;
1148
+ maxResults?: number | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * <p>The response parameters of ListDataLakeDatasets.</p>
@@ -1161,7 +1161,7 @@ export interface ListDataLakeDatasetsResponse {
1161
1161
  * <p>The pagination token to fetch next page of datasets.</p>
1162
1162
  * @public
1163
1163
  */
1164
- nextToken?: string;
1164
+ nextToken?: string | undefined;
1165
1165
  }
1166
1166
  /**
1167
1167
  * <p>The request parameters of UpdateDataLakeDataset.</p>
@@ -1197,7 +1197,7 @@ export interface UpdateDataLakeDatasetRequest {
1197
1197
  * <p>The updated description of the data lake dataset.</p>
1198
1198
  * @public
1199
1199
  */
1200
- description?: string;
1200
+ description?: string | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * <p>The response parameters of UpdateDataLakeDataset.</p>
@@ -1263,22 +1263,22 @@ export interface ListInstancesRequest {
1263
1263
  * <p>The pagination token to fetch the next page of instances.</p>
1264
1264
  * @public
1265
1265
  */
1266
- nextToken?: string;
1266
+ nextToken?: string | undefined;
1267
1267
  /**
1268
1268
  * <p>Specify the maximum number of instances to fetch in this paginated request.</p>
1269
1269
  * @public
1270
1270
  */
1271
- maxResults?: number;
1271
+ maxResults?: number | undefined;
1272
1272
  /**
1273
1273
  * <p>The filter to ListInstances based on their names.</p>
1274
1274
  * @public
1275
1275
  */
1276
- instanceNameFilter?: string[];
1276
+ instanceNameFilter?: string[] | undefined;
1277
1277
  /**
1278
1278
  * <p>The filter to ListInstances based on their state.</p>
1279
1279
  * @public
1280
1280
  */
1281
- instanceStateFilter?: InstanceState[];
1281
+ instanceStateFilter?: InstanceState[] | undefined;
1282
1282
  }
1283
1283
  /**
1284
1284
  * <p>The response parameters for ListInstances.</p>
@@ -1294,7 +1294,7 @@ export interface ListInstancesResponse {
1294
1294
  * <p>The pagination token to fetch the next page of instances.</p>
1295
1295
  * @public
1296
1296
  */
1297
- nextToken?: string;
1297
+ nextToken?: string | undefined;
1298
1298
  }
1299
1299
  /**
1300
1300
  * <p>The request parameters for UpdateInstance.</p>
@@ -1310,12 +1310,12 @@ export interface UpdateInstanceRequest {
1310
1310
  * <p>The AWS Supply Chain instance name.</p>
1311
1311
  * @public
1312
1312
  */
1313
- instanceName?: string;
1313
+ instanceName?: string | undefined;
1314
1314
  /**
1315
1315
  * <p>The AWS Supply Chain instance description.</p>
1316
1316
  * @public
1317
1317
  */
1318
- instanceDescription?: string;
1318
+ instanceDescription?: string | undefined;
1319
1319
  }
1320
1320
  /**
1321
1321
  * <p>The response parameters for UpdateInstance.</p>
@@ -21,7 +21,7 @@ export interface BillOfMaterialsImportJob {
21
21
  jobId: string | undefined;
22
22
  status: ConfigurationJobStatus | undefined;
23
23
  s3uri: string | undefined;
24
- message?: string;
24
+ message?: string | undefined;
25
25
  }
26
26
  export declare class ConflictException extends __BaseException {
27
27
  readonly name: "ConflictException";
@@ -31,7 +31,7 @@ export declare class ConflictException extends __BaseException {
31
31
  export interface CreateBillOfMaterialsImportJobRequest {
32
32
  instanceId: string | undefined;
33
33
  s3uri: string | undefined;
34
- clientToken?: string;
34
+ clientToken?: string | undefined;
35
35
  }
36
36
  export interface CreateBillOfMaterialsImportJobResponse {
37
37
  jobId: string | undefined;
@@ -89,12 +89,12 @@ export declare const DataIntegrationFlowLoadType: {
89
89
  export type DataIntegrationFlowLoadType =
90
90
  (typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
91
91
  export interface DataIntegrationFlowDatasetOptions {
92
- loadType?: DataIntegrationFlowLoadType;
93
- dedupeRecords?: boolean;
92
+ loadType?: DataIntegrationFlowLoadType | undefined;
93
+ dedupeRecords?: boolean | undefined;
94
94
  }
95
95
  export interface DataIntegrationFlowDatasetSourceConfiguration {
96
96
  datasetIdentifier: string | undefined;
97
- options?: DataIntegrationFlowDatasetOptions;
97
+ options?: DataIntegrationFlowDatasetOptions | undefined;
98
98
  }
99
99
  export declare const DataIntegrationFlowFileType: {
100
100
  readonly CSV: "CSV";
@@ -104,12 +104,12 @@ export declare const DataIntegrationFlowFileType: {
104
104
  export type DataIntegrationFlowFileType =
105
105
  (typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
106
106
  export interface DataIntegrationFlowS3Options {
107
- fileType?: DataIntegrationFlowFileType;
107
+ fileType?: DataIntegrationFlowFileType | undefined;
108
108
  }
109
109
  export interface DataIntegrationFlowS3SourceConfiguration {
110
110
  bucketName: string | undefined;
111
111
  prefix: string | undefined;
112
- options?: DataIntegrationFlowS3Options;
112
+ options?: DataIntegrationFlowS3Options | undefined;
113
113
  }
114
114
  export declare const DataIntegrationFlowSourceType: {
115
115
  readonly DATASET: "DATASET";
@@ -120,17 +120,17 @@ export type DataIntegrationFlowSourceType =
120
120
  export interface DataIntegrationFlowSource {
121
121
  sourceType: DataIntegrationFlowSourceType | undefined;
122
122
  sourceName: string | undefined;
123
- s3Source?: DataIntegrationFlowS3SourceConfiguration;
124
- datasetSource?: DataIntegrationFlowDatasetSourceConfiguration;
123
+ s3Source?: DataIntegrationFlowS3SourceConfiguration | undefined;
124
+ datasetSource?: DataIntegrationFlowDatasetSourceConfiguration | undefined;
125
125
  }
126
126
  export interface DataIntegrationFlowDatasetTargetConfiguration {
127
127
  datasetIdentifier: string | undefined;
128
- options?: DataIntegrationFlowDatasetOptions;
128
+ options?: DataIntegrationFlowDatasetOptions | undefined;
129
129
  }
130
130
  export interface DataIntegrationFlowS3TargetConfiguration {
131
131
  bucketName: string | undefined;
132
132
  prefix: string | undefined;
133
- options?: DataIntegrationFlowS3Options;
133
+ options?: DataIntegrationFlowS3Options | undefined;
134
134
  }
135
135
  export declare const DataIntegrationFlowTargetType: {
136
136
  readonly DATASET: "DATASET";
@@ -140,8 +140,8 @@ export type DataIntegrationFlowTargetType =
140
140
  (typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
141
141
  export interface DataIntegrationFlowTarget {
142
142
  targetType: DataIntegrationFlowTargetType | undefined;
143
- s3Target?: DataIntegrationFlowS3TargetConfiguration;
144
- datasetTarget?: DataIntegrationFlowDatasetTargetConfiguration;
143
+ s3Target?: DataIntegrationFlowS3TargetConfiguration | undefined;
144
+ datasetTarget?: DataIntegrationFlowDatasetTargetConfiguration | undefined;
145
145
  }
146
146
  export interface DataIntegrationFlowSQLTransformationConfiguration {
147
147
  query: string | undefined;
@@ -154,7 +154,9 @@ export type DataIntegrationFlowTransformationType =
154
154
  (typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
155
155
  export interface DataIntegrationFlowTransformation {
156
156
  transformationType: DataIntegrationFlowTransformationType | undefined;
157
- sqlTransformation?: DataIntegrationFlowSQLTransformationConfiguration;
157
+ sqlTransformation?:
158
+ | DataIntegrationFlowSQLTransformationConfiguration
159
+ | undefined;
158
160
  }
159
161
  export interface CreateDataIntegrationFlowRequest {
160
162
  instanceId: string | undefined;
@@ -162,7 +164,7 @@ export interface CreateDataIntegrationFlowRequest {
162
164
  sources: DataIntegrationFlowSource[] | undefined;
163
165
  transformation: DataIntegrationFlowTransformation | undefined;
164
166
  target: DataIntegrationFlowTarget | undefined;
165
- tags?: Record<string, string>;
167
+ tags?: Record<string, string> | undefined;
166
168
  }
167
169
  export interface CreateDataIntegrationFlowResponse {
168
170
  instanceId: string | undefined;
@@ -189,9 +191,9 @@ export interface CreateDataLakeDatasetRequest {
189
191
  instanceId: string | undefined;
190
192
  namespace: string | undefined;
191
193
  name: string | undefined;
192
- schema?: DataLakeDatasetSchema;
193
- description?: string;
194
- tags?: Record<string, string>;
194
+ schema?: DataLakeDatasetSchema | undefined;
195
+ description?: string | undefined;
196
+ tags?: Record<string, string> | undefined;
195
197
  }
196
198
  export interface DataLakeDataset {
197
199
  instanceId: string | undefined;
@@ -199,7 +201,7 @@ export interface DataLakeDataset {
199
201
  name: string | undefined;
200
202
  arn: string | undefined;
201
203
  schema: DataLakeDatasetSchema | undefined;
202
- description?: string;
204
+ description?: string | undefined;
203
205
  createdTime: Date | undefined;
204
206
  lastModifiedTime: Date | undefined;
205
207
  }
@@ -207,11 +209,11 @@ export interface CreateDataLakeDatasetResponse {
207
209
  dataset: DataLakeDataset | undefined;
208
210
  }
209
211
  export interface CreateInstanceRequest {
210
- instanceName?: string;
211
- instanceDescription?: string;
212
- kmsKeyArn?: string;
213
- tags?: Record<string, string>;
214
- clientToken?: string;
212
+ instanceName?: string | undefined;
213
+ instanceDescription?: string | undefined;
214
+ kmsKeyArn?: string | undefined;
215
+ tags?: Record<string, string> | undefined;
216
+ clientToken?: string | undefined;
215
217
  }
216
218
  export declare const InstanceState: {
217
219
  readonly ACTIVE: "Active";
@@ -226,14 +228,14 @@ export interface Instance {
226
228
  instanceId: string | undefined;
227
229
  awsAccountId: string | undefined;
228
230
  state: InstanceState | undefined;
229
- errorMessage?: string;
230
- webAppDnsDomain?: string;
231
- createdTime?: Date;
232
- lastModifiedTime?: Date;
233
- instanceName?: string;
234
- instanceDescription?: string;
235
- kmsKeyArn?: string;
236
- versionNumber?: number;
231
+ errorMessage?: string | undefined;
232
+ webAppDnsDomain?: string | undefined;
233
+ createdTime?: Date | undefined;
234
+ lastModifiedTime?: Date | undefined;
235
+ instanceName?: string | undefined;
236
+ instanceDescription?: string | undefined;
237
+ kmsKeyArn?: string | undefined;
238
+ versionNumber?: number | undefined;
237
239
  }
238
240
  export interface CreateInstanceResponse {
239
241
  instance: Instance | undefined;
@@ -262,8 +264,8 @@ export interface SendDataIntegrationEventRequest {
262
264
  eventType: DataIntegrationEventType | undefined;
263
265
  data: string | undefined;
264
266
  eventGroupId: string | undefined;
265
- eventTimestamp?: Date;
266
- clientToken?: string;
267
+ eventTimestamp?: Date | undefined;
268
+ clientToken?: string | undefined;
267
269
  }
268
270
  export interface SendDataIntegrationEventResponse {
269
271
  eventId: string | undefined;
@@ -294,19 +296,19 @@ export interface GetDataIntegrationFlowResponse {
294
296
  }
295
297
  export interface ListDataIntegrationFlowsRequest {
296
298
  instanceId: string | undefined;
297
- nextToken?: string;
298
- maxResults?: number;
299
+ nextToken?: string | undefined;
300
+ maxResults?: number | undefined;
299
301
  }
300
302
  export interface ListDataIntegrationFlowsResponse {
301
303
  flows: DataIntegrationFlow[] | undefined;
302
- nextToken?: string;
304
+ nextToken?: string | undefined;
303
305
  }
304
306
  export interface UpdateDataIntegrationFlowRequest {
305
307
  instanceId: string | undefined;
306
308
  name: string | undefined;
307
- sources?: DataIntegrationFlowSource[];
308
- transformation?: DataIntegrationFlowTransformation;
309
- target?: DataIntegrationFlowTarget;
309
+ sources?: DataIntegrationFlowSource[] | undefined;
310
+ transformation?: DataIntegrationFlowTransformation | undefined;
311
+ target?: DataIntegrationFlowTarget | undefined;
310
312
  }
311
313
  export interface UpdateDataIntegrationFlowResponse {
312
314
  flow: DataIntegrationFlow | undefined;
@@ -332,18 +334,18 @@ export interface GetDataLakeDatasetResponse {
332
334
  export interface ListDataLakeDatasetsRequest {
333
335
  instanceId: string | undefined;
334
336
  namespace: string | undefined;
335
- nextToken?: string;
336
- maxResults?: number;
337
+ nextToken?: string | undefined;
338
+ maxResults?: number | undefined;
337
339
  }
338
340
  export interface ListDataLakeDatasetsResponse {
339
341
  datasets: DataLakeDataset[] | undefined;
340
- nextToken?: string;
342
+ nextToken?: string | undefined;
341
343
  }
342
344
  export interface UpdateDataLakeDatasetRequest {
343
345
  instanceId: string | undefined;
344
346
  namespace: string | undefined;
345
347
  name: string | undefined;
346
- description?: string;
348
+ description?: string | undefined;
347
349
  }
348
350
  export interface UpdateDataLakeDatasetResponse {
349
351
  dataset: DataLakeDataset | undefined;
@@ -361,19 +363,19 @@ export interface GetInstanceResponse {
361
363
  instance: Instance | undefined;
362
364
  }
363
365
  export interface ListInstancesRequest {
364
- nextToken?: string;
365
- maxResults?: number;
366
- instanceNameFilter?: string[];
367
- instanceStateFilter?: InstanceState[];
366
+ nextToken?: string | undefined;
367
+ maxResults?: number | undefined;
368
+ instanceNameFilter?: string[] | undefined;
369
+ instanceStateFilter?: InstanceState[] | undefined;
368
370
  }
369
371
  export interface ListInstancesResponse {
370
372
  instances: Instance[] | undefined;
371
- nextToken?: string;
373
+ nextToken?: string | undefined;
372
374
  }
373
375
  export interface UpdateInstanceRequest {
374
376
  instanceId: string | undefined;
375
- instanceName?: string;
376
- instanceDescription?: string;
377
+ instanceName?: string | undefined;
378
+ instanceDescription?: string | undefined;
377
379
  }
378
380
  export interface UpdateInstanceResponse {
379
381
  instance: Instance | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-supplychain",
3
3
  "description": "AWS SDK for JavaScript Supplychain 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-supplychain",
@@ -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",