@aws-sdk/client-glue 3.328.0 → 3.330.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 (41) hide show
  1. package/README.md +0 -3
  2. package/dist-cjs/models/models_0.js +2 -0
  3. package/dist-cjs/protocols/Aws_json1_1.js +4 -0
  4. package/dist-es/models/models_0.js +2 -0
  5. package/dist-es/protocols/Aws_json1_1.js +4 -0
  6. package/dist-types/commands/BatchGetDevEndpointsCommand.d.ts +1 -1
  7. package/dist-types/commands/BatchGetJobsCommand.d.ts +103 -1
  8. package/dist-types/commands/BatchGetWorkflowsCommand.d.ts +2 -2
  9. package/dist-types/commands/CreateDevEndpointCommand.d.ts +2 -2
  10. package/dist-types/commands/CreateJobCommand.d.ts +103 -1
  11. package/dist-types/commands/CreateMLTransformCommand.d.ts +1 -1
  12. package/dist-types/commands/CreatePartitionCommand.d.ts +1 -1
  13. package/dist-types/commands/CreatePartitionIndexCommand.d.ts +1 -1
  14. package/dist-types/commands/CreateSessionCommand.d.ts +1 -1
  15. package/dist-types/commands/GetDevEndpointCommand.d.ts +1 -1
  16. package/dist-types/commands/GetDevEndpointsCommand.d.ts +1 -1
  17. package/dist-types/commands/GetJobCommand.d.ts +103 -1
  18. package/dist-types/commands/GetJobRunCommand.d.ts +1 -1
  19. package/dist-types/commands/GetJobRunsCommand.d.ts +1 -1
  20. package/dist-types/commands/GetJobsCommand.d.ts +103 -1
  21. package/dist-types/commands/GetMLTransformCommand.d.ts +1 -1
  22. package/dist-types/commands/GetMLTransformsCommand.d.ts +1 -1
  23. package/dist-types/commands/GetUserDefinedFunctionsCommand.d.ts +2 -1
  24. package/dist-types/commands/GetWorkflowCommand.d.ts +3 -3
  25. package/dist-types/commands/GetWorkflowRunCommand.d.ts +2 -2
  26. package/dist-types/commands/GetWorkflowRunsCommand.d.ts +1 -1
  27. package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateJobCommand.d.ts +103 -1
  29. package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
  30. package/dist-types/models/models_0.d.ts +180 -68
  31. package/dist-types/models/models_1.d.ts +69 -63
  32. package/dist-types/models/models_2.d.ts +83 -6
  33. package/dist-types/ts3.4/commands/CreatePartitionCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/CreatePartitionIndexCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/GetUserDefinedFunctionsCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +49 -18
  39. package/dist-types/ts3.4/models/models_1.d.ts +19 -22
  40. package/dist-types/ts3.4/models/models_2.d.ts +25 -0
  41. package/package.json +29 -29
package/README.md CHANGED
@@ -2,9 +2,6 @@
2
2
 
3
3
  # @aws-sdk/client-glue
4
4
 
5
- [![NPM version](https://img.shields.io/npm/v/@aws-sdk/client-glue/latest.svg)](https://www.npmjs.com/package/@aws-sdk/client-glue)
6
- [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/client-glue.svg)](https://www.npmjs.com/package/@aws-sdk/client-glue)
7
-
8
5
  ## Description
9
6
 
10
7
  AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native.
@@ -200,6 +200,8 @@ exports.WorkerType = {
200
200
  G_025X: "G.025X",
201
201
  G_1X: "G.1X",
202
202
  G_2X: "G.2X",
203
+ G_4X: "G.4X",
204
+ G_8X: "G.8X",
203
205
  Standard: "Standard",
204
206
  };
205
207
  exports.StartingPosition = {
@@ -10607,6 +10607,8 @@ const se_BinaryColumnStatisticsData = (input, context) => {
10607
10607
  const se_CodeGenConfigurationNode = (input, context) => {
10608
10608
  return (0, smithy_client_1.take)(input, {
10609
10609
  Aggregate: smithy_client_1._json,
10610
+ AmazonRedshiftSource: smithy_client_1._json,
10611
+ AmazonRedshiftTarget: smithy_client_1._json,
10610
10612
  ApplyMapping: (_) => se_ApplyMapping(_, context),
10611
10613
  AthenaConnectorSource: smithy_client_1._json,
10612
10614
  CatalogDeltaSource: smithy_client_1._json,
@@ -11336,6 +11338,8 @@ const de_ClassifierList = (output, context) => {
11336
11338
  const de_CodeGenConfigurationNode = (output, context) => {
11337
11339
  return (0, smithy_client_1.take)(output, {
11338
11340
  Aggregate: smithy_client_1._json,
11341
+ AmazonRedshiftSource: smithy_client_1._json,
11342
+ AmazonRedshiftTarget: smithy_client_1._json,
11339
11343
  ApplyMapping: (_) => de_ApplyMapping(_, context),
11340
11344
  AthenaConnectorSource: smithy_client_1._json,
11341
11345
  CatalogDeltaSource: smithy_client_1._json,
@@ -187,6 +187,8 @@ export const WorkerType = {
187
187
  G_025X: "G.025X",
188
188
  G_1X: "G.1X",
189
189
  G_2X: "G.2X",
190
+ G_4X: "G.4X",
191
+ G_8X: "G.8X",
190
192
  Standard: "Standard",
191
193
  };
192
194
  export const StartingPosition = {
@@ -10192,6 +10192,8 @@ const se_BinaryColumnStatisticsData = (input, context) => {
10192
10192
  const se_CodeGenConfigurationNode = (input, context) => {
10193
10193
  return take(input, {
10194
10194
  Aggregate: _json,
10195
+ AmazonRedshiftSource: _json,
10196
+ AmazonRedshiftTarget: _json,
10195
10197
  ApplyMapping: (_) => se_ApplyMapping(_, context),
10196
10198
  AthenaConnectorSource: _json,
10197
10199
  CatalogDeltaSource: _json,
@@ -10921,6 +10923,8 @@ const de_ClassifierList = (output, context) => {
10921
10923
  const de_CodeGenConfigurationNode = (output, context) => {
10922
10924
  return take(output, {
10923
10925
  Aggregate: _json,
10926
+ AmazonRedshiftSource: _json,
10927
+ AmazonRedshiftTarget: _json,
10924
10928
  ApplyMapping: (_) => de_ApplyMapping(_, context),
10925
10929
  AthenaConnectorSource: _json,
10926
10930
  CatalogDeltaSource: _json,
@@ -50,7 +50,7 @@ export interface BatchGetDevEndpointsCommandOutput extends BatchGetDevEndpointsR
50
50
  * // ZeppelinRemoteSparkInterpreterPort: Number("int"),
51
51
  * // PublicAddress: "STRING_VALUE",
52
52
  * // Status: "STRING_VALUE",
53
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
53
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
54
54
  * // GlueVersion: "STRING_VALUE",
55
55
  * // NumberOfWorkers: Number("int"),
56
56
  * // NumberOfNodes: Number("int"),
@@ -67,7 +67,7 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
67
67
  * // AllocatedCapacity: Number("int"),
68
68
  * // Timeout: Number("int"),
69
69
  * // MaxCapacity: Number("double"),
70
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
70
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
71
71
  * // NumberOfWorkers: Number("int"),
72
72
  * // SecurityConfiguration: "STRING_VALUE",
73
73
  * // NotificationProperty: { // NotificationProperty
@@ -754,6 +754,7 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
754
754
  * // FunctionName: "STRING_VALUE", // required
755
755
  * // Path: "STRING_VALUE", // required
756
756
  * // Version: "STRING_VALUE",
757
+ * // OutputSchemas: "<GlueSchemas>",
757
758
  * // },
758
759
  * // EvaluateDataQuality: { // EvaluateDataQuality
759
760
  * // Name: "STRING_VALUE", // required
@@ -888,6 +889,107 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
888
889
  * // Database: "STRING_VALUE",
889
890
  * // },
890
891
  * // },
892
+ * // AmazonRedshiftSource: { // AmazonRedshiftSource
893
+ * // Name: "STRING_VALUE",
894
+ * // Data: { // AmazonRedshiftNodeData
895
+ * // AccessType: "STRING_VALUE",
896
+ * // SourceType: "STRING_VALUE",
897
+ * // Connection: { // Option
898
+ * // Value: "STRING_VALUE",
899
+ * // Label: "STRING_VALUE",
900
+ * // Description: "STRING_VALUE",
901
+ * // },
902
+ * // Schema: {
903
+ * // Value: "STRING_VALUE",
904
+ * // Label: "STRING_VALUE",
905
+ * // Description: "STRING_VALUE",
906
+ * // },
907
+ * // Table: {
908
+ * // Value: "STRING_VALUE",
909
+ * // Label: "STRING_VALUE",
910
+ * // Description: "STRING_VALUE",
911
+ * // },
912
+ * // CatalogDatabase: {
913
+ * // Value: "STRING_VALUE",
914
+ * // Label: "STRING_VALUE",
915
+ * // Description: "STRING_VALUE",
916
+ * // },
917
+ * // CatalogTable: {
918
+ * // Value: "STRING_VALUE",
919
+ * // Label: "STRING_VALUE",
920
+ * // Description: "STRING_VALUE",
921
+ * // },
922
+ * // CatalogRedshiftSchema: "STRING_VALUE",
923
+ * // CatalogRedshiftTable: "STRING_VALUE",
924
+ * // TempDir: "STRING_VALUE",
925
+ * // IamRole: "<Option>",
926
+ * // AdvancedOptions: [ // AmazonRedshiftAdvancedOptions
927
+ * // { // AmazonRedshiftAdvancedOption
928
+ * // Key: "STRING_VALUE",
929
+ * // Value: "STRING_VALUE",
930
+ * // },
931
+ * // ],
932
+ * // SampleQuery: "STRING_VALUE",
933
+ * // PreAction: "STRING_VALUE",
934
+ * // PostAction: "STRING_VALUE",
935
+ * // Action: "STRING_VALUE",
936
+ * // TablePrefix: "STRING_VALUE",
937
+ * // Upsert: true || false,
938
+ * // MergeAction: "STRING_VALUE",
939
+ * // MergeWhenMatched: "STRING_VALUE",
940
+ * // MergeWhenNotMatched: "STRING_VALUE",
941
+ * // MergeClause: "STRING_VALUE",
942
+ * // CrawlerConnection: "STRING_VALUE",
943
+ * // TableSchema: [ // OptionList
944
+ * // "<Option>",
945
+ * // ],
946
+ * // StagingTable: "STRING_VALUE",
947
+ * // SelectedColumns: [
948
+ * // "<Option>",
949
+ * // ],
950
+ * // },
951
+ * // },
952
+ * // AmazonRedshiftTarget: { // AmazonRedshiftTarget
953
+ * // Name: "STRING_VALUE",
954
+ * // Data: {
955
+ * // AccessType: "STRING_VALUE",
956
+ * // SourceType: "STRING_VALUE",
957
+ * // Connection: "<Option>",
958
+ * // Schema: "<Option>",
959
+ * // Table: "<Option>",
960
+ * // CatalogDatabase: "<Option>",
961
+ * // CatalogTable: "<Option>",
962
+ * // CatalogRedshiftSchema: "STRING_VALUE",
963
+ * // CatalogRedshiftTable: "STRING_VALUE",
964
+ * // TempDir: "STRING_VALUE",
965
+ * // IamRole: "<Option>",
966
+ * // AdvancedOptions: [
967
+ * // {
968
+ * // Key: "STRING_VALUE",
969
+ * // Value: "STRING_VALUE",
970
+ * // },
971
+ * // ],
972
+ * // SampleQuery: "STRING_VALUE",
973
+ * // PreAction: "STRING_VALUE",
974
+ * // PostAction: "STRING_VALUE",
975
+ * // Action: "STRING_VALUE",
976
+ * // TablePrefix: "STRING_VALUE",
977
+ * // Upsert: true || false,
978
+ * // MergeAction: "STRING_VALUE",
979
+ * // MergeWhenMatched: "STRING_VALUE",
980
+ * // MergeWhenNotMatched: "STRING_VALUE",
981
+ * // MergeClause: "STRING_VALUE",
982
+ * // CrawlerConnection: "STRING_VALUE",
983
+ * // TableSchema: [
984
+ * // "<Option>",
985
+ * // ],
986
+ * // StagingTable: "STRING_VALUE",
987
+ * // SelectedColumns: [
988
+ * // "<Option>",
989
+ * // ],
990
+ * // },
991
+ * // Inputs: "<OneInput>",
992
+ * // },
891
993
  * // },
892
994
  * // },
893
995
  * // ExecutionClass: "FLEX" || "STANDARD",
@@ -138,7 +138,7 @@ export interface BatchGetWorkflowsCommandOutput extends BatchGetWorkflowsRespons
138
138
  * // ExecutionTime: Number("int"),
139
139
  * // Timeout: Number("int"),
140
140
  * // MaxCapacity: Number("double"),
141
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
141
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
142
142
  * // NumberOfWorkers: Number("int"),
143
143
  * // SecurityConfiguration: "STRING_VALUE",
144
144
  * // LogGroupName: "STRING_VALUE",
@@ -248,7 +248,7 @@ export interface BatchGetWorkflowsCommandOutput extends BatchGetWorkflowsRespons
248
248
  * // ExecutionTime: Number("int"),
249
249
  * // Timeout: Number("int"),
250
250
  * // MaxCapacity: Number("double"),
251
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
251
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
252
252
  * // NumberOfWorkers: Number("int"),
253
253
  * // SecurityConfiguration: "STRING_VALUE",
254
254
  * // LogGroupName: "STRING_VALUE",
@@ -38,7 +38,7 @@ export interface CreateDevEndpointCommandOutput extends CreateDevEndpointRespons
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * NumberOfNodes: Number("int"),
41
- * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
41
+ * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
42
42
  * GlueVersion: "STRING_VALUE",
43
43
  * NumberOfWorkers: Number("int"),
44
44
  * ExtraPythonLibsS3Path: "STRING_VALUE",
@@ -64,7 +64,7 @@ export interface CreateDevEndpointCommandOutput extends CreateDevEndpointRespons
64
64
  * // YarnEndpointAddress: "STRING_VALUE",
65
65
  * // ZeppelinRemoteSparkInterpreterPort: Number("int"),
66
66
  * // NumberOfNodes: Number("int"),
67
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
67
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
68
68
  * // GlueVersion: "STRING_VALUE",
69
69
  * // NumberOfWorkers: Number("int"),
70
70
  * // AvailabilityZone: "STRING_VALUE",
@@ -64,7 +64,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
64
64
  * },
65
65
  * GlueVersion: "STRING_VALUE",
66
66
  * NumberOfWorkers: Number("int"),
67
- * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
67
+ * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
68
68
  * CodeGenConfigurationNodes: { // CodeGenConfigurationNodes
69
69
  * "<keys>": { // CodeGenConfigurationNode
70
70
  * AthenaConnectorSource: { // AthenaConnectorSource
@@ -745,6 +745,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
745
745
  * FunctionName: "STRING_VALUE", // required
746
746
  * Path: "STRING_VALUE", // required
747
747
  * Version: "STRING_VALUE",
748
+ * OutputSchemas: "<GlueSchemas>",
748
749
  * },
749
750
  * EvaluateDataQuality: { // EvaluateDataQuality
750
751
  * Name: "STRING_VALUE", // required
@@ -879,6 +880,107 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
879
880
  * Database: "STRING_VALUE",
880
881
  * },
881
882
  * },
883
+ * AmazonRedshiftSource: { // AmazonRedshiftSource
884
+ * Name: "STRING_VALUE",
885
+ * Data: { // AmazonRedshiftNodeData
886
+ * AccessType: "STRING_VALUE",
887
+ * SourceType: "STRING_VALUE",
888
+ * Connection: { // Option
889
+ * Value: "STRING_VALUE",
890
+ * Label: "STRING_VALUE",
891
+ * Description: "STRING_VALUE",
892
+ * },
893
+ * Schema: {
894
+ * Value: "STRING_VALUE",
895
+ * Label: "STRING_VALUE",
896
+ * Description: "STRING_VALUE",
897
+ * },
898
+ * Table: {
899
+ * Value: "STRING_VALUE",
900
+ * Label: "STRING_VALUE",
901
+ * Description: "STRING_VALUE",
902
+ * },
903
+ * CatalogDatabase: {
904
+ * Value: "STRING_VALUE",
905
+ * Label: "STRING_VALUE",
906
+ * Description: "STRING_VALUE",
907
+ * },
908
+ * CatalogTable: {
909
+ * Value: "STRING_VALUE",
910
+ * Label: "STRING_VALUE",
911
+ * Description: "STRING_VALUE",
912
+ * },
913
+ * CatalogRedshiftSchema: "STRING_VALUE",
914
+ * CatalogRedshiftTable: "STRING_VALUE",
915
+ * TempDir: "STRING_VALUE",
916
+ * IamRole: "<Option>",
917
+ * AdvancedOptions: [ // AmazonRedshiftAdvancedOptions
918
+ * { // AmazonRedshiftAdvancedOption
919
+ * Key: "STRING_VALUE",
920
+ * Value: "STRING_VALUE",
921
+ * },
922
+ * ],
923
+ * SampleQuery: "STRING_VALUE",
924
+ * PreAction: "STRING_VALUE",
925
+ * PostAction: "STRING_VALUE",
926
+ * Action: "STRING_VALUE",
927
+ * TablePrefix: "STRING_VALUE",
928
+ * Upsert: true || false,
929
+ * MergeAction: "STRING_VALUE",
930
+ * MergeWhenMatched: "STRING_VALUE",
931
+ * MergeWhenNotMatched: "STRING_VALUE",
932
+ * MergeClause: "STRING_VALUE",
933
+ * CrawlerConnection: "STRING_VALUE",
934
+ * TableSchema: [ // OptionList
935
+ * "<Option>",
936
+ * ],
937
+ * StagingTable: "STRING_VALUE",
938
+ * SelectedColumns: [
939
+ * "<Option>",
940
+ * ],
941
+ * },
942
+ * },
943
+ * AmazonRedshiftTarget: { // AmazonRedshiftTarget
944
+ * Name: "STRING_VALUE",
945
+ * Data: {
946
+ * AccessType: "STRING_VALUE",
947
+ * SourceType: "STRING_VALUE",
948
+ * Connection: "<Option>",
949
+ * Schema: "<Option>",
950
+ * Table: "<Option>",
951
+ * CatalogDatabase: "<Option>",
952
+ * CatalogTable: "<Option>",
953
+ * CatalogRedshiftSchema: "STRING_VALUE",
954
+ * CatalogRedshiftTable: "STRING_VALUE",
955
+ * TempDir: "STRING_VALUE",
956
+ * IamRole: "<Option>",
957
+ * AdvancedOptions: [
958
+ * {
959
+ * Key: "STRING_VALUE",
960
+ * Value: "STRING_VALUE",
961
+ * },
962
+ * ],
963
+ * SampleQuery: "STRING_VALUE",
964
+ * PreAction: "STRING_VALUE",
965
+ * PostAction: "STRING_VALUE",
966
+ * Action: "STRING_VALUE",
967
+ * TablePrefix: "STRING_VALUE",
968
+ * Upsert: true || false,
969
+ * MergeAction: "STRING_VALUE",
970
+ * MergeWhenMatched: "STRING_VALUE",
971
+ * MergeWhenNotMatched: "STRING_VALUE",
972
+ * MergeClause: "STRING_VALUE",
973
+ * CrawlerConnection: "STRING_VALUE",
974
+ * TableSchema: [
975
+ * "<Option>",
976
+ * ],
977
+ * StagingTable: "STRING_VALUE",
978
+ * SelectedColumns: [
979
+ * "<Option>",
980
+ * ],
981
+ * },
982
+ * Inputs: "<OneInput>",
983
+ * },
882
984
  * },
883
985
  * },
884
986
  * ExecutionClass: "FLEX" || "STANDARD",
@@ -62,7 +62,7 @@ export interface CreateMLTransformCommandOutput extends CreateMLTransformRespons
62
62
  * Role: "STRING_VALUE", // required
63
63
  * GlueVersion: "STRING_VALUE",
64
64
  * MaxCapacity: Number("double"),
65
- * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
65
+ * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
66
66
  * NumberOfWorkers: Number("int"),
67
67
  * Timeout: Number("int"),
68
68
  * MaxRetries: Number("int"),
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
5
- import { CreatePartitionRequest, CreatePartitionResponse } from "../models/models_0";
5
+ import { CreatePartitionRequest, CreatePartitionResponse } from "../models/models_1";
6
6
  /**
7
7
  * @public
8
8
  *
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
5
- import { CreatePartitionIndexRequest, CreatePartitionIndexResponse } from "../models/models_0";
5
+ import { CreatePartitionIndexRequest, CreatePartitionIndexResponse } from "../models/models_1";
6
6
  /**
7
7
  * @public
8
8
  *
@@ -46,7 +46,7 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met
46
46
  * },
47
47
  * MaxCapacity: Number("double"),
48
48
  * NumberOfWorkers: Number("int"),
49
- * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
49
+ * WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
50
50
  * SecurityConfiguration: "STRING_VALUE",
51
51
  * GlueVersion: "STRING_VALUE",
52
52
  * Tags: { // TagsMap
@@ -49,7 +49,7 @@ export interface GetDevEndpointCommandOutput extends GetDevEndpointResponse, __M
49
49
  * // ZeppelinRemoteSparkInterpreterPort: Number("int"),
50
50
  * // PublicAddress: "STRING_VALUE",
51
51
  * // Status: "STRING_VALUE",
52
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
52
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
53
53
  * // GlueVersion: "STRING_VALUE",
54
54
  * // NumberOfWorkers: Number("int"),
55
55
  * // NumberOfNodes: Number("int"),
@@ -51,7 +51,7 @@ export interface GetDevEndpointsCommandOutput extends GetDevEndpointsResponse, _
51
51
  * // ZeppelinRemoteSparkInterpreterPort: Number("int"),
52
52
  * // PublicAddress: "STRING_VALUE",
53
53
  * // Status: "STRING_VALUE",
54
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
54
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
55
55
  * // GlueVersion: "STRING_VALUE",
56
56
  * // NumberOfWorkers: Number("int"),
57
57
  * // NumberOfNodes: Number("int"),
@@ -63,7 +63,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
63
63
  * // AllocatedCapacity: Number("int"),
64
64
  * // Timeout: Number("int"),
65
65
  * // MaxCapacity: Number("double"),
66
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
66
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
67
67
  * // NumberOfWorkers: Number("int"),
68
68
  * // SecurityConfiguration: "STRING_VALUE",
69
69
  * // NotificationProperty: { // NotificationProperty
@@ -750,6 +750,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
750
750
  * // FunctionName: "STRING_VALUE", // required
751
751
  * // Path: "STRING_VALUE", // required
752
752
  * // Version: "STRING_VALUE",
753
+ * // OutputSchemas: "<GlueSchemas>",
753
754
  * // },
754
755
  * // EvaluateDataQuality: { // EvaluateDataQuality
755
756
  * // Name: "STRING_VALUE", // required
@@ -884,6 +885,107 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
884
885
  * // Database: "STRING_VALUE",
885
886
  * // },
886
887
  * // },
888
+ * // AmazonRedshiftSource: { // AmazonRedshiftSource
889
+ * // Name: "STRING_VALUE",
890
+ * // Data: { // AmazonRedshiftNodeData
891
+ * // AccessType: "STRING_VALUE",
892
+ * // SourceType: "STRING_VALUE",
893
+ * // Connection: { // Option
894
+ * // Value: "STRING_VALUE",
895
+ * // Label: "STRING_VALUE",
896
+ * // Description: "STRING_VALUE",
897
+ * // },
898
+ * // Schema: {
899
+ * // Value: "STRING_VALUE",
900
+ * // Label: "STRING_VALUE",
901
+ * // Description: "STRING_VALUE",
902
+ * // },
903
+ * // Table: {
904
+ * // Value: "STRING_VALUE",
905
+ * // Label: "STRING_VALUE",
906
+ * // Description: "STRING_VALUE",
907
+ * // },
908
+ * // CatalogDatabase: {
909
+ * // Value: "STRING_VALUE",
910
+ * // Label: "STRING_VALUE",
911
+ * // Description: "STRING_VALUE",
912
+ * // },
913
+ * // CatalogTable: {
914
+ * // Value: "STRING_VALUE",
915
+ * // Label: "STRING_VALUE",
916
+ * // Description: "STRING_VALUE",
917
+ * // },
918
+ * // CatalogRedshiftSchema: "STRING_VALUE",
919
+ * // CatalogRedshiftTable: "STRING_VALUE",
920
+ * // TempDir: "STRING_VALUE",
921
+ * // IamRole: "<Option>",
922
+ * // AdvancedOptions: [ // AmazonRedshiftAdvancedOptions
923
+ * // { // AmazonRedshiftAdvancedOption
924
+ * // Key: "STRING_VALUE",
925
+ * // Value: "STRING_VALUE",
926
+ * // },
927
+ * // ],
928
+ * // SampleQuery: "STRING_VALUE",
929
+ * // PreAction: "STRING_VALUE",
930
+ * // PostAction: "STRING_VALUE",
931
+ * // Action: "STRING_VALUE",
932
+ * // TablePrefix: "STRING_VALUE",
933
+ * // Upsert: true || false,
934
+ * // MergeAction: "STRING_VALUE",
935
+ * // MergeWhenMatched: "STRING_VALUE",
936
+ * // MergeWhenNotMatched: "STRING_VALUE",
937
+ * // MergeClause: "STRING_VALUE",
938
+ * // CrawlerConnection: "STRING_VALUE",
939
+ * // TableSchema: [ // OptionList
940
+ * // "<Option>",
941
+ * // ],
942
+ * // StagingTable: "STRING_VALUE",
943
+ * // SelectedColumns: [
944
+ * // "<Option>",
945
+ * // ],
946
+ * // },
947
+ * // },
948
+ * // AmazonRedshiftTarget: { // AmazonRedshiftTarget
949
+ * // Name: "STRING_VALUE",
950
+ * // Data: {
951
+ * // AccessType: "STRING_VALUE",
952
+ * // SourceType: "STRING_VALUE",
953
+ * // Connection: "<Option>",
954
+ * // Schema: "<Option>",
955
+ * // Table: "<Option>",
956
+ * // CatalogDatabase: "<Option>",
957
+ * // CatalogTable: "<Option>",
958
+ * // CatalogRedshiftSchema: "STRING_VALUE",
959
+ * // CatalogRedshiftTable: "STRING_VALUE",
960
+ * // TempDir: "STRING_VALUE",
961
+ * // IamRole: "<Option>",
962
+ * // AdvancedOptions: [
963
+ * // {
964
+ * // Key: "STRING_VALUE",
965
+ * // Value: "STRING_VALUE",
966
+ * // },
967
+ * // ],
968
+ * // SampleQuery: "STRING_VALUE",
969
+ * // PreAction: "STRING_VALUE",
970
+ * // PostAction: "STRING_VALUE",
971
+ * // Action: "STRING_VALUE",
972
+ * // TablePrefix: "STRING_VALUE",
973
+ * // Upsert: true || false,
974
+ * // MergeAction: "STRING_VALUE",
975
+ * // MergeWhenMatched: "STRING_VALUE",
976
+ * // MergeWhenNotMatched: "STRING_VALUE",
977
+ * // MergeClause: "STRING_VALUE",
978
+ * // CrawlerConnection: "STRING_VALUE",
979
+ * // TableSchema: [
980
+ * // "<Option>",
981
+ * // ],
982
+ * // StagingTable: "STRING_VALUE",
983
+ * // SelectedColumns: [
984
+ * // "<Option>",
985
+ * // ],
986
+ * // },
987
+ * // Inputs: "<OneInput>",
988
+ * // },
887
989
  * // },
888
990
  * // },
889
991
  * // ExecutionClass: "FLEX" || "STANDARD",
@@ -58,7 +58,7 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
58
58
  * // ExecutionTime: Number("int"),
59
59
  * // Timeout: Number("int"),
60
60
  * // MaxCapacity: Number("double"),
61
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
61
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
62
62
  * // NumberOfWorkers: Number("int"),
63
63
  * // SecurityConfiguration: "STRING_VALUE",
64
64
  * // LogGroupName: "STRING_VALUE",
@@ -59,7 +59,7 @@ export interface GetJobRunsCommandOutput extends GetJobRunsResponse, __MetadataB
59
59
  * // ExecutionTime: Number("int"),
60
60
  * // Timeout: Number("int"),
61
61
  * // MaxCapacity: Number("double"),
62
- * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X",
62
+ * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X",
63
63
  * // NumberOfWorkers: Number("int"),
64
64
  * // SecurityConfiguration: "STRING_VALUE",
65
65
  * // LogGroupName: "STRING_VALUE",