@aws-sdk/client-databrew 3.428.0 → 3.430.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.
@@ -380,14 +380,14 @@ export interface FilesLimit {
380
380
  * <p>A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as
381
381
  * a sorting criteria. Currently it's the only allowed value.</p>
382
382
  */
383
- OrderedBy?: OrderedBy | string;
383
+ OrderedBy?: OrderedBy;
384
384
  /**
385
385
  * @public
386
386
  * <p>A criteria to use for Amazon S3 files sorting before their selection. By
387
387
  * default uses DESCENDING order, i.e. most recent files are selected first. Another
388
388
  * possible value is ASCENDING.</p>
389
389
  */
390
- Order?: Order | string;
390
+ Order?: Order;
391
391
  }
392
392
  /**
393
393
  * @public
@@ -464,7 +464,7 @@ export interface DatasetParameter {
464
464
  * @public
465
465
  * <p>The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.</p>
466
466
  */
467
- Type: ParameterType | string | undefined;
467
+ Type: ParameterType | undefined;
468
468
  /**
469
469
  * @public
470
470
  * <p>Additional parameter options such as a format and a timezone. Required for datetime parameters.</p>
@@ -519,7 +519,7 @@ export interface CreateDatasetRequest {
519
519
  * @public
520
520
  * <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
521
521
  */
522
- Format?: InputFormat | string;
522
+ Format?: InputFormat;
523
523
  /**
524
524
  * @public
525
525
  * <p>Represents a set of options that define the structure of either comma-separated value (CSV),
@@ -804,7 +804,7 @@ export interface JobSample {
804
804
  * </li>
805
805
  * </ul>
806
806
  */
807
- Mode?: SampleMode | string;
807
+ Mode?: SampleMode;
808
808
  /**
809
809
  * @public
810
810
  * <p>The <code>Size</code> parameter is only required when the mode is CUSTOM_ROWS. The
@@ -856,7 +856,7 @@ export interface ValidationConfiguration {
856
856
  * <p>Mode of data quality validation. Default mode is “CHECK_ALL” which verifies all rules
857
857
  * defined in the selected ruleset.</p>
858
858
  */
859
- ValidationMode?: ValidationMode | string;
859
+ ValidationMode?: ValidationMode;
860
860
  }
861
861
  /**
862
862
  * @public
@@ -888,7 +888,7 @@ export interface CreateProfileJobRequest {
888
888
  * </li>
889
889
  * </ul>
890
890
  */
891
- EncryptionMode?: EncryptionMode | string;
891
+ EncryptionMode?: EncryptionMode;
892
892
  /**
893
893
  * @public
894
894
  * <p>The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9),
@@ -900,7 +900,7 @@ export interface CreateProfileJobRequest {
900
900
  * <p>Enables or disables Amazon CloudWatch logging for the job. If logging is enabled,
901
901
  * CloudWatch writes one log stream for each job run.</p>
902
902
  */
903
- LogSubscription?: LogSubscription | string;
903
+ LogSubscription?: LogSubscription;
904
904
  /**
905
905
  * @public
906
906
  * <p>The maximum number of nodes that DataBrew can use when the job processes data.</p>
@@ -993,7 +993,7 @@ export interface Sample {
993
993
  * @public
994
994
  * <p>The way in which DataBrew obtains rows from a dataset.</p>
995
995
  */
996
- Type: SampleType | string | undefined;
996
+ Type: SampleType | undefined;
997
997
  }
998
998
  /**
999
999
  * @public
@@ -1210,7 +1210,7 @@ export interface DatabaseOutput {
1210
1210
  * @public
1211
1211
  * <p>The output mode to write into the database. Currently supported option: NEW_TABLE.</p>
1212
1212
  */
1213
- DatabaseOutputMode?: DatabaseOutputMode | string;
1213
+ DatabaseOutputMode?: DatabaseOutputMode;
1214
1214
  }
1215
1215
  /**
1216
1216
  * @public
@@ -1337,12 +1337,12 @@ export interface Output {
1337
1337
  * @public
1338
1338
  * <p>The compression algorithm used to compress the output text of the job.</p>
1339
1339
  */
1340
- CompressionFormat?: CompressionFormat | string;
1340
+ CompressionFormat?: CompressionFormat;
1341
1341
  /**
1342
1342
  * @public
1343
1343
  * <p>The data format of the output of the job.</p>
1344
1344
  */
1345
- Format?: OutputFormat | string;
1345
+ Format?: OutputFormat;
1346
1346
  /**
1347
1347
  * @public
1348
1348
  * <p>The names of one or more partition columns for the output of the job.</p>
@@ -1416,7 +1416,7 @@ export interface CreateRecipeJobRequest {
1416
1416
  * </li>
1417
1417
  * </ul>
1418
1418
  */
1419
- EncryptionMode?: EncryptionMode | string;
1419
+ EncryptionMode?: EncryptionMode;
1420
1420
  /**
1421
1421
  * @public
1422
1422
  * <p>A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen
@@ -1428,7 +1428,7 @@ export interface CreateRecipeJobRequest {
1428
1428
  * <p>Enables or disables Amazon CloudWatch logging for the job. If logging is enabled,
1429
1429
  * CloudWatch writes one log stream for each job run.</p>
1430
1430
  */
1431
- LogSubscription?: LogSubscription | string;
1431
+ LogSubscription?: LogSubscription;
1432
1432
  /**
1433
1433
  * @public
1434
1434
  * <p>The maximum number of nodes that DataBrew can consume when the job processes
@@ -1538,13 +1538,13 @@ export interface Threshold {
1538
1538
  * <p>The type of a threshold. Used for comparison of an actual count of rows that satisfy the
1539
1539
  * rule to the threshold value.</p>
1540
1540
  */
1541
- Type?: ThresholdType | string;
1541
+ Type?: ThresholdType;
1542
1542
  /**
1543
1543
  * @public
1544
1544
  * <p>Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size
1545
1545
  * used for validation.</p>
1546
1546
  */
1547
- Unit?: ThresholdUnit | string;
1547
+ Unit?: ThresholdUnit;
1548
1548
  }
1549
1549
  /**
1550
1550
  * @public
@@ -1864,7 +1864,7 @@ export interface DescribeDatasetResponse {
1864
1864
  * <p>The file format of a dataset that is created from an Amazon S3 file
1865
1865
  * or folder.</p>
1866
1866
  */
1867
- Format?: InputFormat | string;
1867
+ Format?: InputFormat;
1868
1868
  /**
1869
1869
  * @public
1870
1870
  * <p>Represents a set of options that define the structure of either comma-separated value (CSV),
@@ -1892,7 +1892,7 @@ export interface DescribeDatasetResponse {
1892
1892
  * <p>The location of the data for this dataset, Amazon S3 or the
1893
1893
  * Glue Data Catalog.</p>
1894
1894
  */
1895
- Source?: Source | string;
1895
+ Source?: Source;
1896
1896
  /**
1897
1897
  * @public
1898
1898
  * <p>A set of options that defines how DataBrew interprets an Amazon S3
@@ -1972,7 +1972,7 @@ export interface DescribeJobResponse {
1972
1972
  * </li>
1973
1973
  * </ul>
1974
1974
  */
1975
- EncryptionMode?: EncryptionMode | string;
1975
+ EncryptionMode?: EncryptionMode;
1976
1976
  /**
1977
1977
  * @public
1978
1978
  * <p>The name of the job.</p>
@@ -1994,7 +1994,7 @@ export interface DescribeJobResponse {
1994
1994
  * </li>
1995
1995
  * </ul>
1996
1996
  */
1997
- Type?: JobType | string;
1997
+ Type?: JobType;
1998
1998
  /**
1999
1999
  * @public
2000
2000
  * <p>The identifier (user name) of the user who last modified the job.</p>
@@ -2009,7 +2009,7 @@ export interface DescribeJobResponse {
2009
2009
  * @public
2010
2010
  * <p>Indicates whether Amazon CloudWatch logging is enabled for this job.</p>
2011
2011
  */
2012
- LogSubscription?: LogSubscription | string;
2012
+ LogSubscription?: LogSubscription;
2013
2013
  /**
2014
2014
  * @public
2015
2015
  * <p>The maximum number of compute nodes that DataBrew can consume when the job processes
@@ -2175,12 +2175,12 @@ export interface DescribeJobRunResponse {
2175
2175
  * @public
2176
2176
  * <p>The current state of the job run entity itself.</p>
2177
2177
  */
2178
- State?: JobRunState | string;
2178
+ State?: JobRunState;
2179
2179
  /**
2180
2180
  * @public
2181
2181
  * <p>The current status of Amazon CloudWatch logging for the job run.</p>
2182
2182
  */
2183
- LogSubscription?: LogSubscription | string;
2183
+ LogSubscription?: LogSubscription;
2184
2184
  /**
2185
2185
  * @public
2186
2186
  * <p>The name of an Amazon CloudWatch log group, where the job writes diagnostic messages
@@ -2336,7 +2336,7 @@ export interface DescribeProjectResponse {
2336
2336
  * </li>
2337
2337
  * </ul>
2338
2338
  */
2339
- SessionStatus?: SessionStatus | string;
2339
+ SessionStatus?: SessionStatus;
2340
2340
  /**
2341
2341
  * @public
2342
2342
  * <p>The identifier (user name) of the user that opened the project for use. </p>
@@ -2608,7 +2608,7 @@ export interface Dataset {
2608
2608
  * @public
2609
2609
  * <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
2610
2610
  */
2611
- Format?: InputFormat | string;
2611
+ Format?: InputFormat;
2612
2612
  /**
2613
2613
  * @public
2614
2614
  * <p>A set of options that define how DataBrew interprets the data in the dataset.</p>
@@ -2634,7 +2634,7 @@ export interface Dataset {
2634
2634
  * @public
2635
2635
  * <p>The location of the data for the dataset, either Amazon S3 or the Glue Data Catalog.</p>
2636
2636
  */
2637
- Source?: Source | string;
2637
+ Source?: Source;
2638
2638
  /**
2639
2639
  * @public
2640
2640
  * <p>A set of options that defines how DataBrew interprets an Amazon S3
@@ -2732,12 +2732,12 @@ export interface JobRun {
2732
2732
  * @public
2733
2733
  * <p>The current state of the job run entity itself.</p>
2734
2734
  */
2735
- State?: JobRunState | string;
2735
+ State?: JobRunState;
2736
2736
  /**
2737
2737
  * @public
2738
2738
  * <p>The current status of Amazon CloudWatch logging for the job run.</p>
2739
2739
  */
2740
- LogSubscription?: LogSubscription | string;
2740
+ LogSubscription?: LogSubscription;
2741
2741
  /**
2742
2742
  * @public
2743
2743
  * <p>The name of an Amazon CloudWatch log group, where the job writes diagnostic messages
@@ -2882,7 +2882,7 @@ export interface Job {
2882
2882
  * </li>
2883
2883
  * </ul>
2884
2884
  */
2885
- EncryptionMode?: EncryptionMode | string;
2885
+ EncryptionMode?: EncryptionMode;
2886
2886
  /**
2887
2887
  * @public
2888
2888
  * <p>The unique name of the job.</p>
@@ -2904,7 +2904,7 @@ export interface Job {
2904
2904
  * </li>
2905
2905
  * </ul>
2906
2906
  */
2907
- Type?: JobType | string;
2907
+ Type?: JobType;
2908
2908
  /**
2909
2909
  * @public
2910
2910
  * <p>The Amazon Resource Name (ARN) of the user who last modified the job.</p>
@@ -2919,7 +2919,7 @@ export interface Job {
2919
2919
  * @public
2920
2920
  * <p>The current status of Amazon CloudWatch logging for the job.</p>
2921
2921
  */
2922
- LogSubscription?: LogSubscription | string;
2922
+ LogSubscription?: LogSubscription;
2923
2923
  /**
2924
2924
  * @public
2925
2925
  * <p>The maximum number of nodes that can be consumed when the job processes data.</p>
@@ -3560,7 +3560,7 @@ export interface ViewFrame {
3560
3560
  * @public
3561
3561
  * <p>Controls if analytics computation is enabled or disabled. Enabled by default.</p>
3562
3562
  */
3563
- Analytics?: AnalyticsMode | string;
3563
+ Analytics?: AnalyticsMode;
3564
3564
  }
3565
3565
  /**
3566
3566
  * @public
@@ -3752,7 +3752,7 @@ export interface UpdateDatasetRequest {
3752
3752
  * @public
3753
3753
  * <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
3754
3754
  */
3755
- Format?: InputFormat | string;
3755
+ Format?: InputFormat;
3756
3756
  /**
3757
3757
  * @public
3758
3758
  * <p>Represents a set of options that define the structure of either comma-separated value (CSV),
@@ -3813,7 +3813,7 @@ export interface UpdateProfileJobRequest {
3813
3813
  * </li>
3814
3814
  * </ul>
3815
3815
  */
3816
- EncryptionMode?: EncryptionMode | string;
3816
+ EncryptionMode?: EncryptionMode;
3817
3817
  /**
3818
3818
  * @public
3819
3819
  * <p>The name of the job to be updated.</p>
@@ -3824,7 +3824,7 @@ export interface UpdateProfileJobRequest {
3824
3824
  * <p>Enables or disables Amazon CloudWatch logging for the job. If logging is enabled,
3825
3825
  * CloudWatch writes one log stream for each job run.</p>
3826
3826
  */
3827
- LogSubscription?: LogSubscription | string;
3827
+ LogSubscription?: LogSubscription;
3828
3828
  /**
3829
3829
  * @public
3830
3830
  * <p>The maximum number of compute nodes that DataBrew can use when the job processes
@@ -3969,7 +3969,7 @@ export interface UpdateRecipeJobRequest {
3969
3969
  * </li>
3970
3970
  * </ul>
3971
3971
  */
3972
- EncryptionMode?: EncryptionMode | string;
3972
+ EncryptionMode?: EncryptionMode;
3973
3973
  /**
3974
3974
  * @public
3975
3975
  * <p>The name of the job to update.</p>
@@ -3980,7 +3980,7 @@ export interface UpdateRecipeJobRequest {
3980
3980
  * <p>Enables or disables Amazon CloudWatch logging for the job. If logging is enabled,
3981
3981
  * CloudWatch writes one log stream for each job run.</p>
3982
3982
  */
3983
- LogSubscription?: LogSubscription | string;
3983
+ LogSubscription?: LogSubscription;
3984
3984
  /**
3985
3985
  * @public
3986
3986
  * <p>The maximum number of nodes that DataBrew can consume when the job processes
@@ -113,8 +113,8 @@ export declare const OrderedBy: {
113
113
  export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy];
114
114
  export interface FilesLimit {
115
115
  MaxFiles: number | undefined;
116
- OrderedBy?: OrderedBy | string;
117
- Order?: Order | string;
116
+ OrderedBy?: OrderedBy;
117
+ Order?: Order;
118
118
  }
119
119
  export interface FilterExpression {
120
120
  Expression: string | undefined;
@@ -133,7 +133,7 @@ export declare const ParameterType: {
133
133
  export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
134
134
  export interface DatasetParameter {
135
135
  Name: string | undefined;
136
- Type: ParameterType | string | undefined;
136
+ Type: ParameterType | undefined;
137
137
  DatetimeOptions?: DatetimeOptions;
138
138
  CreateColumn?: boolean;
139
139
  Filter?: FilterExpression;
@@ -145,7 +145,7 @@ export interface PathOptions {
145
145
  }
146
146
  export interface CreateDatasetRequest {
147
147
  Name: string | undefined;
148
- Format?: InputFormat | string;
148
+ Format?: InputFormat;
149
149
  FormatOptions?: FormatOptions;
150
150
  Input: Input | undefined;
151
151
  PathOptions?: PathOptions;
@@ -200,7 +200,7 @@ export declare const SampleMode: {
200
200
  };
201
201
  export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode];
202
202
  export interface JobSample {
203
- Mode?: SampleMode | string;
203
+ Mode?: SampleMode;
204
204
  Size?: number;
205
205
  }
206
206
  export declare const LogSubscription: {
@@ -216,14 +216,14 @@ export type ValidationMode =
216
216
  (typeof ValidationMode)[keyof typeof ValidationMode];
217
217
  export interface ValidationConfiguration {
218
218
  RulesetArn: string | undefined;
219
- ValidationMode?: ValidationMode | string;
219
+ ValidationMode?: ValidationMode;
220
220
  }
221
221
  export interface CreateProfileJobRequest {
222
222
  DatasetName: string | undefined;
223
223
  EncryptionKeyArn?: string;
224
- EncryptionMode?: EncryptionMode | string;
224
+ EncryptionMode?: EncryptionMode;
225
225
  Name: string | undefined;
226
- LogSubscription?: LogSubscription | string;
226
+ LogSubscription?: LogSubscription;
227
227
  MaxCapacity?: number;
228
228
  MaxRetries?: number;
229
229
  OutputLocation: S3Location | undefined;
@@ -245,7 +245,7 @@ export declare const SampleType: {
245
245
  export type SampleType = (typeof SampleType)[keyof typeof SampleType];
246
246
  export interface Sample {
247
247
  Size?: number;
248
- Type: SampleType | string | undefined;
248
+ Type: SampleType | undefined;
249
249
  }
250
250
  export interface CreateProjectRequest {
251
251
  DatasetName: string | undefined;
@@ -300,7 +300,7 @@ export type DatabaseOutputMode =
300
300
  export interface DatabaseOutput {
301
301
  GlueConnectionName: string | undefined;
302
302
  DatabaseOptions: DatabaseTableOutputOptions | undefined;
303
- DatabaseOutputMode?: DatabaseOutputMode | string;
303
+ DatabaseOutputMode?: DatabaseOutputMode;
304
304
  }
305
305
  export interface S3TableOutputOptions {
306
306
  Location: S3Location | undefined;
@@ -344,8 +344,8 @@ export interface OutputFormatOptions {
344
344
  Csv?: CsvOutputOptions;
345
345
  }
346
346
  export interface Output {
347
- CompressionFormat?: CompressionFormat | string;
348
- Format?: OutputFormat | string;
347
+ CompressionFormat?: CompressionFormat;
348
+ Format?: OutputFormat;
349
349
  PartitionColumns?: string[];
350
350
  Location: S3Location | undefined;
351
351
  Overwrite?: boolean;
@@ -359,9 +359,9 @@ export interface RecipeReference {
359
359
  export interface CreateRecipeJobRequest {
360
360
  DatasetName?: string;
361
361
  EncryptionKeyArn?: string;
362
- EncryptionMode?: EncryptionMode | string;
362
+ EncryptionMode?: EncryptionMode;
363
363
  Name: string | undefined;
364
- LogSubscription?: LogSubscription | string;
364
+ LogSubscription?: LogSubscription;
365
365
  MaxCapacity?: number;
366
366
  MaxRetries?: number;
367
367
  Outputs?: Output[];
@@ -390,8 +390,8 @@ export declare const ThresholdUnit: {
390
390
  export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit];
391
391
  export interface Threshold {
392
392
  Value: number | undefined;
393
- Type?: ThresholdType | string;
394
- Unit?: ThresholdUnit | string;
393
+ Type?: ThresholdType;
394
+ Unit?: ThresholdUnit;
395
395
  }
396
396
  export interface Rule {
397
397
  Name: string | undefined;
@@ -471,12 +471,12 @@ export interface DescribeDatasetResponse {
471
471
  CreatedBy?: string;
472
472
  CreateDate?: Date;
473
473
  Name: string | undefined;
474
- Format?: InputFormat | string;
474
+ Format?: InputFormat;
475
475
  FormatOptions?: FormatOptions;
476
476
  Input: Input | undefined;
477
477
  LastModifiedDate?: Date;
478
478
  LastModifiedBy?: string;
479
- Source?: Source | string;
479
+ Source?: Source;
480
480
  PathOptions?: PathOptions;
481
481
  Tags?: Record<string, string>;
482
482
  ResourceArn?: string;
@@ -494,12 +494,12 @@ export interface DescribeJobResponse {
494
494
  CreatedBy?: string;
495
495
  DatasetName?: string;
496
496
  EncryptionKeyArn?: string;
497
- EncryptionMode?: EncryptionMode | string;
497
+ EncryptionMode?: EncryptionMode;
498
498
  Name: string | undefined;
499
- Type?: JobType | string;
499
+ Type?: JobType;
500
500
  LastModifiedBy?: string;
501
501
  LastModifiedDate?: Date;
502
- LogSubscription?: LogSubscription | string;
502
+ LogSubscription?: LogSubscription;
503
503
  MaxCapacity?: number;
504
504
  MaxRetries?: number;
505
505
  Outputs?: Output[];
@@ -539,8 +539,8 @@ export interface DescribeJobRunResponse {
539
539
  ProfileConfiguration?: ProfileConfiguration;
540
540
  ValidationConfigurations?: ValidationConfiguration[];
541
541
  RunId?: string;
542
- State?: JobRunState | string;
543
- LogSubscription?: LogSubscription | string;
542
+ State?: JobRunState;
543
+ LogSubscription?: LogSubscription;
544
544
  LogGroupName?: string;
545
545
  Outputs?: Output[];
546
546
  DataCatalogOutputs?: DataCatalogOutput[];
@@ -578,7 +578,7 @@ export interface DescribeProjectResponse {
578
578
  Sample?: Sample;
579
579
  RoleArn?: string;
580
580
  Tags?: Record<string, string>;
581
- SessionStatus?: SessionStatus | string;
581
+ SessionStatus?: SessionStatus;
582
582
  OpenedBy?: string;
583
583
  OpenDate?: Date;
584
584
  }
@@ -639,12 +639,12 @@ export interface Dataset {
639
639
  CreatedBy?: string;
640
640
  CreateDate?: Date;
641
641
  Name: string | undefined;
642
- Format?: InputFormat | string;
642
+ Format?: InputFormat;
643
643
  FormatOptions?: FormatOptions;
644
644
  Input: Input | undefined;
645
645
  LastModifiedDate?: Date;
646
646
  LastModifiedBy?: string;
647
- Source?: Source | string;
647
+ Source?: Source;
648
648
  PathOptions?: PathOptions;
649
649
  Tags?: Record<string, string>;
650
650
  ResourceArn?: string;
@@ -666,8 +666,8 @@ export interface JobRun {
666
666
  ExecutionTime?: number;
667
667
  JobName?: string;
668
668
  RunId?: string;
669
- State?: JobRunState | string;
670
- LogSubscription?: LogSubscription | string;
669
+ State?: JobRunState;
670
+ LogSubscription?: LogSubscription;
671
671
  LogGroupName?: string;
672
672
  Outputs?: Output[];
673
673
  DataCatalogOutputs?: DataCatalogOutput[];
@@ -694,12 +694,12 @@ export interface Job {
694
694
  CreateDate?: Date;
695
695
  DatasetName?: string;
696
696
  EncryptionKeyArn?: string;
697
- EncryptionMode?: EncryptionMode | string;
697
+ EncryptionMode?: EncryptionMode;
698
698
  Name: string | undefined;
699
- Type?: JobType | string;
699
+ Type?: JobType;
700
700
  LastModifiedBy?: string;
701
701
  LastModifiedDate?: Date;
702
- LogSubscription?: LogSubscription | string;
702
+ LogSubscription?: LogSubscription;
703
703
  MaxCapacity?: number;
704
704
  MaxRetries?: number;
705
705
  Outputs?: Output[];
@@ -837,7 +837,7 @@ export interface ViewFrame {
837
837
  HiddenColumns?: string[];
838
838
  StartRowIndex?: number;
839
839
  RowRange?: number;
840
- Analytics?: AnalyticsMode | string;
840
+ Analytics?: AnalyticsMode;
841
841
  }
842
842
  export interface SendProjectSessionActionRequest {
843
843
  Preview?: boolean;
@@ -885,7 +885,7 @@ export interface UntagResourceRequest {
885
885
  export interface UntagResourceResponse {}
886
886
  export interface UpdateDatasetRequest {
887
887
  Name: string | undefined;
888
- Format?: InputFormat | string;
888
+ Format?: InputFormat;
889
889
  FormatOptions?: FormatOptions;
890
890
  Input: Input | undefined;
891
891
  PathOptions?: PathOptions;
@@ -896,9 +896,9 @@ export interface UpdateDatasetResponse {
896
896
  export interface UpdateProfileJobRequest {
897
897
  Configuration?: ProfileConfiguration;
898
898
  EncryptionKeyArn?: string;
899
- EncryptionMode?: EncryptionMode | string;
899
+ EncryptionMode?: EncryptionMode;
900
900
  Name: string | undefined;
901
- LogSubscription?: LogSubscription | string;
901
+ LogSubscription?: LogSubscription;
902
902
  MaxCapacity?: number;
903
903
  MaxRetries?: number;
904
904
  OutputLocation: S3Location | undefined;
@@ -929,9 +929,9 @@ export interface UpdateRecipeResponse {
929
929
  }
930
930
  export interface UpdateRecipeJobRequest {
931
931
  EncryptionKeyArn?: string;
932
- EncryptionMode?: EncryptionMode | string;
932
+ EncryptionMode?: EncryptionMode;
933
933
  Name: string | undefined;
934
- LogSubscription?: LogSubscription | string;
934
+ LogSubscription?: LogSubscription;
935
935
  MaxCapacity?: number;
936
936
  MaxRetries?: number;
937
937
  Outputs?: Output[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-databrew",
3
3
  "description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"