@aws-sdk/client-databrew 3.300.0 → 3.301.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 (45) hide show
  1. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -2
  2. package/dist-types/commands/CreateDatasetCommand.d.ts +20 -20
  3. package/dist-types/commands/CreateProfileJobCommand.d.ts +20 -20
  4. package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateRecipeCommand.d.ts +8 -8
  6. package/dist-types/commands/CreateRecipeJobCommand.d.ts +15 -15
  7. package/dist-types/commands/CreateRulesetCommand.d.ts +8 -8
  8. package/dist-types/commands/CreateScheduleCommand.d.ts +3 -3
  9. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteRulesetCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeRulesetCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  22. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListRulesetsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  31. package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
  32. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +8 -8
  33. package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
  34. package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
  35. package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
  36. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  37. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateDatasetCommand.d.ts +19 -19
  39. package/dist-types/commands/UpdateProfileJobCommand.d.ts +19 -19
  40. package/dist-types/commands/UpdateProjectCommand.d.ts +2 -2
  41. package/dist-types/commands/UpdateRecipeCommand.d.ts +7 -7
  42. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +13 -13
  43. package/dist-types/commands/UpdateRulesetCommand.d.ts +7 -7
  44. package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -2
  45. package/package.json +3 -3
@@ -64,9 +64,9 @@ export interface BatchDeleteRecipeVersionCommandOutput extends BatchDeleteRecipe
64
64
  * import { DataBrewClient, BatchDeleteRecipeVersionCommand } from "@aws-sdk/client-databrew"; // ES Modules import
65
65
  * // const { DataBrewClient, BatchDeleteRecipeVersionCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
66
66
  * const client = new DataBrewClient(config);
67
- * const input = {
67
+ * const input = { // BatchDeleteRecipeVersionRequest
68
68
  * Name: "STRING_VALUE", // required
69
- * RecipeVersions: [ // required
69
+ * RecipeVersions: [ // RecipeVersionList // required
70
70
  * "STRING_VALUE",
71
71
  * ],
72
72
  * };
@@ -26,34 +26,34 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
26
26
  * import { DataBrewClient, CreateDatasetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, CreateDatasetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // CreateDatasetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
32
- * FormatOptions: {
33
- * Json: {
32
+ * FormatOptions: { // FormatOptions
33
+ * Json: { // JsonOptions
34
34
  * MultiLine: true || false,
35
35
  * },
36
- * Excel: {
37
- * SheetNames: [
36
+ * Excel: { // ExcelOptions
37
+ * SheetNames: [ // SheetNameList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * SheetIndexes: [
40
+ * SheetIndexes: [ // SheetIndexList
41
41
  * Number("int"),
42
42
  * ],
43
43
  * HeaderRow: true || false,
44
44
  * },
45
- * Csv: {
45
+ * Csv: { // CsvOptions
46
46
  * Delimiter: "STRING_VALUE",
47
47
  * HeaderRow: true || false,
48
48
  * },
49
49
  * },
50
- * Input: {
51
- * S3InputDefinition: {
50
+ * Input: { // Input
51
+ * S3InputDefinition: { // S3Location
52
52
  * Bucket: "STRING_VALUE", // required
53
53
  * Key: "STRING_VALUE",
54
54
  * BucketOwner: "STRING_VALUE",
55
55
  * },
56
- * DataCatalogInputDefinition: {
56
+ * DataCatalogInputDefinition: { // DataCatalogInputDefinition
57
57
  * CatalogId: "STRING_VALUE",
58
58
  * DatabaseName: "STRING_VALUE", // required
59
59
  * TableName: "STRING_VALUE", // required
@@ -63,7 +63,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
63
63
  * BucketOwner: "STRING_VALUE",
64
64
  * },
65
65
  * },
66
- * DatabaseInputDefinition: {
66
+ * DatabaseInputDefinition: { // DatabaseInputDefinition
67
67
  * GlueConnectionName: "STRING_VALUE", // required
68
68
  * DatabaseTableName: "STRING_VALUE",
69
69
  * TempDirectory: {
@@ -73,27 +73,27 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
73
73
  * },
74
74
  * QueryString: "STRING_VALUE",
75
75
  * },
76
- * Metadata: {
76
+ * Metadata: { // Metadata
77
77
  * SourceArn: "STRING_VALUE",
78
78
  * },
79
79
  * },
80
- * PathOptions: {
81
- * LastModifiedDateCondition: {
80
+ * PathOptions: { // PathOptions
81
+ * LastModifiedDateCondition: { // FilterExpression
82
82
  * Expression: "STRING_VALUE", // required
83
- * ValuesMap: { // required
83
+ * ValuesMap: { // ValuesMap // required
84
84
  * "<keys>": "STRING_VALUE",
85
85
  * },
86
86
  * },
87
- * FilesLimit: {
87
+ * FilesLimit: { // FilesLimit
88
88
  * MaxFiles: Number("int"), // required
89
89
  * OrderedBy: "LAST_MODIFIED_DATE",
90
90
  * Order: "DESCENDING" || "ASCENDING",
91
91
  * },
92
- * Parameters: {
93
- * "<keys>": {
92
+ * Parameters: { // PathParametersMap
93
+ * "<keys>": { // DatasetParameter
94
94
  * Name: "STRING_VALUE", // required
95
95
  * Type: "Datetime" || "Number" || "String", // required
96
- * DatetimeOptions: {
96
+ * DatetimeOptions: { // DatetimeOptions
97
97
  * Format: "STRING_VALUE", // required
98
98
  * TimezoneOffset: "STRING_VALUE",
99
99
  * LocaleCode: "STRING_VALUE",
@@ -108,7 +108,7 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
108
108
  * },
109
109
  * },
110
110
  * },
111
- * Tags: {
111
+ * Tags: { // TagMap
112
112
  * "<keys>": "STRING_VALUE",
113
113
  * },
114
114
  * };
@@ -26,7 +26,7 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
26
26
  * import { DataBrewClient, CreateProfileJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, CreateProfileJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // CreateProfileJobRequest
30
30
  * DatasetName: "STRING_VALUE", // required
31
31
  * EncryptionKeyArn: "STRING_VALUE",
32
32
  * EncryptionMode: "SSE-KMS" || "SSE-S3",
@@ -34,33 +34,33 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
34
34
  * LogSubscription: "ENABLE" || "DISABLE",
35
35
  * MaxCapacity: Number("int"),
36
36
  * MaxRetries: Number("int"),
37
- * OutputLocation: {
37
+ * OutputLocation: { // S3Location
38
38
  * Bucket: "STRING_VALUE", // required
39
39
  * Key: "STRING_VALUE",
40
40
  * BucketOwner: "STRING_VALUE",
41
41
  * },
42
- * Configuration: {
43
- * DatasetStatisticsConfiguration: {
44
- * IncludedStatistics: [
42
+ * Configuration: { // ProfileConfiguration
43
+ * DatasetStatisticsConfiguration: { // StatisticsConfiguration
44
+ * IncludedStatistics: [ // StatisticList
45
45
  * "STRING_VALUE",
46
46
  * ],
47
- * Overrides: [
48
- * {
47
+ * Overrides: [ // StatisticOverrideList
48
+ * { // StatisticOverride
49
49
  * Statistic: "STRING_VALUE", // required
50
- * Parameters: { // required
50
+ * Parameters: { // ParameterMap // required
51
51
  * "<keys>": "STRING_VALUE",
52
52
  * },
53
53
  * },
54
54
  * ],
55
55
  * },
56
- * ProfileColumns: [
57
- * {
56
+ * ProfileColumns: [ // ColumnSelectorList
57
+ * { // ColumnSelector
58
58
  * Regex: "STRING_VALUE",
59
59
  * Name: "STRING_VALUE",
60
60
  * },
61
61
  * ],
62
- * ColumnStatisticsConfigurations: [
63
- * {
62
+ * ColumnStatisticsConfigurations: [ // ColumnStatisticsConfigurationList
63
+ * { // ColumnStatisticsConfiguration
64
64
  * Selectors: [
65
65
  * {
66
66
  * Regex: "STRING_VALUE",
@@ -82,12 +82,12 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
82
82
  * },
83
83
  * },
84
84
  * ],
85
- * EntityDetectorConfiguration: {
86
- * EntityTypes: [ // required
85
+ * EntityDetectorConfiguration: { // EntityDetectorConfiguration
86
+ * EntityTypes: [ // EntityTypeList // required
87
87
  * "STRING_VALUE",
88
88
  * ],
89
- * AllowedStatistics: [
90
- * {
89
+ * AllowedStatistics: [ // AllowedStatisticList
90
+ * { // AllowedStatistics
91
91
  * Statistics: [ // required
92
92
  * "STRING_VALUE",
93
93
  * ],
@@ -95,18 +95,18 @@ export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse,
95
95
  * ],
96
96
  * },
97
97
  * },
98
- * ValidationConfigurations: [
99
- * {
98
+ * ValidationConfigurations: [ // ValidationConfigurationList
99
+ * { // ValidationConfiguration
100
100
  * RulesetArn: "STRING_VALUE", // required
101
101
  * ValidationMode: "CHECK_ALL",
102
102
  * },
103
103
  * ],
104
104
  * RoleArn: "STRING_VALUE", // required
105
- * Tags: {
105
+ * Tags: { // TagMap
106
106
  * "<keys>": "STRING_VALUE",
107
107
  * },
108
108
  * Timeout: Number("int"),
109
- * JobSample: {
109
+ * JobSample: { // JobSample
110
110
  * Mode: "FULL_DATASET" || "CUSTOM_ROWS",
111
111
  * Size: Number("long"),
112
112
  * },
@@ -26,16 +26,16 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
26
26
  * import { DataBrewClient, CreateProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, CreateProjectCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // CreateProjectRequest
30
30
  * DatasetName: "STRING_VALUE", // required
31
31
  * Name: "STRING_VALUE", // required
32
32
  * RecipeName: "STRING_VALUE", // required
33
- * Sample: {
33
+ * Sample: { // Sample
34
34
  * Size: Number("int"),
35
35
  * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
36
36
  * },
37
37
  * RoleArn: "STRING_VALUE", // required
38
- * Tags: {
38
+ * Tags: { // TagMap
39
39
  * "<keys>": "STRING_VALUE",
40
40
  * },
41
41
  * };
@@ -26,19 +26,19 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad
26
26
  * import { DataBrewClient, CreateRecipeCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, CreateRecipeCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // CreateRecipeRequest
30
30
  * Description: "STRING_VALUE",
31
31
  * Name: "STRING_VALUE", // required
32
- * Steps: [ // required
33
- * {
34
- * Action: {
32
+ * Steps: [ // RecipeStepList // required
33
+ * { // RecipeStep
34
+ * Action: { // RecipeAction
35
35
  * Operation: "STRING_VALUE", // required
36
- * Parameters: {
36
+ * Parameters: { // ParameterMap
37
37
  * "<keys>": "STRING_VALUE",
38
38
  * },
39
39
  * },
40
- * ConditionExpressions: [
41
- * {
40
+ * ConditionExpressions: [ // ConditionExpressionList
41
+ * { // ConditionExpression
42
42
  * Condition: "STRING_VALUE", // required
43
43
  * Value: "STRING_VALUE",
44
44
  * TargetColumn: "STRING_VALUE", // required
@@ -46,7 +46,7 @@ export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __Metad
46
46
  * ],
47
47
  * },
48
48
  * ],
49
- * Tags: {
49
+ * Tags: { // TagMap
50
50
  * "<keys>": "STRING_VALUE",
51
51
  * },
52
52
  * };
@@ -26,7 +26,7 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
26
26
  * import { DataBrewClient, CreateRecipeJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, CreateRecipeJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // CreateRecipeJobRequest
30
30
  * DatasetName: "STRING_VALUE",
31
31
  * EncryptionKeyArn: "STRING_VALUE",
32
32
  * EncryptionMode: "SSE-KMS" || "SSE-S3",
@@ -34,40 +34,40 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
34
34
  * LogSubscription: "ENABLE" || "DISABLE",
35
35
  * MaxCapacity: Number("int"),
36
36
  * MaxRetries: Number("int"),
37
- * Outputs: [
38
- * {
37
+ * Outputs: [ // OutputList
38
+ * { // Output
39
39
  * CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
40
40
  * Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
41
- * PartitionColumns: [
41
+ * PartitionColumns: [ // ColumnNameList
42
42
  * "STRING_VALUE",
43
43
  * ],
44
- * Location: {
44
+ * Location: { // S3Location
45
45
  * Bucket: "STRING_VALUE", // required
46
46
  * Key: "STRING_VALUE",
47
47
  * BucketOwner: "STRING_VALUE",
48
48
  * },
49
49
  * Overwrite: true || false,
50
- * FormatOptions: {
51
- * Csv: {
50
+ * FormatOptions: { // OutputFormatOptions
51
+ * Csv: { // CsvOutputOptions
52
52
  * Delimiter: "STRING_VALUE",
53
53
  * },
54
54
  * },
55
55
  * MaxOutputFiles: Number("int"),
56
56
  * },
57
57
  * ],
58
- * DataCatalogOutputs: [
59
- * {
58
+ * DataCatalogOutputs: [ // DataCatalogOutputList
59
+ * { // DataCatalogOutput
60
60
  * CatalogId: "STRING_VALUE",
61
61
  * DatabaseName: "STRING_VALUE", // required
62
62
  * TableName: "STRING_VALUE", // required
63
- * S3Options: {
63
+ * S3Options: { // S3TableOutputOptions
64
64
  * Location: {
65
65
  * Bucket: "STRING_VALUE", // required
66
66
  * Key: "STRING_VALUE",
67
67
  * BucketOwner: "STRING_VALUE",
68
68
  * },
69
69
  * },
70
- * DatabaseOptions: {
70
+ * DatabaseOptions: { // DatabaseTableOutputOptions
71
71
  * TempDirectory: {
72
72
  * Bucket: "STRING_VALUE", // required
73
73
  * Key: "STRING_VALUE",
@@ -78,8 +78,8 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
78
78
  * Overwrite: true || false,
79
79
  * },
80
80
  * ],
81
- * DatabaseOutputs: [
82
- * {
81
+ * DatabaseOutputs: [ // DatabaseOutputList
82
+ * { // DatabaseOutput
83
83
  * GlueConnectionName: "STRING_VALUE", // required
84
84
  * DatabaseOptions: {
85
85
  * TempDirectory: {
@@ -93,12 +93,12 @@ export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, _
93
93
  * },
94
94
  * ],
95
95
  * ProjectName: "STRING_VALUE",
96
- * RecipeReference: {
96
+ * RecipeReference: { // RecipeReference
97
97
  * Name: "STRING_VALUE", // required
98
98
  * RecipeVersion: "STRING_VALUE",
99
99
  * },
100
100
  * RoleArn: "STRING_VALUE", // required
101
- * Tags: {
101
+ * Tags: { // TagMap
102
102
  * "<keys>": "STRING_VALUE",
103
103
  * },
104
104
  * Timeout: Number("int"),
@@ -27,32 +27,32 @@ export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __Met
27
27
  * import { DataBrewClient, CreateRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, CreateRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // CreateRulesetRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * Description: "STRING_VALUE",
33
33
  * TargetArn: "STRING_VALUE", // required
34
- * Rules: [ // required
35
- * {
34
+ * Rules: [ // RuleList // required
35
+ * { // Rule
36
36
  * Name: "STRING_VALUE", // required
37
37
  * Disabled: true || false,
38
38
  * CheckExpression: "STRING_VALUE", // required
39
- * SubstitutionMap: {
39
+ * SubstitutionMap: { // ValuesMap
40
40
  * "<keys>": "STRING_VALUE",
41
41
  * },
42
- * Threshold: {
42
+ * Threshold: { // Threshold
43
43
  * Value: Number("double"), // required
44
44
  * Type: "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN",
45
45
  * Unit: "COUNT" || "PERCENTAGE",
46
46
  * },
47
- * ColumnSelectors: [
48
- * {
47
+ * ColumnSelectors: [ // ColumnSelectorList
48
+ * { // ColumnSelector
49
49
  * Regex: "STRING_VALUE",
50
50
  * Name: "STRING_VALUE",
51
51
  * },
52
52
  * ],
53
53
  * },
54
54
  * ],
55
- * Tags: {
55
+ * Tags: { // TagMap
56
56
  * "<keys>": "STRING_VALUE",
57
57
  * },
58
58
  * };
@@ -27,12 +27,12 @@ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __M
27
27
  * import { DataBrewClient, CreateScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, CreateScheduleCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
31
- * JobNames: [
30
+ * const input = { // CreateScheduleRequest
31
+ * JobNames: [ // JobNameList
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * CronExpression: "STRING_VALUE", // required
35
- * Tags: {
35
+ * Tags: { // TagMap
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * Name: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
26
26
  * import { DataBrewClient, DeleteDatasetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteDatasetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteDatasetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteDatasetCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
26
26
  * import { DataBrewClient, DeleteJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteJobRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteJobCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
26
26
  * import { DataBrewClient, DeleteProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteProjectCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteProjectRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteProjectCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteRecipeVersionCommandOutput extends DeleteRecipeVersionRes
26
26
  * import { DataBrewClient, DeleteRecipeVersionCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteRecipeVersionCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteRecipeVersionRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * RecipeVersion: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __Met
26
26
  * import { DataBrewClient, DeleteRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteRulesetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteRulesetCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteScheduleCommandOutput extends DeleteScheduleResponse, __M
26
26
  * import { DataBrewClient, DeleteScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DeleteScheduleCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DeleteScheduleRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteScheduleCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
26
26
  * import { DataBrewClient, DescribeDatasetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeDatasetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeDatasetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeDatasetCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeJobCommandOutput extends DescribeJobResponse, __Metadat
26
26
  * import { DataBrewClient, DescribeJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeJobRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeJobCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
26
26
  * import { DataBrewClient, DescribeJobRunCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeJobRunCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeJobRunRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * RunId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, _
26
26
  * import { DataBrewClient, DescribeProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeProjectCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeProjectRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeProjectCommand(input);
@@ -27,7 +27,7 @@ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __M
27
27
  * import { DataBrewClient, DescribeRecipeCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, DescribeRecipeCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // DescribeRecipeRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * RecipeVersion: "STRING_VALUE",
33
33
  * };
@@ -26,7 +26,7 @@ export interface DescribeRulesetCommandOutput extends DescribeRulesetResponse, _
26
26
  * import { DataBrewClient, DescribeRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeRulesetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeRulesetCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
26
26
  * import { DataBrewClient, DescribeScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, DescribeScheduleCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // DescribeScheduleRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeScheduleCommand(input);
@@ -26,7 +26,7 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
26
26
  * import { DataBrewClient, ListDatasetsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListDatasetsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListDatasetsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
26
26
  * import { DataBrewClient, ListJobRunsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListJobRunsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListJobRunsRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
26
26
  * import { DataBrewClient, ListJobsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListJobsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListJobsRequest
30
30
  * DatasetName: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
26
26
  * import { DataBrewClient, ListProjectsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListProjectsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListProjectsRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * };
@@ -27,7 +27,7 @@ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsRespo
27
27
  * import { DataBrewClient, ListRecipeVersionsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, ListRecipeVersionsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // ListRecipeVersionsRequest
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
33
33
  * Name: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListRecipesCommandOutput extends ListRecipesResponse, __Metadat
26
26
  * import { DataBrewClient, ListRecipesCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListRecipesCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListRecipesRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * RecipeVersion: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface ListRulesetsCommandOutput extends ListRulesetsResponse, __Metad
27
27
  * import { DataBrewClient, ListRulesetsCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, ListRulesetsCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // ListRulesetsRequest
31
31
  * TargetArn: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
33
33
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __Met
26
26
  * import { DataBrewClient, ListSchedulesCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListSchedulesCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListSchedulesRequest
30
30
  * JobName: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { DataBrewClient, ListTagsForResourceCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, ListTagsForResourceCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface PublishRecipeCommandOutput extends PublishRecipeResponse, __Met
26
26
  * import { DataBrewClient, PublishRecipeCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, PublishRecipeCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // PublishRecipeRequest
30
30
  * Description: "STRING_VALUE",
31
31
  * Name: "STRING_VALUE", // required
32
32
  * };
@@ -27,18 +27,18 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
27
27
  * import { DataBrewClient, SendProjectSessionActionCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, SendProjectSessionActionCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // SendProjectSessionActionRequest
31
31
  * Preview: true || false,
32
32
  * Name: "STRING_VALUE", // required
33
- * RecipeStep: {
34
- * Action: {
33
+ * RecipeStep: { // RecipeStep
34
+ * Action: { // RecipeAction
35
35
  * Operation: "STRING_VALUE", // required
36
- * Parameters: {
36
+ * Parameters: { // ParameterMap
37
37
  * "<keys>": "STRING_VALUE",
38
38
  * },
39
39
  * },
40
- * ConditionExpressions: [
41
- * {
40
+ * ConditionExpressions: [ // ConditionExpressionList
41
+ * { // ConditionExpression
42
42
  * Condition: "STRING_VALUE", // required
43
43
  * Value: "STRING_VALUE",
44
44
  * TargetColumn: "STRING_VALUE", // required
@@ -47,10 +47,10 @@ export interface SendProjectSessionActionCommandOutput extends SendProjectSessio
47
47
  * },
48
48
  * StepIndex: Number("int"),
49
49
  * ClientSessionId: "STRING_VALUE",
50
- * ViewFrame: {
50
+ * ViewFrame: { // ViewFrame
51
51
  * StartColumnIndex: Number("int"), // required
52
52
  * ColumnRange: Number("int"),
53
- * HiddenColumns: [
53
+ * HiddenColumns: [ // HiddenColumnList
54
54
  * "STRING_VALUE",
55
55
  * ],
56
56
  * StartRowIndex: Number("int"),
@@ -26,7 +26,7 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
26
26
  * import { DataBrewClient, StartJobRunCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, StartJobRunCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // StartJobRunRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StartJobRunCommand(input);
@@ -27,7 +27,7 @@ export interface StartProjectSessionCommandOutput extends StartProjectSessionRes
27
27
  * import { DataBrewClient, StartProjectSessionCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, StartProjectSessionCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // StartProjectSessionRequest
31
31
  * Name: "STRING_VALUE", // required
32
32
  * AssumeControl: true || false,
33
33
  * };
@@ -26,7 +26,7 @@ export interface StopJobRunCommandOutput extends StopJobRunResponse, __MetadataB
26
26
  * import { DataBrewClient, StopJobRunCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, StopJobRunCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // StopJobRunRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * RunId: "STRING_VALUE", // required
32
32
  * };
@@ -27,9 +27,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
27
  * import { DataBrewClient, TagResourceCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, TagResourceCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // TagResourceRequest
31
31
  * ResourceArn: "STRING_VALUE", // required
32
- * Tags: { // required
32
+ * Tags: { // TagMap // required
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { DataBrewClient, UntagResourceCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UntagResourceCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,34 +26,34 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
26
26
  * import { DataBrewClient, UpdateDatasetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateDatasetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // UpdateDatasetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
32
- * FormatOptions: {
33
- * Json: {
32
+ * FormatOptions: { // FormatOptions
33
+ * Json: { // JsonOptions
34
34
  * MultiLine: true || false,
35
35
  * },
36
- * Excel: {
37
- * SheetNames: [
36
+ * Excel: { // ExcelOptions
37
+ * SheetNames: [ // SheetNameList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * SheetIndexes: [
40
+ * SheetIndexes: [ // SheetIndexList
41
41
  * Number("int"),
42
42
  * ],
43
43
  * HeaderRow: true || false,
44
44
  * },
45
- * Csv: {
45
+ * Csv: { // CsvOptions
46
46
  * Delimiter: "STRING_VALUE",
47
47
  * HeaderRow: true || false,
48
48
  * },
49
49
  * },
50
- * Input: {
51
- * S3InputDefinition: {
50
+ * Input: { // Input
51
+ * S3InputDefinition: { // S3Location
52
52
  * Bucket: "STRING_VALUE", // required
53
53
  * Key: "STRING_VALUE",
54
54
  * BucketOwner: "STRING_VALUE",
55
55
  * },
56
- * DataCatalogInputDefinition: {
56
+ * DataCatalogInputDefinition: { // DataCatalogInputDefinition
57
57
  * CatalogId: "STRING_VALUE",
58
58
  * DatabaseName: "STRING_VALUE", // required
59
59
  * TableName: "STRING_VALUE", // required
@@ -63,7 +63,7 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
63
63
  * BucketOwner: "STRING_VALUE",
64
64
  * },
65
65
  * },
66
- * DatabaseInputDefinition: {
66
+ * DatabaseInputDefinition: { // DatabaseInputDefinition
67
67
  * GlueConnectionName: "STRING_VALUE", // required
68
68
  * DatabaseTableName: "STRING_VALUE",
69
69
  * TempDirectory: {
@@ -73,27 +73,27 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
73
73
  * },
74
74
  * QueryString: "STRING_VALUE",
75
75
  * },
76
- * Metadata: {
76
+ * Metadata: { // Metadata
77
77
  * SourceArn: "STRING_VALUE",
78
78
  * },
79
79
  * },
80
- * PathOptions: {
81
- * LastModifiedDateCondition: {
80
+ * PathOptions: { // PathOptions
81
+ * LastModifiedDateCondition: { // FilterExpression
82
82
  * Expression: "STRING_VALUE", // required
83
- * ValuesMap: { // required
83
+ * ValuesMap: { // ValuesMap // required
84
84
  * "<keys>": "STRING_VALUE",
85
85
  * },
86
86
  * },
87
- * FilesLimit: {
87
+ * FilesLimit: { // FilesLimit
88
88
  * MaxFiles: Number("int"), // required
89
89
  * OrderedBy: "LAST_MODIFIED_DATE",
90
90
  * Order: "DESCENDING" || "ASCENDING",
91
91
  * },
92
- * Parameters: {
93
- * "<keys>": {
92
+ * Parameters: { // PathParametersMap
93
+ * "<keys>": { // DatasetParameter
94
94
  * Name: "STRING_VALUE", // required
95
95
  * Type: "Datetime" || "Number" || "String", // required
96
- * DatetimeOptions: {
96
+ * DatetimeOptions: { // DatetimeOptions
97
97
  * Format: "STRING_VALUE", // required
98
98
  * TimezoneOffset: "STRING_VALUE",
99
99
  * LocaleCode: "STRING_VALUE",
@@ -26,29 +26,29 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
26
26
  * import { DataBrewClient, UpdateProfileJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateProfileJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
30
- * Configuration: {
31
- * DatasetStatisticsConfiguration: {
32
- * IncludedStatistics: [
29
+ * const input = { // UpdateProfileJobRequest
30
+ * Configuration: { // ProfileConfiguration
31
+ * DatasetStatisticsConfiguration: { // StatisticsConfiguration
32
+ * IncludedStatistics: [ // StatisticList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
- * Overrides: [
36
- * {
35
+ * Overrides: [ // StatisticOverrideList
36
+ * { // StatisticOverride
37
37
  * Statistic: "STRING_VALUE", // required
38
- * Parameters: { // required
38
+ * Parameters: { // ParameterMap // required
39
39
  * "<keys>": "STRING_VALUE",
40
40
  * },
41
41
  * },
42
42
  * ],
43
43
  * },
44
- * ProfileColumns: [
45
- * {
44
+ * ProfileColumns: [ // ColumnSelectorList
45
+ * { // ColumnSelector
46
46
  * Regex: "STRING_VALUE",
47
47
  * Name: "STRING_VALUE",
48
48
  * },
49
49
  * ],
50
- * ColumnStatisticsConfigurations: [
51
- * {
50
+ * ColumnStatisticsConfigurations: [ // ColumnStatisticsConfigurationList
51
+ * { // ColumnStatisticsConfiguration
52
52
  * Selectors: [
53
53
  * {
54
54
  * Regex: "STRING_VALUE",
@@ -70,12 +70,12 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
70
70
  * },
71
71
  * },
72
72
  * ],
73
- * EntityDetectorConfiguration: {
74
- * EntityTypes: [ // required
73
+ * EntityDetectorConfiguration: { // EntityDetectorConfiguration
74
+ * EntityTypes: [ // EntityTypeList // required
75
75
  * "STRING_VALUE",
76
76
  * ],
77
- * AllowedStatistics: [
78
- * {
77
+ * AllowedStatistics: [ // AllowedStatisticList
78
+ * { // AllowedStatistics
79
79
  * Statistics: [ // required
80
80
  * "STRING_VALUE",
81
81
  * ],
@@ -89,20 +89,20 @@ export interface UpdateProfileJobCommandOutput extends UpdateProfileJobResponse,
89
89
  * LogSubscription: "ENABLE" || "DISABLE",
90
90
  * MaxCapacity: Number("int"),
91
91
  * MaxRetries: Number("int"),
92
- * OutputLocation: {
92
+ * OutputLocation: { // S3Location
93
93
  * Bucket: "STRING_VALUE", // required
94
94
  * Key: "STRING_VALUE",
95
95
  * BucketOwner: "STRING_VALUE",
96
96
  * },
97
- * ValidationConfigurations: [
98
- * {
97
+ * ValidationConfigurations: [ // ValidationConfigurationList
98
+ * { // ValidationConfiguration
99
99
  * RulesetArn: "STRING_VALUE", // required
100
100
  * ValidationMode: "CHECK_ALL",
101
101
  * },
102
102
  * ],
103
103
  * RoleArn: "STRING_VALUE", // required
104
104
  * Timeout: Number("int"),
105
- * JobSample: {
105
+ * JobSample: { // JobSample
106
106
  * Mode: "FULL_DATASET" || "CUSTOM_ROWS",
107
107
  * Size: Number("long"),
108
108
  * },
@@ -26,8 +26,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __Met
26
26
  * import { DataBrewClient, UpdateProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateProjectCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
30
- * Sample: {
29
+ * const input = { // UpdateProjectRequest
30
+ * Sample: { // Sample
31
31
  * Size: Number("int"),
32
32
  * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
33
33
  * },
@@ -27,19 +27,19 @@ export interface UpdateRecipeCommandOutput extends UpdateRecipeResponse, __Metad
27
27
  * import { DataBrewClient, UpdateRecipeCommand } from "@aws-sdk/client-databrew"; // ES Modules import
28
28
  * // const { DataBrewClient, UpdateRecipeCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
29
29
  * const client = new DataBrewClient(config);
30
- * const input = {
30
+ * const input = { // UpdateRecipeRequest
31
31
  * Description: "STRING_VALUE",
32
32
  * Name: "STRING_VALUE", // required
33
- * Steps: [
34
- * {
35
- * Action: {
33
+ * Steps: [ // RecipeStepList
34
+ * { // RecipeStep
35
+ * Action: { // RecipeAction
36
36
  * Operation: "STRING_VALUE", // required
37
- * Parameters: {
37
+ * Parameters: { // ParameterMap
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
40
  * },
41
- * ConditionExpressions: [
42
- * {
41
+ * ConditionExpressions: [ // ConditionExpressionList
42
+ * { // ConditionExpression
43
43
  * Condition: "STRING_VALUE", // required
44
44
  * Value: "STRING_VALUE",
45
45
  * TargetColumn: "STRING_VALUE", // required
@@ -26,47 +26,47 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
26
26
  * import { DataBrewClient, UpdateRecipeJobCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateRecipeJobCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // UpdateRecipeJobRequest
30
30
  * EncryptionKeyArn: "STRING_VALUE",
31
31
  * EncryptionMode: "SSE-KMS" || "SSE-S3",
32
32
  * Name: "STRING_VALUE", // required
33
33
  * LogSubscription: "ENABLE" || "DISABLE",
34
34
  * MaxCapacity: Number("int"),
35
35
  * MaxRetries: Number("int"),
36
- * Outputs: [
37
- * {
36
+ * Outputs: [ // OutputList
37
+ * { // Output
38
38
  * CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
39
39
  * Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
40
- * PartitionColumns: [
40
+ * PartitionColumns: [ // ColumnNameList
41
41
  * "STRING_VALUE",
42
42
  * ],
43
- * Location: {
43
+ * Location: { // S3Location
44
44
  * Bucket: "STRING_VALUE", // required
45
45
  * Key: "STRING_VALUE",
46
46
  * BucketOwner: "STRING_VALUE",
47
47
  * },
48
48
  * Overwrite: true || false,
49
- * FormatOptions: {
50
- * Csv: {
49
+ * FormatOptions: { // OutputFormatOptions
50
+ * Csv: { // CsvOutputOptions
51
51
  * Delimiter: "STRING_VALUE",
52
52
  * },
53
53
  * },
54
54
  * MaxOutputFiles: Number("int"),
55
55
  * },
56
56
  * ],
57
- * DataCatalogOutputs: [
58
- * {
57
+ * DataCatalogOutputs: [ // DataCatalogOutputList
58
+ * { // DataCatalogOutput
59
59
  * CatalogId: "STRING_VALUE",
60
60
  * DatabaseName: "STRING_VALUE", // required
61
61
  * TableName: "STRING_VALUE", // required
62
- * S3Options: {
62
+ * S3Options: { // S3TableOutputOptions
63
63
  * Location: {
64
64
  * Bucket: "STRING_VALUE", // required
65
65
  * Key: "STRING_VALUE",
66
66
  * BucketOwner: "STRING_VALUE",
67
67
  * },
68
68
  * },
69
- * DatabaseOptions: {
69
+ * DatabaseOptions: { // DatabaseTableOutputOptions
70
70
  * TempDirectory: {
71
71
  * Bucket: "STRING_VALUE", // required
72
72
  * Key: "STRING_VALUE",
@@ -77,8 +77,8 @@ export interface UpdateRecipeJobCommandOutput extends UpdateRecipeJobResponse, _
77
77
  * Overwrite: true || false,
78
78
  * },
79
79
  * ],
80
- * DatabaseOutputs: [
81
- * {
80
+ * DatabaseOutputs: [ // DatabaseOutputList
81
+ * { // DatabaseOutput
82
82
  * GlueConnectionName: "STRING_VALUE", // required
83
83
  * DatabaseOptions: {
84
84
  * TempDirectory: {
@@ -26,24 +26,24 @@ export interface UpdateRulesetCommandOutput extends UpdateRulesetResponse, __Met
26
26
  * import { DataBrewClient, UpdateRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
29
+ * const input = { // UpdateRulesetRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
- * Rules: [ // required
33
- * {
32
+ * Rules: [ // RuleList // required
33
+ * { // Rule
34
34
  * Name: "STRING_VALUE", // required
35
35
  * Disabled: true || false,
36
36
  * CheckExpression: "STRING_VALUE", // required
37
- * SubstitutionMap: {
37
+ * SubstitutionMap: { // ValuesMap
38
38
  * "<keys>": "STRING_VALUE",
39
39
  * },
40
- * Threshold: {
40
+ * Threshold: { // Threshold
41
41
  * Value: Number("double"), // required
42
42
  * Type: "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN",
43
43
  * Unit: "COUNT" || "PERCENTAGE",
44
44
  * },
45
- * ColumnSelectors: [
46
- * {
45
+ * ColumnSelectors: [ // ColumnSelectorList
46
+ * { // ColumnSelector
47
47
  * Regex: "STRING_VALUE",
48
48
  * Name: "STRING_VALUE",
49
49
  * },
@@ -26,8 +26,8 @@ export interface UpdateScheduleCommandOutput extends UpdateScheduleResponse, __M
26
26
  * import { DataBrewClient, UpdateScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import
27
27
  * // const { DataBrewClient, UpdateScheduleCommand } = require("@aws-sdk/client-databrew"); // CommonJS import
28
28
  * const client = new DataBrewClient(config);
29
- * const input = {
30
- * JobNames: [
29
+ * const input = { // UpdateScheduleRequest
30
+ * JobNames: [ // JobNameList
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * CronExpression: "STRING_VALUE", // required
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.300.0",
4
+ "version": "3.301.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,9 +21,9 @@
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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",