@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.
- package/dist-cjs/models/models_0.js +107 -126
- package/dist-es/models/models_0.js +107 -126
- package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateDatasetCommand.d.ts +20 -20
- package/dist-types/commands/CreateProfileJobCommand.d.ts +20 -20
- package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
- package/dist-types/commands/CreateRecipeCommand.d.ts +8 -8
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +15 -15
- package/dist-types/commands/CreateRulesetCommand.d.ts +8 -8
- package/dist-types/commands/CreateScheduleCommand.d.ts +3 -3
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRulesetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
- package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRulesetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
- package/dist-types/commands/ListRulesetsCommand.d.ts +1 -1
- package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +8 -8
- package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
- package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDatasetCommand.d.ts +19 -19
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +19 -19
- package/dist-types/commands/UpdateProjectCommand.d.ts +2 -2
- package/dist-types/commands/UpdateRecipeCommand.d.ts +7 -7
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +13 -13
- package/dist-types/commands/UpdateRulesetCommand.d.ts +7 -7
- package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +202 -107
- package/dist-types/ts3.4/models/models_0.d.ts +131 -107
- package/package.json +34 -34
|
@@ -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
|
* };
|