@aws-sdk/client-databrew 3.299.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 +6 -0
  2. package/dist-types/commands/CreateDatasetCommand.d.ts +86 -0
  3. package/dist-types/commands/CreateProfileJobCommand.d.ts +85 -0
  4. package/dist-types/commands/CreateProjectCommand.d.ts +13 -0
  5. package/dist-types/commands/CreateRecipeCommand.d.ts +24 -0
  6. package/dist-types/commands/CreateRecipeJobCommand.d.ts +77 -0
  7. package/dist-types/commands/CreateRulesetCommand.d.ts +29 -0
  8. package/dist-types/commands/CreateScheduleCommand.d.ts +10 -0
  9. package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteJobCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteProjectCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteRulesetCommand.d.ts +3 -0
  14. package/dist-types/commands/DeleteScheduleCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeJobCommand.d.ts +3 -0
  17. package/dist-types/commands/DescribeJobRunCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeProjectCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeRecipeCommand.d.ts +4 -0
  20. package/dist-types/commands/DescribeRulesetCommand.d.ts +3 -0
  21. package/dist-types/commands/DescribeScheduleCommand.d.ts +3 -0
  22. package/dist-types/commands/ListDatasetsCommand.d.ts +4 -0
  23. package/dist-types/commands/ListJobRunsCommand.d.ts +5 -0
  24. package/dist-types/commands/ListJobsCommand.d.ts +6 -0
  25. package/dist-types/commands/ListProjectsCommand.d.ts +4 -0
  26. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +5 -0
  27. package/dist-types/commands/ListRecipesCommand.d.ts +5 -0
  28. package/dist-types/commands/ListRulesetsCommand.d.ts +5 -0
  29. package/dist-types/commands/ListSchedulesCommand.d.ts +5 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  31. package/dist-types/commands/PublishRecipeCommand.d.ts +4 -0
  32. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +31 -0
  33. package/dist-types/commands/StartJobRunCommand.d.ts +3 -0
  34. package/dist-types/commands/StartProjectSessionCommand.d.ts +4 -0
  35. package/dist-types/commands/StopJobRunCommand.d.ts +4 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  38. package/dist-types/commands/UpdateDatasetCommand.d.ts +83 -0
  39. package/dist-types/commands/UpdateProfileJobCommand.d.ts +81 -0
  40. package/dist-types/commands/UpdateProjectCommand.d.ts +8 -0
  41. package/dist-types/commands/UpdateRecipeCommand.d.ts +21 -0
  42. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +68 -0
  43. package/dist-types/commands/UpdateRulesetCommand.d.ts +25 -0
  44. package/dist-types/commands/UpdateScheduleCommand.d.ts +7 -0
  45. package/package.json +8 -8
@@ -64,6 +64,12 @@ 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 = { // BatchDeleteRecipeVersionRequest
68
+ * Name: "STRING_VALUE", // required
69
+ * RecipeVersions: [ // RecipeVersionList // required
70
+ * "STRING_VALUE",
71
+ * ],
72
+ * };
67
73
  * const command = new BatchDeleteRecipeVersionCommand(input);
68
74
  * const response = await client.send(command);
69
75
  * ```
@@ -26,6 +26,92 @@ 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 = { // CreateDatasetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
32
+ * FormatOptions: { // FormatOptions
33
+ * Json: { // JsonOptions
34
+ * MultiLine: true || false,
35
+ * },
36
+ * Excel: { // ExcelOptions
37
+ * SheetNames: [ // SheetNameList
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * SheetIndexes: [ // SheetIndexList
41
+ * Number("int"),
42
+ * ],
43
+ * HeaderRow: true || false,
44
+ * },
45
+ * Csv: { // CsvOptions
46
+ * Delimiter: "STRING_VALUE",
47
+ * HeaderRow: true || false,
48
+ * },
49
+ * },
50
+ * Input: { // Input
51
+ * S3InputDefinition: { // S3Location
52
+ * Bucket: "STRING_VALUE", // required
53
+ * Key: "STRING_VALUE",
54
+ * BucketOwner: "STRING_VALUE",
55
+ * },
56
+ * DataCatalogInputDefinition: { // DataCatalogInputDefinition
57
+ * CatalogId: "STRING_VALUE",
58
+ * DatabaseName: "STRING_VALUE", // required
59
+ * TableName: "STRING_VALUE", // required
60
+ * TempDirectory: {
61
+ * Bucket: "STRING_VALUE", // required
62
+ * Key: "STRING_VALUE",
63
+ * BucketOwner: "STRING_VALUE",
64
+ * },
65
+ * },
66
+ * DatabaseInputDefinition: { // DatabaseInputDefinition
67
+ * GlueConnectionName: "STRING_VALUE", // required
68
+ * DatabaseTableName: "STRING_VALUE",
69
+ * TempDirectory: {
70
+ * Bucket: "STRING_VALUE", // required
71
+ * Key: "STRING_VALUE",
72
+ * BucketOwner: "STRING_VALUE",
73
+ * },
74
+ * QueryString: "STRING_VALUE",
75
+ * },
76
+ * Metadata: { // Metadata
77
+ * SourceArn: "STRING_VALUE",
78
+ * },
79
+ * },
80
+ * PathOptions: { // PathOptions
81
+ * LastModifiedDateCondition: { // FilterExpression
82
+ * Expression: "STRING_VALUE", // required
83
+ * ValuesMap: { // ValuesMap // required
84
+ * "<keys>": "STRING_VALUE",
85
+ * },
86
+ * },
87
+ * FilesLimit: { // FilesLimit
88
+ * MaxFiles: Number("int"), // required
89
+ * OrderedBy: "LAST_MODIFIED_DATE",
90
+ * Order: "DESCENDING" || "ASCENDING",
91
+ * },
92
+ * Parameters: { // PathParametersMap
93
+ * "<keys>": { // DatasetParameter
94
+ * Name: "STRING_VALUE", // required
95
+ * Type: "Datetime" || "Number" || "String", // required
96
+ * DatetimeOptions: { // DatetimeOptions
97
+ * Format: "STRING_VALUE", // required
98
+ * TimezoneOffset: "STRING_VALUE",
99
+ * LocaleCode: "STRING_VALUE",
100
+ * },
101
+ * CreateColumn: true || false,
102
+ * Filter: {
103
+ * Expression: "STRING_VALUE", // required
104
+ * ValuesMap: { // required
105
+ * "<keys>": "STRING_VALUE",
106
+ * },
107
+ * },
108
+ * },
109
+ * },
110
+ * },
111
+ * Tags: { // TagMap
112
+ * "<keys>": "STRING_VALUE",
113
+ * },
114
+ * };
29
115
  * const command = new CreateDatasetCommand(input);
30
116
  * const response = await client.send(command);
31
117
  * ```
@@ -26,6 +26,91 @@ 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 = { // CreateProfileJobRequest
30
+ * DatasetName: "STRING_VALUE", // required
31
+ * EncryptionKeyArn: "STRING_VALUE",
32
+ * EncryptionMode: "SSE-KMS" || "SSE-S3",
33
+ * Name: "STRING_VALUE", // required
34
+ * LogSubscription: "ENABLE" || "DISABLE",
35
+ * MaxCapacity: Number("int"),
36
+ * MaxRetries: Number("int"),
37
+ * OutputLocation: { // S3Location
38
+ * Bucket: "STRING_VALUE", // required
39
+ * Key: "STRING_VALUE",
40
+ * BucketOwner: "STRING_VALUE",
41
+ * },
42
+ * Configuration: { // ProfileConfiguration
43
+ * DatasetStatisticsConfiguration: { // StatisticsConfiguration
44
+ * IncludedStatistics: [ // StatisticList
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * Overrides: [ // StatisticOverrideList
48
+ * { // StatisticOverride
49
+ * Statistic: "STRING_VALUE", // required
50
+ * Parameters: { // ParameterMap // required
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * },
54
+ * ],
55
+ * },
56
+ * ProfileColumns: [ // ColumnSelectorList
57
+ * { // ColumnSelector
58
+ * Regex: "STRING_VALUE",
59
+ * Name: "STRING_VALUE",
60
+ * },
61
+ * ],
62
+ * ColumnStatisticsConfigurations: [ // ColumnStatisticsConfigurationList
63
+ * { // ColumnStatisticsConfiguration
64
+ * Selectors: [
65
+ * {
66
+ * Regex: "STRING_VALUE",
67
+ * Name: "STRING_VALUE",
68
+ * },
69
+ * ],
70
+ * Statistics: {
71
+ * IncludedStatistics: [
72
+ * "STRING_VALUE",
73
+ * ],
74
+ * Overrides: [
75
+ * {
76
+ * Statistic: "STRING_VALUE", // required
77
+ * Parameters: { // required
78
+ * "<keys>": "STRING_VALUE",
79
+ * },
80
+ * },
81
+ * ],
82
+ * },
83
+ * },
84
+ * ],
85
+ * EntityDetectorConfiguration: { // EntityDetectorConfiguration
86
+ * EntityTypes: [ // EntityTypeList // required
87
+ * "STRING_VALUE",
88
+ * ],
89
+ * AllowedStatistics: [ // AllowedStatisticList
90
+ * { // AllowedStatistics
91
+ * Statistics: [ // required
92
+ * "STRING_VALUE",
93
+ * ],
94
+ * },
95
+ * ],
96
+ * },
97
+ * },
98
+ * ValidationConfigurations: [ // ValidationConfigurationList
99
+ * { // ValidationConfiguration
100
+ * RulesetArn: "STRING_VALUE", // required
101
+ * ValidationMode: "CHECK_ALL",
102
+ * },
103
+ * ],
104
+ * RoleArn: "STRING_VALUE", // required
105
+ * Tags: { // TagMap
106
+ * "<keys>": "STRING_VALUE",
107
+ * },
108
+ * Timeout: Number("int"),
109
+ * JobSample: { // JobSample
110
+ * Mode: "FULL_DATASET" || "CUSTOM_ROWS",
111
+ * Size: Number("long"),
112
+ * },
113
+ * };
29
114
  * const command = new CreateProfileJobCommand(input);
30
115
  * const response = await client.send(command);
31
116
  * ```
@@ -26,6 +26,19 @@ 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 = { // CreateProjectRequest
30
+ * DatasetName: "STRING_VALUE", // required
31
+ * Name: "STRING_VALUE", // required
32
+ * RecipeName: "STRING_VALUE", // required
33
+ * Sample: { // Sample
34
+ * Size: Number("int"),
35
+ * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
36
+ * },
37
+ * RoleArn: "STRING_VALUE", // required
38
+ * Tags: { // TagMap
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * };
29
42
  * const command = new CreateProjectCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,30 @@ 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 = { // CreateRecipeRequest
30
+ * Description: "STRING_VALUE",
31
+ * Name: "STRING_VALUE", // required
32
+ * Steps: [ // RecipeStepList // required
33
+ * { // RecipeStep
34
+ * Action: { // RecipeAction
35
+ * Operation: "STRING_VALUE", // required
36
+ * Parameters: { // ParameterMap
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * },
40
+ * ConditionExpressions: [ // ConditionExpressionList
41
+ * { // ConditionExpression
42
+ * Condition: "STRING_VALUE", // required
43
+ * Value: "STRING_VALUE",
44
+ * TargetColumn: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * },
48
+ * ],
49
+ * Tags: { // TagMap
50
+ * "<keys>": "STRING_VALUE",
51
+ * },
52
+ * };
29
53
  * const command = new CreateRecipeCommand(input);
30
54
  * const response = await client.send(command);
31
55
  * ```
@@ -26,6 +26,83 @@ 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 = { // CreateRecipeJobRequest
30
+ * DatasetName: "STRING_VALUE",
31
+ * EncryptionKeyArn: "STRING_VALUE",
32
+ * EncryptionMode: "SSE-KMS" || "SSE-S3",
33
+ * Name: "STRING_VALUE", // required
34
+ * LogSubscription: "ENABLE" || "DISABLE",
35
+ * MaxCapacity: Number("int"),
36
+ * MaxRetries: Number("int"),
37
+ * Outputs: [ // OutputList
38
+ * { // Output
39
+ * CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
40
+ * Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
41
+ * PartitionColumns: [ // ColumnNameList
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * Location: { // S3Location
45
+ * Bucket: "STRING_VALUE", // required
46
+ * Key: "STRING_VALUE",
47
+ * BucketOwner: "STRING_VALUE",
48
+ * },
49
+ * Overwrite: true || false,
50
+ * FormatOptions: { // OutputFormatOptions
51
+ * Csv: { // CsvOutputOptions
52
+ * Delimiter: "STRING_VALUE",
53
+ * },
54
+ * },
55
+ * MaxOutputFiles: Number("int"),
56
+ * },
57
+ * ],
58
+ * DataCatalogOutputs: [ // DataCatalogOutputList
59
+ * { // DataCatalogOutput
60
+ * CatalogId: "STRING_VALUE",
61
+ * DatabaseName: "STRING_VALUE", // required
62
+ * TableName: "STRING_VALUE", // required
63
+ * S3Options: { // S3TableOutputOptions
64
+ * Location: {
65
+ * Bucket: "STRING_VALUE", // required
66
+ * Key: "STRING_VALUE",
67
+ * BucketOwner: "STRING_VALUE",
68
+ * },
69
+ * },
70
+ * DatabaseOptions: { // DatabaseTableOutputOptions
71
+ * TempDirectory: {
72
+ * Bucket: "STRING_VALUE", // required
73
+ * Key: "STRING_VALUE",
74
+ * BucketOwner: "STRING_VALUE",
75
+ * },
76
+ * TableName: "STRING_VALUE", // required
77
+ * },
78
+ * Overwrite: true || false,
79
+ * },
80
+ * ],
81
+ * DatabaseOutputs: [ // DatabaseOutputList
82
+ * { // DatabaseOutput
83
+ * GlueConnectionName: "STRING_VALUE", // required
84
+ * DatabaseOptions: {
85
+ * TempDirectory: {
86
+ * Bucket: "STRING_VALUE", // required
87
+ * Key: "STRING_VALUE",
88
+ * BucketOwner: "STRING_VALUE",
89
+ * },
90
+ * TableName: "STRING_VALUE", // required
91
+ * },
92
+ * DatabaseOutputMode: "NEW_TABLE",
93
+ * },
94
+ * ],
95
+ * ProjectName: "STRING_VALUE",
96
+ * RecipeReference: { // RecipeReference
97
+ * Name: "STRING_VALUE", // required
98
+ * RecipeVersion: "STRING_VALUE",
99
+ * },
100
+ * RoleArn: "STRING_VALUE", // required
101
+ * Tags: { // TagMap
102
+ * "<keys>": "STRING_VALUE",
103
+ * },
104
+ * Timeout: Number("int"),
105
+ * };
29
106
  * const command = new CreateRecipeJobCommand(input);
30
107
  * const response = await client.send(command);
31
108
  * ```
@@ -27,6 +27,35 @@ 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 = { // CreateRulesetRequest
31
+ * Name: "STRING_VALUE", // required
32
+ * Description: "STRING_VALUE",
33
+ * TargetArn: "STRING_VALUE", // required
34
+ * Rules: [ // RuleList // required
35
+ * { // Rule
36
+ * Name: "STRING_VALUE", // required
37
+ * Disabled: true || false,
38
+ * CheckExpression: "STRING_VALUE", // required
39
+ * SubstitutionMap: { // ValuesMap
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * Threshold: { // Threshold
43
+ * Value: Number("double"), // required
44
+ * Type: "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN",
45
+ * Unit: "COUNT" || "PERCENTAGE",
46
+ * },
47
+ * ColumnSelectors: [ // ColumnSelectorList
48
+ * { // ColumnSelector
49
+ * Regex: "STRING_VALUE",
50
+ * Name: "STRING_VALUE",
51
+ * },
52
+ * ],
53
+ * },
54
+ * ],
55
+ * Tags: { // TagMap
56
+ * "<keys>": "STRING_VALUE",
57
+ * },
58
+ * };
30
59
  * const command = new CreateRulesetCommand(input);
31
60
  * const response = await client.send(command);
32
61
  * ```
@@ -27,6 +27,16 @@ 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 = { // CreateScheduleRequest
31
+ * JobNames: [ // JobNameList
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * CronExpression: "STRING_VALUE", // required
35
+ * Tags: { // TagMap
36
+ * "<keys>": "STRING_VALUE",
37
+ * },
38
+ * Name: "STRING_VALUE", // required
39
+ * };
30
40
  * const command = new CreateScheduleCommand(input);
31
41
  * const response = await client.send(command);
32
42
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteDatasetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteDatasetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteJobRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteProjectRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteProjectCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // DeleteRecipeVersionRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * RecipeVersion: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteRecipeVersionCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteRulesetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteRulesetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DeleteScheduleRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteScheduleCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeDatasetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeDatasetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeJobRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeJobCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // DescribeJobRunRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * RunId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeJobRunCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeProjectRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeProjectCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ 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 = { // DescribeRecipeRequest
31
+ * Name: "STRING_VALUE", // required
32
+ * RecipeVersion: "STRING_VALUE",
33
+ * };
30
34
  * const command = new DescribeRecipeCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeRulesetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeRulesetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeScheduleRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeScheduleCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // ListDatasetsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListDatasetsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListJobRunsRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListJobRunsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListJobsRequest
30
+ * DatasetName: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * ProjectName: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListJobsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ 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 = { // ListProjectsRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListProjectsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,11 @@ 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 = { // ListRecipeVersionsRequest
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * Name: "STRING_VALUE", // required
34
+ * };
30
35
  * const command = new ListRecipeVersionsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListRecipesRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * RecipeVersion: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListRecipesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -27,6 +27,11 @@ 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 = { // ListRulesetsRequest
31
+ * TargetArn: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
30
35
  * const command = new ListRulesetsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListSchedulesRequest
30
+ * JobName: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListSchedulesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // ListTagsForResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // PublishRecipeRequest
30
+ * Description: "STRING_VALUE",
31
+ * Name: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new PublishRecipeCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,37 @@ 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 = { // SendProjectSessionActionRequest
31
+ * Preview: true || false,
32
+ * Name: "STRING_VALUE", // required
33
+ * RecipeStep: { // RecipeStep
34
+ * Action: { // RecipeAction
35
+ * Operation: "STRING_VALUE", // required
36
+ * Parameters: { // ParameterMap
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * },
40
+ * ConditionExpressions: [ // ConditionExpressionList
41
+ * { // ConditionExpression
42
+ * Condition: "STRING_VALUE", // required
43
+ * Value: "STRING_VALUE",
44
+ * TargetColumn: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * },
48
+ * StepIndex: Number("int"),
49
+ * ClientSessionId: "STRING_VALUE",
50
+ * ViewFrame: { // ViewFrame
51
+ * StartColumnIndex: Number("int"), // required
52
+ * ColumnRange: Number("int"),
53
+ * HiddenColumns: [ // HiddenColumnList
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * StartRowIndex: Number("int"),
57
+ * RowRange: Number("int"),
58
+ * Analytics: "ENABLE" || "DISABLE",
59
+ * },
60
+ * };
30
61
  * const command = new SendProjectSessionActionCommand(input);
31
62
  * const response = await client.send(command);
32
63
  * ```
@@ -26,6 +26,9 @@ 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 = { // StartJobRunRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartJobRunCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ 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 = { // StartProjectSessionRequest
31
+ * Name: "STRING_VALUE", // required
32
+ * AssumeControl: true || false,
33
+ * };
30
34
  * const command = new StartProjectSessionCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,10 @@ 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 = { // StopJobRunRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * RunId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new StopJobRunCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,12 @@ 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 = { // TagResourceRequest
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * Tags: { // TagMap // required
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
35
+ * };
30
36
  * const command = new TagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,12 @@ 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 = { // UntagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,89 @@ 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 = { // UpdateDatasetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
32
+ * FormatOptions: { // FormatOptions
33
+ * Json: { // JsonOptions
34
+ * MultiLine: true || false,
35
+ * },
36
+ * Excel: { // ExcelOptions
37
+ * SheetNames: [ // SheetNameList
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * SheetIndexes: [ // SheetIndexList
41
+ * Number("int"),
42
+ * ],
43
+ * HeaderRow: true || false,
44
+ * },
45
+ * Csv: { // CsvOptions
46
+ * Delimiter: "STRING_VALUE",
47
+ * HeaderRow: true || false,
48
+ * },
49
+ * },
50
+ * Input: { // Input
51
+ * S3InputDefinition: { // S3Location
52
+ * Bucket: "STRING_VALUE", // required
53
+ * Key: "STRING_VALUE",
54
+ * BucketOwner: "STRING_VALUE",
55
+ * },
56
+ * DataCatalogInputDefinition: { // DataCatalogInputDefinition
57
+ * CatalogId: "STRING_VALUE",
58
+ * DatabaseName: "STRING_VALUE", // required
59
+ * TableName: "STRING_VALUE", // required
60
+ * TempDirectory: {
61
+ * Bucket: "STRING_VALUE", // required
62
+ * Key: "STRING_VALUE",
63
+ * BucketOwner: "STRING_VALUE",
64
+ * },
65
+ * },
66
+ * DatabaseInputDefinition: { // DatabaseInputDefinition
67
+ * GlueConnectionName: "STRING_VALUE", // required
68
+ * DatabaseTableName: "STRING_VALUE",
69
+ * TempDirectory: {
70
+ * Bucket: "STRING_VALUE", // required
71
+ * Key: "STRING_VALUE",
72
+ * BucketOwner: "STRING_VALUE",
73
+ * },
74
+ * QueryString: "STRING_VALUE",
75
+ * },
76
+ * Metadata: { // Metadata
77
+ * SourceArn: "STRING_VALUE",
78
+ * },
79
+ * },
80
+ * PathOptions: { // PathOptions
81
+ * LastModifiedDateCondition: { // FilterExpression
82
+ * Expression: "STRING_VALUE", // required
83
+ * ValuesMap: { // ValuesMap // required
84
+ * "<keys>": "STRING_VALUE",
85
+ * },
86
+ * },
87
+ * FilesLimit: { // FilesLimit
88
+ * MaxFiles: Number("int"), // required
89
+ * OrderedBy: "LAST_MODIFIED_DATE",
90
+ * Order: "DESCENDING" || "ASCENDING",
91
+ * },
92
+ * Parameters: { // PathParametersMap
93
+ * "<keys>": { // DatasetParameter
94
+ * Name: "STRING_VALUE", // required
95
+ * Type: "Datetime" || "Number" || "String", // required
96
+ * DatetimeOptions: { // DatetimeOptions
97
+ * Format: "STRING_VALUE", // required
98
+ * TimezoneOffset: "STRING_VALUE",
99
+ * LocaleCode: "STRING_VALUE",
100
+ * },
101
+ * CreateColumn: true || false,
102
+ * Filter: {
103
+ * Expression: "STRING_VALUE", // required
104
+ * ValuesMap: { // required
105
+ * "<keys>": "STRING_VALUE",
106
+ * },
107
+ * },
108
+ * },
109
+ * },
110
+ * },
111
+ * };
29
112
  * const command = new UpdateDatasetCommand(input);
30
113
  * const response = await client.send(command);
31
114
  * ```
@@ -26,6 +26,87 @@ 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 = { // UpdateProfileJobRequest
30
+ * Configuration: { // ProfileConfiguration
31
+ * DatasetStatisticsConfiguration: { // StatisticsConfiguration
32
+ * IncludedStatistics: [ // StatisticList
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * Overrides: [ // StatisticOverrideList
36
+ * { // StatisticOverride
37
+ * Statistic: "STRING_VALUE", // required
38
+ * Parameters: { // ParameterMap // required
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * },
42
+ * ],
43
+ * },
44
+ * ProfileColumns: [ // ColumnSelectorList
45
+ * { // ColumnSelector
46
+ * Regex: "STRING_VALUE",
47
+ * Name: "STRING_VALUE",
48
+ * },
49
+ * ],
50
+ * ColumnStatisticsConfigurations: [ // ColumnStatisticsConfigurationList
51
+ * { // ColumnStatisticsConfiguration
52
+ * Selectors: [
53
+ * {
54
+ * Regex: "STRING_VALUE",
55
+ * Name: "STRING_VALUE",
56
+ * },
57
+ * ],
58
+ * Statistics: {
59
+ * IncludedStatistics: [
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * Overrides: [
63
+ * {
64
+ * Statistic: "STRING_VALUE", // required
65
+ * Parameters: { // required
66
+ * "<keys>": "STRING_VALUE",
67
+ * },
68
+ * },
69
+ * ],
70
+ * },
71
+ * },
72
+ * ],
73
+ * EntityDetectorConfiguration: { // EntityDetectorConfiguration
74
+ * EntityTypes: [ // EntityTypeList // required
75
+ * "STRING_VALUE",
76
+ * ],
77
+ * AllowedStatistics: [ // AllowedStatisticList
78
+ * { // AllowedStatistics
79
+ * Statistics: [ // required
80
+ * "STRING_VALUE",
81
+ * ],
82
+ * },
83
+ * ],
84
+ * },
85
+ * },
86
+ * EncryptionKeyArn: "STRING_VALUE",
87
+ * EncryptionMode: "SSE-KMS" || "SSE-S3",
88
+ * Name: "STRING_VALUE", // required
89
+ * LogSubscription: "ENABLE" || "DISABLE",
90
+ * MaxCapacity: Number("int"),
91
+ * MaxRetries: Number("int"),
92
+ * OutputLocation: { // S3Location
93
+ * Bucket: "STRING_VALUE", // required
94
+ * Key: "STRING_VALUE",
95
+ * BucketOwner: "STRING_VALUE",
96
+ * },
97
+ * ValidationConfigurations: [ // ValidationConfigurationList
98
+ * { // ValidationConfiguration
99
+ * RulesetArn: "STRING_VALUE", // required
100
+ * ValidationMode: "CHECK_ALL",
101
+ * },
102
+ * ],
103
+ * RoleArn: "STRING_VALUE", // required
104
+ * Timeout: Number("int"),
105
+ * JobSample: { // JobSample
106
+ * Mode: "FULL_DATASET" || "CUSTOM_ROWS",
107
+ * Size: Number("long"),
108
+ * },
109
+ * };
29
110
  * const command = new UpdateProfileJobCommand(input);
30
111
  * const response = await client.send(command);
31
112
  * ```
@@ -26,6 +26,14 @@ 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 = { // UpdateProjectRequest
30
+ * Sample: { // Sample
31
+ * Size: Number("int"),
32
+ * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
33
+ * },
34
+ * RoleArn: "STRING_VALUE", // required
35
+ * Name: "STRING_VALUE", // required
36
+ * };
29
37
  * const command = new UpdateProjectCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -27,6 +27,27 @@ 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 = { // UpdateRecipeRequest
31
+ * Description: "STRING_VALUE",
32
+ * Name: "STRING_VALUE", // required
33
+ * Steps: [ // RecipeStepList
34
+ * { // RecipeStep
35
+ * Action: { // RecipeAction
36
+ * Operation: "STRING_VALUE", // required
37
+ * Parameters: { // ParameterMap
38
+ * "<keys>": "STRING_VALUE",
39
+ * },
40
+ * },
41
+ * ConditionExpressions: [ // ConditionExpressionList
42
+ * { // ConditionExpression
43
+ * Condition: "STRING_VALUE", // required
44
+ * Value: "STRING_VALUE",
45
+ * TargetColumn: "STRING_VALUE", // required
46
+ * },
47
+ * ],
48
+ * },
49
+ * ],
50
+ * };
30
51
  * const command = new UpdateRecipeCommand(input);
31
52
  * const response = await client.send(command);
32
53
  * ```
@@ -26,6 +26,74 @@ 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 = { // UpdateRecipeJobRequest
30
+ * EncryptionKeyArn: "STRING_VALUE",
31
+ * EncryptionMode: "SSE-KMS" || "SSE-S3",
32
+ * Name: "STRING_VALUE", // required
33
+ * LogSubscription: "ENABLE" || "DISABLE",
34
+ * MaxCapacity: Number("int"),
35
+ * MaxRetries: Number("int"),
36
+ * Outputs: [ // OutputList
37
+ * { // Output
38
+ * CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
39
+ * Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
40
+ * PartitionColumns: [ // ColumnNameList
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * Location: { // S3Location
44
+ * Bucket: "STRING_VALUE", // required
45
+ * Key: "STRING_VALUE",
46
+ * BucketOwner: "STRING_VALUE",
47
+ * },
48
+ * Overwrite: true || false,
49
+ * FormatOptions: { // OutputFormatOptions
50
+ * Csv: { // CsvOutputOptions
51
+ * Delimiter: "STRING_VALUE",
52
+ * },
53
+ * },
54
+ * MaxOutputFiles: Number("int"),
55
+ * },
56
+ * ],
57
+ * DataCatalogOutputs: [ // DataCatalogOutputList
58
+ * { // DataCatalogOutput
59
+ * CatalogId: "STRING_VALUE",
60
+ * DatabaseName: "STRING_VALUE", // required
61
+ * TableName: "STRING_VALUE", // required
62
+ * S3Options: { // S3TableOutputOptions
63
+ * Location: {
64
+ * Bucket: "STRING_VALUE", // required
65
+ * Key: "STRING_VALUE",
66
+ * BucketOwner: "STRING_VALUE",
67
+ * },
68
+ * },
69
+ * DatabaseOptions: { // DatabaseTableOutputOptions
70
+ * TempDirectory: {
71
+ * Bucket: "STRING_VALUE", // required
72
+ * Key: "STRING_VALUE",
73
+ * BucketOwner: "STRING_VALUE",
74
+ * },
75
+ * TableName: "STRING_VALUE", // required
76
+ * },
77
+ * Overwrite: true || false,
78
+ * },
79
+ * ],
80
+ * DatabaseOutputs: [ // DatabaseOutputList
81
+ * { // DatabaseOutput
82
+ * GlueConnectionName: "STRING_VALUE", // required
83
+ * DatabaseOptions: {
84
+ * TempDirectory: {
85
+ * Bucket: "STRING_VALUE", // required
86
+ * Key: "STRING_VALUE",
87
+ * BucketOwner: "STRING_VALUE",
88
+ * },
89
+ * TableName: "STRING_VALUE", // required
90
+ * },
91
+ * DatabaseOutputMode: "NEW_TABLE",
92
+ * },
93
+ * ],
94
+ * RoleArn: "STRING_VALUE", // required
95
+ * Timeout: Number("int"),
96
+ * };
29
97
  * const command = new UpdateRecipeJobCommand(input);
30
98
  * const response = await client.send(command);
31
99
  * ```
@@ -26,6 +26,31 @@ 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 = { // UpdateRulesetRequest
30
+ * Name: "STRING_VALUE", // required
31
+ * Description: "STRING_VALUE",
32
+ * Rules: [ // RuleList // required
33
+ * { // Rule
34
+ * Name: "STRING_VALUE", // required
35
+ * Disabled: true || false,
36
+ * CheckExpression: "STRING_VALUE", // required
37
+ * SubstitutionMap: { // ValuesMap
38
+ * "<keys>": "STRING_VALUE",
39
+ * },
40
+ * Threshold: { // Threshold
41
+ * Value: Number("double"), // required
42
+ * Type: "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN",
43
+ * Unit: "COUNT" || "PERCENTAGE",
44
+ * },
45
+ * ColumnSelectors: [ // ColumnSelectorList
46
+ * { // ColumnSelector
47
+ * Regex: "STRING_VALUE",
48
+ * Name: "STRING_VALUE",
49
+ * },
50
+ * ],
51
+ * },
52
+ * ],
53
+ * };
29
54
  * const command = new UpdateRulesetCommand(input);
30
55
  * const response = await client.send(command);
31
56
  * ```
@@ -26,6 +26,13 @@ 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 = { // UpdateScheduleRequest
30
+ * JobNames: [ // JobNameList
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * CronExpression: "STRING_VALUE", // required
34
+ * Name: "STRING_VALUE", // required
35
+ * };
29
36
  * const command = new UpdateScheduleCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
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.299.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },