@aws-sdk/client-databrew 3.298.0 → 3.300.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-types/commands/BatchDeleteRecipeVersionCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +86 -0
- package/dist-types/commands/CreateProfileJobCommand.d.ts +85 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +13 -0
- package/dist-types/commands/CreateRecipeCommand.d.ts +24 -0
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +77 -0
- package/dist-types/commands/CreateRulesetCommand.d.ts +29 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobCommand.d.ts +3 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRulesetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +4 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +3 -0
- package/dist-types/commands/DescribeRecipeCommand.d.ts +4 -0
- package/dist-types/commands/DescribeRulesetCommand.d.ts +3 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +3 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +4 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +5 -0
- package/dist-types/commands/ListJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +4 -0
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +5 -0
- package/dist-types/commands/ListRecipesCommand.d.ts +5 -0
- package/dist-types/commands/ListRulesetsCommand.d.ts +5 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +5 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/PublishRecipeCommand.d.ts +4 -0
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +31 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +3 -0
- package/dist-types/commands/StartProjectSessionCommand.d.ts +4 -0
- package/dist-types/commands/StopJobRunCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +83 -0
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +81 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +8 -0
- package/dist-types/commands/UpdateRecipeCommand.d.ts +21 -0
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +68 -0
- package/dist-types/commands/UpdateRulesetCommand.d.ts +25 -0
- package/dist-types/commands/UpdateScheduleCommand.d.ts +7 -0
- package/package.json +12 -12
|
@@ -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 = {
|
|
68
|
+
* Name: "STRING_VALUE", // required
|
|
69
|
+
* RecipeVersions: [ // 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 = {
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
|
|
32
|
+
* FormatOptions: {
|
|
33
|
+
* Json: {
|
|
34
|
+
* MultiLine: true || false,
|
|
35
|
+
* },
|
|
36
|
+
* Excel: {
|
|
37
|
+
* SheetNames: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* SheetIndexes: [
|
|
41
|
+
* Number("int"),
|
|
42
|
+
* ],
|
|
43
|
+
* HeaderRow: true || false,
|
|
44
|
+
* },
|
|
45
|
+
* Csv: {
|
|
46
|
+
* Delimiter: "STRING_VALUE",
|
|
47
|
+
* HeaderRow: true || false,
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* Input: {
|
|
51
|
+
* S3InputDefinition: {
|
|
52
|
+
* Bucket: "STRING_VALUE", // required
|
|
53
|
+
* Key: "STRING_VALUE",
|
|
54
|
+
* BucketOwner: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* 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: {
|
|
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: {
|
|
77
|
+
* SourceArn: "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* PathOptions: {
|
|
81
|
+
* LastModifiedDateCondition: {
|
|
82
|
+
* Expression: "STRING_VALUE", // required
|
|
83
|
+
* ValuesMap: { // required
|
|
84
|
+
* "<keys>": "STRING_VALUE",
|
|
85
|
+
* },
|
|
86
|
+
* },
|
|
87
|
+
* FilesLimit: {
|
|
88
|
+
* MaxFiles: Number("int"), // required
|
|
89
|
+
* OrderedBy: "LAST_MODIFIED_DATE",
|
|
90
|
+
* Order: "DESCENDING" || "ASCENDING",
|
|
91
|
+
* },
|
|
92
|
+
* Parameters: {
|
|
93
|
+
* "<keys>": {
|
|
94
|
+
* Name: "STRING_VALUE", // required
|
|
95
|
+
* Type: "Datetime" || "Number" || "String", // required
|
|
96
|
+
* 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: {
|
|
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 = {
|
|
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: {
|
|
38
|
+
* Bucket: "STRING_VALUE", // required
|
|
39
|
+
* Key: "STRING_VALUE",
|
|
40
|
+
* BucketOwner: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* Configuration: {
|
|
43
|
+
* DatasetStatisticsConfiguration: {
|
|
44
|
+
* IncludedStatistics: [
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* Overrides: [
|
|
48
|
+
* {
|
|
49
|
+
* Statistic: "STRING_VALUE", // required
|
|
50
|
+
* Parameters: { // required
|
|
51
|
+
* "<keys>": "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* },
|
|
56
|
+
* ProfileColumns: [
|
|
57
|
+
* {
|
|
58
|
+
* Regex: "STRING_VALUE",
|
|
59
|
+
* Name: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* ColumnStatisticsConfigurations: [
|
|
63
|
+
* {
|
|
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: {
|
|
86
|
+
* EntityTypes: [ // required
|
|
87
|
+
* "STRING_VALUE",
|
|
88
|
+
* ],
|
|
89
|
+
* AllowedStatistics: [
|
|
90
|
+
* {
|
|
91
|
+
* Statistics: [ // required
|
|
92
|
+
* "STRING_VALUE",
|
|
93
|
+
* ],
|
|
94
|
+
* },
|
|
95
|
+
* ],
|
|
96
|
+
* },
|
|
97
|
+
* },
|
|
98
|
+
* ValidationConfigurations: [
|
|
99
|
+
* {
|
|
100
|
+
* RulesetArn: "STRING_VALUE", // required
|
|
101
|
+
* ValidationMode: "CHECK_ALL",
|
|
102
|
+
* },
|
|
103
|
+
* ],
|
|
104
|
+
* RoleArn: "STRING_VALUE", // required
|
|
105
|
+
* Tags: {
|
|
106
|
+
* "<keys>": "STRING_VALUE",
|
|
107
|
+
* },
|
|
108
|
+
* Timeout: Number("int"),
|
|
109
|
+
* 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 = {
|
|
30
|
+
* DatasetName: "STRING_VALUE", // required
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* RecipeName: "STRING_VALUE", // required
|
|
33
|
+
* Sample: {
|
|
34
|
+
* Size: Number("int"),
|
|
35
|
+
* Type: "FIRST_N" || "LAST_N" || "RANDOM", // required
|
|
36
|
+
* },
|
|
37
|
+
* RoleArn: "STRING_VALUE", // required
|
|
38
|
+
* Tags: {
|
|
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 = {
|
|
30
|
+
* Description: "STRING_VALUE",
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* Steps: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* Action: {
|
|
35
|
+
* Operation: "STRING_VALUE", // required
|
|
36
|
+
* Parameters: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* },
|
|
40
|
+
* ConditionExpressions: [
|
|
41
|
+
* {
|
|
42
|
+
* Condition: "STRING_VALUE", // required
|
|
43
|
+
* Value: "STRING_VALUE",
|
|
44
|
+
* TargetColumn: "STRING_VALUE", // required
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* Tags: {
|
|
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 = {
|
|
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: [
|
|
38
|
+
* {
|
|
39
|
+
* CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
|
|
40
|
+
* Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
|
|
41
|
+
* PartitionColumns: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* Location: {
|
|
45
|
+
* Bucket: "STRING_VALUE", // required
|
|
46
|
+
* Key: "STRING_VALUE",
|
|
47
|
+
* BucketOwner: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* Overwrite: true || false,
|
|
50
|
+
* FormatOptions: {
|
|
51
|
+
* Csv: {
|
|
52
|
+
* Delimiter: "STRING_VALUE",
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* MaxOutputFiles: Number("int"),
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* DataCatalogOutputs: [
|
|
59
|
+
* {
|
|
60
|
+
* CatalogId: "STRING_VALUE",
|
|
61
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
62
|
+
* TableName: "STRING_VALUE", // required
|
|
63
|
+
* S3Options: {
|
|
64
|
+
* Location: {
|
|
65
|
+
* Bucket: "STRING_VALUE", // required
|
|
66
|
+
* Key: "STRING_VALUE",
|
|
67
|
+
* BucketOwner: "STRING_VALUE",
|
|
68
|
+
* },
|
|
69
|
+
* },
|
|
70
|
+
* DatabaseOptions: {
|
|
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: [
|
|
82
|
+
* {
|
|
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: {
|
|
97
|
+
* Name: "STRING_VALUE", // required
|
|
98
|
+
* RecipeVersion: "STRING_VALUE",
|
|
99
|
+
* },
|
|
100
|
+
* RoleArn: "STRING_VALUE", // required
|
|
101
|
+
* Tags: {
|
|
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 = {
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* TargetArn: "STRING_VALUE", // required
|
|
34
|
+
* Rules: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* Name: "STRING_VALUE", // required
|
|
37
|
+
* Disabled: true || false,
|
|
38
|
+
* CheckExpression: "STRING_VALUE", // required
|
|
39
|
+
* SubstitutionMap: {
|
|
40
|
+
* "<keys>": "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* 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: [
|
|
48
|
+
* {
|
|
49
|
+
* Regex: "STRING_VALUE",
|
|
50
|
+
* Name: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* Tags: {
|
|
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 = {
|
|
31
|
+
* JobNames: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* CronExpression: "STRING_VALUE", // required
|
|
35
|
+
* Tags: {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
31
|
+
* Preview: true || false,
|
|
32
|
+
* Name: "STRING_VALUE", // required
|
|
33
|
+
* RecipeStep: {
|
|
34
|
+
* Action: {
|
|
35
|
+
* Operation: "STRING_VALUE", // required
|
|
36
|
+
* Parameters: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* },
|
|
40
|
+
* ConditionExpressions: [
|
|
41
|
+
* {
|
|
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: {
|
|
51
|
+
* StartColumnIndex: Number("int"), // required
|
|
52
|
+
* ColumnRange: Number("int"),
|
|
53
|
+
* HiddenColumns: [
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
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 = {
|
|
31
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
+
* Tags: { // 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 = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // 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 = {
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Format: "CSV" || "JSON" || "PARQUET" || "EXCEL" || "ORC",
|
|
32
|
+
* FormatOptions: {
|
|
33
|
+
* Json: {
|
|
34
|
+
* MultiLine: true || false,
|
|
35
|
+
* },
|
|
36
|
+
* Excel: {
|
|
37
|
+
* SheetNames: [
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* SheetIndexes: [
|
|
41
|
+
* Number("int"),
|
|
42
|
+
* ],
|
|
43
|
+
* HeaderRow: true || false,
|
|
44
|
+
* },
|
|
45
|
+
* Csv: {
|
|
46
|
+
* Delimiter: "STRING_VALUE",
|
|
47
|
+
* HeaderRow: true || false,
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* Input: {
|
|
51
|
+
* S3InputDefinition: {
|
|
52
|
+
* Bucket: "STRING_VALUE", // required
|
|
53
|
+
* Key: "STRING_VALUE",
|
|
54
|
+
* BucketOwner: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* 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: {
|
|
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: {
|
|
77
|
+
* SourceArn: "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* PathOptions: {
|
|
81
|
+
* LastModifiedDateCondition: {
|
|
82
|
+
* Expression: "STRING_VALUE", // required
|
|
83
|
+
* ValuesMap: { // required
|
|
84
|
+
* "<keys>": "STRING_VALUE",
|
|
85
|
+
* },
|
|
86
|
+
* },
|
|
87
|
+
* FilesLimit: {
|
|
88
|
+
* MaxFiles: Number("int"), // required
|
|
89
|
+
* OrderedBy: "LAST_MODIFIED_DATE",
|
|
90
|
+
* Order: "DESCENDING" || "ASCENDING",
|
|
91
|
+
* },
|
|
92
|
+
* Parameters: {
|
|
93
|
+
* "<keys>": {
|
|
94
|
+
* Name: "STRING_VALUE", // required
|
|
95
|
+
* Type: "Datetime" || "Number" || "String", // required
|
|
96
|
+
* 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 = {
|
|
30
|
+
* Configuration: {
|
|
31
|
+
* DatasetStatisticsConfiguration: {
|
|
32
|
+
* IncludedStatistics: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* Overrides: [
|
|
36
|
+
* {
|
|
37
|
+
* Statistic: "STRING_VALUE", // required
|
|
38
|
+
* Parameters: { // required
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* },
|
|
44
|
+
* ProfileColumns: [
|
|
45
|
+
* {
|
|
46
|
+
* Regex: "STRING_VALUE",
|
|
47
|
+
* Name: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* ColumnStatisticsConfigurations: [
|
|
51
|
+
* {
|
|
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: {
|
|
74
|
+
* EntityTypes: [ // required
|
|
75
|
+
* "STRING_VALUE",
|
|
76
|
+
* ],
|
|
77
|
+
* AllowedStatistics: [
|
|
78
|
+
* {
|
|
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: {
|
|
93
|
+
* Bucket: "STRING_VALUE", // required
|
|
94
|
+
* Key: "STRING_VALUE",
|
|
95
|
+
* BucketOwner: "STRING_VALUE",
|
|
96
|
+
* },
|
|
97
|
+
* ValidationConfigurations: [
|
|
98
|
+
* {
|
|
99
|
+
* RulesetArn: "STRING_VALUE", // required
|
|
100
|
+
* ValidationMode: "CHECK_ALL",
|
|
101
|
+
* },
|
|
102
|
+
* ],
|
|
103
|
+
* RoleArn: "STRING_VALUE", // required
|
|
104
|
+
* Timeout: Number("int"),
|
|
105
|
+
* 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 = {
|
|
30
|
+
* 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 = {
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* Name: "STRING_VALUE", // required
|
|
33
|
+
* Steps: [
|
|
34
|
+
* {
|
|
35
|
+
* Action: {
|
|
36
|
+
* Operation: "STRING_VALUE", // required
|
|
37
|
+
* Parameters: {
|
|
38
|
+
* "<keys>": "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* },
|
|
41
|
+
* ConditionExpressions: [
|
|
42
|
+
* {
|
|
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 = {
|
|
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: [
|
|
37
|
+
* {
|
|
38
|
+
* CompressionFormat: "GZIP" || "LZ4" || "SNAPPY" || "BZIP2" || "DEFLATE" || "LZO" || "BROTLI" || "ZSTD" || "ZLIB",
|
|
39
|
+
* Format: "CSV" || "JSON" || "PARQUET" || "GLUEPARQUET" || "AVRO" || "ORC" || "XML" || "TABLEAUHYPER",
|
|
40
|
+
* PartitionColumns: [
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* Location: {
|
|
44
|
+
* Bucket: "STRING_VALUE", // required
|
|
45
|
+
* Key: "STRING_VALUE",
|
|
46
|
+
* BucketOwner: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* Overwrite: true || false,
|
|
49
|
+
* FormatOptions: {
|
|
50
|
+
* Csv: {
|
|
51
|
+
* Delimiter: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* MaxOutputFiles: Number("int"),
|
|
55
|
+
* },
|
|
56
|
+
* ],
|
|
57
|
+
* DataCatalogOutputs: [
|
|
58
|
+
* {
|
|
59
|
+
* CatalogId: "STRING_VALUE",
|
|
60
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
61
|
+
* TableName: "STRING_VALUE", // required
|
|
62
|
+
* S3Options: {
|
|
63
|
+
* Location: {
|
|
64
|
+
* Bucket: "STRING_VALUE", // required
|
|
65
|
+
* Key: "STRING_VALUE",
|
|
66
|
+
* BucketOwner: "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* DatabaseOptions: {
|
|
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: [
|
|
81
|
+
* {
|
|
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 = {
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* Rules: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Disabled: true || false,
|
|
36
|
+
* CheckExpression: "STRING_VALUE", // required
|
|
37
|
+
* SubstitutionMap: {
|
|
38
|
+
* "<keys>": "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* 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: [
|
|
46
|
+
* {
|
|
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 = {
|
|
30
|
+
* JobNames: [
|
|
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.
|
|
4
|
+
"version": "3.300.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,23 +21,23 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.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",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
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.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.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.
|
|
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
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "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
|
},
|