@aws-sdk/client-databrew 3.300.0 → 3.303.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 (49) hide show
  1. package/dist-cjs/models/models_0.js +107 -126
  2. package/dist-es/models/models_0.js +107 -126
  3. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +20 -20
  5. package/dist-types/commands/CreateProfileJobCommand.d.ts +20 -20
  6. package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
  7. package/dist-types/commands/CreateRecipeCommand.d.ts +8 -8
  8. package/dist-types/commands/CreateRecipeJobCommand.d.ts +15 -15
  9. package/dist-types/commands/CreateRulesetCommand.d.ts +8 -8
  10. package/dist-types/commands/CreateScheduleCommand.d.ts +3 -3
  11. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteRulesetCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeRulesetCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  24. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListRulesetsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  33. package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
  34. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +8 -8
  35. package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
  36. package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
  37. package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
  38. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  39. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  40. package/dist-types/commands/UpdateDatasetCommand.d.ts +19 -19
  41. package/dist-types/commands/UpdateProfileJobCommand.d.ts +19 -19
  42. package/dist-types/commands/UpdateProjectCommand.d.ts +2 -2
  43. package/dist-types/commands/UpdateRecipeCommand.d.ts +7 -7
  44. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +13 -13
  45. package/dist-types/commands/UpdateRulesetCommand.d.ts +7 -7
  46. package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -2
  47. package/dist-types/models/models_0.d.ts +202 -107
  48. package/dist-types/ts3.4/models/models_0.d.ts +131 -107
  49. package/package.json +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