@aws-sdk/client-glue 3.441.0 → 3.445.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_1.js +1 -7
- package/dist-cjs/models/models_2.js +7 -1
- package/dist-cjs/protocols/Aws_json1_1.js +4 -0
- package/dist-es/models/models_1.js +0 -6
- package/dist-es/models/models_2.js +6 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -0
- package/dist-types/commands/BatchGetJobsCommand.d.ts +16 -0
- package/dist-types/commands/CreateDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/GetJobCommand.d.ts +16 -0
- package/dist-types/commands/GetJobsCommand.d.ts +16 -0
- package/dist-types/commands/GetTriggersCommand.d.ts +2 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +16 -0
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +74 -232
- package/dist-types/models/models_1.d.ts +232 -30
- package/dist-types/models/models_2.d.ts +42 -2
- package/dist-types/ts3.4/commands/CreateDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTriggersCommand.d.ts +2 -1
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -38
- package/dist-types/ts3.4/models/models_1.d.ts +38 -12
- package/dist-types/ts3.4/models/models_2.d.ts +16 -1
- package/package.json +4 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.StatementState = exports.SchemaDiffType = exports.PartitionIndexStatus = exports.BackfillErrorCode = exports.TransformSortColumnType = exports.TransformStatusType = exports.SortDirectionType = exports.TaskRunSortColumnType = exports.TaskType = exports.CatalogEncryptionMode = exports.ResourceShareType = exports.ColumnStatisticsType = exports.BlueprintRunState = exports.ConditionCheckFailureException = exports.RegistryStatus = exports.ConflictException = exports.SchedulerTransitioningException = exports.CrawlerRunningException = exports.ResourceType = exports.PrincipalType = exports.MetadataOperation = exports.SessionStatus = exports.S3EncryptionMode = exports.JobBookmarksEncryptionMode = exports.CloudWatchEncryptionMode = exports.Language = exports.SchemaVersionStatus = exports.SchemaStatus = exports.Compatibility = exports.MLUserDataEncryptionModeString = exports.TransformType = exports.ValidationException = void 0;
|
|
4
4
|
const GlueServiceException_1 = require("./GlueServiceException");
|
|
5
5
|
class ValidationException extends GlueServiceException_1.GlueServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -218,9 +218,3 @@ exports.StatementState = {
|
|
|
218
218
|
RUNNING: "RUNNING",
|
|
219
219
|
WAITING: "WAITING",
|
|
220
220
|
};
|
|
221
|
-
exports.PermissionType = {
|
|
222
|
-
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
223
|
-
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
224
|
-
NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION",
|
|
225
|
-
NESTED_PERMISSION: "NESTED_PERMISSION",
|
|
226
|
-
};
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetJobsResponseFilterSensitiveLog = exports.BatchGetJobsResponseFilterSensitiveLog = exports.UpdateJobRequestFilterSensitiveLog = exports.GetJobResponseFilterSensitiveLog = exports.JobUpdateFilterSensitiveLog = exports.JobFilterSensitiveLog = exports.CreateJobRequestFilterSensitiveLog = exports.VersionMismatchException = exports.SchedulerNotRunningException = exports.CrawlerStoppingException = exports.CrawlerNotRunningException = exports.MLTransformNotReadyException = exports.SchedulerRunningException = exports.NoScheduleException = exports.IllegalBlueprintStateException = exports.Sort = exports.Comparator = exports.IllegalWorkflowStateException = exports.ConcurrentRunsExceededException = exports.ExistCondition = exports.EnableHybridValues = exports.CrawlerHistoryState = exports.FilterOperator = exports.FieldName = exports.PermissionTypeMismatchException = void 0;
|
|
3
|
+
exports.GetJobsResponseFilterSensitiveLog = exports.BatchGetJobsResponseFilterSensitiveLog = exports.UpdateJobRequestFilterSensitiveLog = exports.GetJobResponseFilterSensitiveLog = exports.JobUpdateFilterSensitiveLog = exports.JobFilterSensitiveLog = exports.CreateJobRequestFilterSensitiveLog = exports.VersionMismatchException = exports.SchedulerNotRunningException = exports.CrawlerStoppingException = exports.CrawlerNotRunningException = exports.MLTransformNotReadyException = exports.SchedulerRunningException = exports.NoScheduleException = exports.IllegalBlueprintStateException = exports.Sort = exports.Comparator = exports.IllegalWorkflowStateException = exports.ConcurrentRunsExceededException = exports.ExistCondition = exports.EnableHybridValues = exports.CrawlerHistoryState = exports.FilterOperator = exports.FieldName = exports.PermissionTypeMismatchException = exports.PermissionType = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const GlueServiceException_1 = require("./GlueServiceException");
|
|
6
|
+
exports.PermissionType = {
|
|
7
|
+
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
8
|
+
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
9
|
+
NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION",
|
|
10
|
+
NESTED_PERMISSION: "NESTED_PERMISSION",
|
|
11
|
+
};
|
|
6
12
|
class PermissionTypeMismatchException extends GlueServiceException_1.GlueServiceException {
|
|
7
13
|
constructor(opts) {
|
|
8
14
|
super({
|
|
@@ -10639,6 +10639,8 @@ const se_CodeGenConfigurationNode = (input, context) => {
|
|
|
10639
10639
|
CatalogKinesisSource: (_) => se_CatalogKinesisSource(_, context),
|
|
10640
10640
|
CatalogSource: smithy_client_1._json,
|
|
10641
10641
|
CatalogTarget: smithy_client_1._json,
|
|
10642
|
+
ConnectorDataSource: smithy_client_1._json,
|
|
10643
|
+
ConnectorDataTarget: smithy_client_1._json,
|
|
10642
10644
|
CustomCode: smithy_client_1._json,
|
|
10643
10645
|
DirectJDBCSource: smithy_client_1._json,
|
|
10644
10646
|
DirectKafkaSource: (_) => se_DirectKafkaSource(_, context),
|
|
@@ -11465,6 +11467,8 @@ const de_CodeGenConfigurationNode = (output, context) => {
|
|
|
11465
11467
|
CatalogKinesisSource: (_) => de_CatalogKinesisSource(_, context),
|
|
11466
11468
|
CatalogSource: smithy_client_1._json,
|
|
11467
11469
|
CatalogTarget: smithy_client_1._json,
|
|
11470
|
+
ConnectorDataSource: smithy_client_1._json,
|
|
11471
|
+
ConnectorDataTarget: smithy_client_1._json,
|
|
11468
11472
|
CustomCode: smithy_client_1._json,
|
|
11469
11473
|
DirectJDBCSource: smithy_client_1._json,
|
|
11470
11474
|
DirectKafkaSource: (_) => de_DirectKafkaSource(_, context),
|
|
@@ -210,9 +210,3 @@ export const StatementState = {
|
|
|
210
210
|
RUNNING: "RUNNING",
|
|
211
211
|
WAITING: "WAITING",
|
|
212
212
|
};
|
|
213
|
-
export const PermissionType = {
|
|
214
|
-
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
215
|
-
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
216
|
-
NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION",
|
|
217
|
-
NESTED_PERMISSION: "NESTED_PERMISSION",
|
|
218
|
-
};
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
+
export const PermissionType = {
|
|
4
|
+
CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",
|
|
5
|
+
COLUMN_PERMISSION: "COLUMN_PERMISSION",
|
|
6
|
+
NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION",
|
|
7
|
+
NESTED_PERMISSION: "NESTED_PERMISSION",
|
|
8
|
+
};
|
|
3
9
|
export class PermissionTypeMismatchException extends __BaseException {
|
|
4
10
|
constructor(opts) {
|
|
5
11
|
super({
|
|
@@ -10224,6 +10224,8 @@ const se_CodeGenConfigurationNode = (input, context) => {
|
|
|
10224
10224
|
CatalogKinesisSource: (_) => se_CatalogKinesisSource(_, context),
|
|
10225
10225
|
CatalogSource: _json,
|
|
10226
10226
|
CatalogTarget: _json,
|
|
10227
|
+
ConnectorDataSource: _json,
|
|
10228
|
+
ConnectorDataTarget: _json,
|
|
10227
10229
|
CustomCode: _json,
|
|
10228
10230
|
DirectJDBCSource: _json,
|
|
10229
10231
|
DirectKafkaSource: (_) => se_DirectKafkaSource(_, context),
|
|
@@ -11050,6 +11052,8 @@ const de_CodeGenConfigurationNode = (output, context) => {
|
|
|
11050
11052
|
CatalogKinesisSource: (_) => de_CatalogKinesisSource(_, context),
|
|
11051
11053
|
CatalogSource: _json,
|
|
11052
11054
|
CatalogTarget: _json,
|
|
11055
|
+
ConnectorDataSource: _json,
|
|
11056
|
+
ConnectorDataTarget: _json,
|
|
11053
11057
|
CustomCode: _json,
|
|
11054
11058
|
DirectJDBCSource: _json,
|
|
11055
11059
|
DirectKafkaSource: (_) => de_DirectKafkaSource(_, context),
|
|
@@ -1085,6 +1085,22 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
|
|
|
1085
1085
|
* // },
|
|
1086
1086
|
* // Inputs: "<OneInput>",
|
|
1087
1087
|
* // },
|
|
1088
|
+
* // ConnectorDataSource: { // ConnectorDataSource
|
|
1089
|
+
* // Name: "STRING_VALUE", // required
|
|
1090
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1091
|
+
* // Data: { // ConnectorOptions // required
|
|
1092
|
+
* // "<keys>": "STRING_VALUE",
|
|
1093
|
+
* // },
|
|
1094
|
+
* // OutputSchemas: "<GlueSchemas>",
|
|
1095
|
+
* // },
|
|
1096
|
+
* // ConnectorDataTarget: { // ConnectorDataTarget
|
|
1097
|
+
* // Name: "STRING_VALUE", // required
|
|
1098
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1099
|
+
* // Data: { // required
|
|
1100
|
+
* // "<keys>": "STRING_VALUE",
|
|
1101
|
+
* // },
|
|
1102
|
+
* // Inputs: "<OneInput>",
|
|
1103
|
+
* // },
|
|
1088
1104
|
* // },
|
|
1089
1105
|
* // },
|
|
1090
1106
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
5
|
-
import { CreateDevEndpointRequest, CreateDevEndpointResponse } from "../models/
|
|
5
|
+
import { CreateDevEndpointRequest, CreateDevEndpointResponse } from "../models/models_1";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -1076,6 +1076,22 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
1076
1076
|
* },
|
|
1077
1077
|
* Inputs: "<OneInput>",
|
|
1078
1078
|
* },
|
|
1079
|
+
* ConnectorDataSource: { // ConnectorDataSource
|
|
1080
|
+
* Name: "STRING_VALUE", // required
|
|
1081
|
+
* ConnectionType: "STRING_VALUE", // required
|
|
1082
|
+
* Data: { // ConnectorOptions // required
|
|
1083
|
+
* "<keys>": "STRING_VALUE",
|
|
1084
|
+
* },
|
|
1085
|
+
* OutputSchemas: "<GlueSchemas>",
|
|
1086
|
+
* },
|
|
1087
|
+
* ConnectorDataTarget: { // ConnectorDataTarget
|
|
1088
|
+
* Name: "STRING_VALUE", // required
|
|
1089
|
+
* ConnectionType: "STRING_VALUE", // required
|
|
1090
|
+
* Data: { // required
|
|
1091
|
+
* "<keys>": "STRING_VALUE",
|
|
1092
|
+
* },
|
|
1093
|
+
* Inputs: "<OneInput>",
|
|
1094
|
+
* },
|
|
1079
1095
|
* },
|
|
1080
1096
|
* },
|
|
1081
1097
|
* ExecutionClass: "FLEX" || "STANDARD",
|
|
@@ -1081,6 +1081,22 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
1081
1081
|
* // },
|
|
1082
1082
|
* // Inputs: "<OneInput>",
|
|
1083
1083
|
* // },
|
|
1084
|
+
* // ConnectorDataSource: { // ConnectorDataSource
|
|
1085
|
+
* // Name: "STRING_VALUE", // required
|
|
1086
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1087
|
+
* // Data: { // ConnectorOptions // required
|
|
1088
|
+
* // "<keys>": "STRING_VALUE",
|
|
1089
|
+
* // },
|
|
1090
|
+
* // OutputSchemas: "<GlueSchemas>",
|
|
1091
|
+
* // },
|
|
1092
|
+
* // ConnectorDataTarget: { // ConnectorDataTarget
|
|
1093
|
+
* // Name: "STRING_VALUE", // required
|
|
1094
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1095
|
+
* // Data: { // required
|
|
1096
|
+
* // "<keys>": "STRING_VALUE",
|
|
1097
|
+
* // },
|
|
1098
|
+
* // Inputs: "<OneInput>",
|
|
1099
|
+
* // },
|
|
1084
1100
|
* // },
|
|
1085
1101
|
* // },
|
|
1086
1102
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
@@ -1083,6 +1083,22 @@ export interface GetJobsCommandOutput extends GetJobsResponse, __MetadataBearer
|
|
|
1083
1083
|
* // },
|
|
1084
1084
|
* // Inputs: "<OneInput>",
|
|
1085
1085
|
* // },
|
|
1086
|
+
* // ConnectorDataSource: { // ConnectorDataSource
|
|
1087
|
+
* // Name: "STRING_VALUE", // required
|
|
1088
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1089
|
+
* // Data: { // ConnectorOptions // required
|
|
1090
|
+
* // "<keys>": "STRING_VALUE",
|
|
1091
|
+
* // },
|
|
1092
|
+
* // OutputSchemas: "<GlueSchemas>",
|
|
1093
|
+
* // },
|
|
1094
|
+
* // ConnectorDataTarget: { // ConnectorDataTarget
|
|
1095
|
+
* // Name: "STRING_VALUE", // required
|
|
1096
|
+
* // ConnectionType: "STRING_VALUE", // required
|
|
1097
|
+
* // Data: { // required
|
|
1098
|
+
* // "<keys>": "STRING_VALUE",
|
|
1099
|
+
* // },
|
|
1100
|
+
* // Inputs: "<OneInput>",
|
|
1101
|
+
* // },
|
|
1086
1102
|
* // },
|
|
1087
1103
|
* // },
|
|
1088
1104
|
* // ExecutionClass: "FLEX" || "STANDARD",
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
5
|
-
import { GetTriggersRequest
|
|
5
|
+
import { GetTriggersRequest } from "../models/models_1";
|
|
6
|
+
import { GetTriggersResponse } from "../models/models_2";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
@@ -1073,6 +1073,22 @@ export interface UpdateJobCommandOutput extends UpdateJobResponse, __MetadataBea
|
|
|
1073
1073
|
* },
|
|
1074
1074
|
* Inputs: "<OneInput>",
|
|
1075
1075
|
* },
|
|
1076
|
+
* ConnectorDataSource: { // ConnectorDataSource
|
|
1077
|
+
* Name: "STRING_VALUE", // required
|
|
1078
|
+
* ConnectionType: "STRING_VALUE", // required
|
|
1079
|
+
* Data: { // ConnectorOptions // required
|
|
1080
|
+
* "<keys>": "STRING_VALUE",
|
|
1081
|
+
* },
|
|
1082
|
+
* OutputSchemas: "<GlueSchemas>",
|
|
1083
|
+
* },
|
|
1084
|
+
* ConnectorDataTarget: { // ConnectorDataTarget
|
|
1085
|
+
* Name: "STRING_VALUE", // required
|
|
1086
|
+
* ConnectionType: "STRING_VALUE", // required
|
|
1087
|
+
* Data: { // required
|
|
1088
|
+
* "<keys>": "STRING_VALUE",
|
|
1089
|
+
* },
|
|
1090
|
+
* Inputs: "<OneInput>",
|
|
1091
|
+
* },
|
|
1076
1092
|
* },
|
|
1077
1093
|
* },
|
|
1078
1094
|
* ExecutionClass: "FLEX" || "STANDARD",
|
package/dist-types/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
export * from "./GlueClient";
|
|
8
8
|
export * from "./Glue";
|
|
9
9
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
11
|
+
export { GlueExtensionConfiguration } from "./extensionConfiguration";
|
|
10
12
|
export * from "./commands";
|
|
11
13
|
export * from "./pagination";
|
|
12
14
|
export * from "./models";
|
|
@@ -2796,6 +2796,80 @@ export interface BasicCatalogTarget {
|
|
|
2796
2796
|
*/
|
|
2797
2797
|
Table: string | undefined;
|
|
2798
2798
|
}
|
|
2799
|
+
/**
|
|
2800
|
+
* @public
|
|
2801
|
+
* <p>Specifies a source generated with standard connection options.</p>
|
|
2802
|
+
*/
|
|
2803
|
+
export interface ConnectorDataSource {
|
|
2804
|
+
/**
|
|
2805
|
+
* @public
|
|
2806
|
+
* <p>The name of this source node.</p>
|
|
2807
|
+
*/
|
|
2808
|
+
Name: string | undefined;
|
|
2809
|
+
/**
|
|
2810
|
+
* @public
|
|
2811
|
+
* <p>The <code>connectionType</code>, as provided to the underlying Glue library. This node type supports
|
|
2812
|
+
* the following connection types: </p>
|
|
2813
|
+
* <ul>
|
|
2814
|
+
* <li>
|
|
2815
|
+
* <p>
|
|
2816
|
+
* <code>bigquery</code>
|
|
2817
|
+
* </p>
|
|
2818
|
+
* </li>
|
|
2819
|
+
* </ul>
|
|
2820
|
+
*/
|
|
2821
|
+
ConnectionType: string | undefined;
|
|
2822
|
+
/**
|
|
2823
|
+
* @public
|
|
2824
|
+
* <p>A map specifying connection options for the node. You can find standard connection options for the
|
|
2825
|
+
* corresponding connection type in the
|
|
2826
|
+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-connect.html">
|
|
2827
|
+
* Connection parameters</a> section of the Glue documentation.</p>
|
|
2828
|
+
*/
|
|
2829
|
+
Data: Record<string, string> | undefined;
|
|
2830
|
+
/**
|
|
2831
|
+
* @public
|
|
2832
|
+
* <p>Specifies the data schema for this source.</p>
|
|
2833
|
+
*/
|
|
2834
|
+
OutputSchemas?: GlueSchema[];
|
|
2835
|
+
}
|
|
2836
|
+
/**
|
|
2837
|
+
* @public
|
|
2838
|
+
* <p>Specifies a target generated with standard connection options.</p>
|
|
2839
|
+
*/
|
|
2840
|
+
export interface ConnectorDataTarget {
|
|
2841
|
+
/**
|
|
2842
|
+
* @public
|
|
2843
|
+
* <p>The name of this target node.</p>
|
|
2844
|
+
*/
|
|
2845
|
+
Name: string | undefined;
|
|
2846
|
+
/**
|
|
2847
|
+
* @public
|
|
2848
|
+
* <p>The <code>connectionType</code>, as provided to the underlying Glue library. This node type supports
|
|
2849
|
+
* the following connection types: </p>
|
|
2850
|
+
* <ul>
|
|
2851
|
+
* <li>
|
|
2852
|
+
* <p>
|
|
2853
|
+
* <code>bigquery</code>
|
|
2854
|
+
* </p>
|
|
2855
|
+
* </li>
|
|
2856
|
+
* </ul>
|
|
2857
|
+
*/
|
|
2858
|
+
ConnectionType: string | undefined;
|
|
2859
|
+
/**
|
|
2860
|
+
* @public
|
|
2861
|
+
* <p>A map specifying connection options for the node. You can find standard connection options for the
|
|
2862
|
+
* corresponding connection type in the
|
|
2863
|
+
* <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-connect.html">
|
|
2864
|
+
* Connection parameters</a> section of the Glue documentation.</p>
|
|
2865
|
+
*/
|
|
2866
|
+
Data: Record<string, string> | undefined;
|
|
2867
|
+
/**
|
|
2868
|
+
* @public
|
|
2869
|
+
* <p>The nodes that are inputs to the data target.</p>
|
|
2870
|
+
*/
|
|
2871
|
+
Inputs?: string[];
|
|
2872
|
+
}
|
|
2799
2873
|
/**
|
|
2800
2874
|
* @public
|
|
2801
2875
|
* <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
|
|
@@ -7883,235 +7957,3 @@ export interface CreateDataQualityRulesetResponse {
|
|
|
7883
7957
|
*/
|
|
7884
7958
|
Name?: string;
|
|
7885
7959
|
}
|
|
7886
|
-
/**
|
|
7887
|
-
* @public
|
|
7888
|
-
*/
|
|
7889
|
-
export interface CreateDevEndpointRequest {
|
|
7890
|
-
/**
|
|
7891
|
-
* @public
|
|
7892
|
-
* <p>The name to be assigned to the new <code>DevEndpoint</code>.</p>
|
|
7893
|
-
*/
|
|
7894
|
-
EndpointName: string | undefined;
|
|
7895
|
-
/**
|
|
7896
|
-
* @public
|
|
7897
|
-
* <p>The IAM role for the <code>DevEndpoint</code>.</p>
|
|
7898
|
-
*/
|
|
7899
|
-
RoleArn: string | undefined;
|
|
7900
|
-
/**
|
|
7901
|
-
* @public
|
|
7902
|
-
* <p>Security group IDs for the security groups to be used by the new
|
|
7903
|
-
* <code>DevEndpoint</code>.</p>
|
|
7904
|
-
*/
|
|
7905
|
-
SecurityGroupIds?: string[];
|
|
7906
|
-
/**
|
|
7907
|
-
* @public
|
|
7908
|
-
* <p>The subnet ID for the new <code>DevEndpoint</code> to use.</p>
|
|
7909
|
-
*/
|
|
7910
|
-
SubnetId?: string;
|
|
7911
|
-
/**
|
|
7912
|
-
* @public
|
|
7913
|
-
* <p>The public key to be used by this <code>DevEndpoint</code> for authentication. This
|
|
7914
|
-
* attribute is provided for backward compatibility because the recommended attribute to use is
|
|
7915
|
-
* public keys.</p>
|
|
7916
|
-
*/
|
|
7917
|
-
PublicKey?: string;
|
|
7918
|
-
/**
|
|
7919
|
-
* @public
|
|
7920
|
-
* <p>A list of public keys to be used by the development endpoints for authentication. The use
|
|
7921
|
-
* of this attribute is preferred over a single public key because the public keys allow you to
|
|
7922
|
-
* have a different private key per client.</p>
|
|
7923
|
-
* <note>
|
|
7924
|
-
* <p>If you previously created an endpoint with a public key, you must remove that key to be able
|
|
7925
|
-
* to set a list of public keys. Call the <code>UpdateDevEndpoint</code> API with the public
|
|
7926
|
-
* key content in the <code>deletePublicKeys</code> attribute, and the list of new keys in the
|
|
7927
|
-
* <code>addPublicKeys</code> attribute.</p>
|
|
7928
|
-
* </note>
|
|
7929
|
-
*/
|
|
7930
|
-
PublicKeys?: string[];
|
|
7931
|
-
/**
|
|
7932
|
-
* @public
|
|
7933
|
-
* <p>The number of Glue Data Processing Units (DPUs) to allocate to this
|
|
7934
|
-
* <code>DevEndpoint</code>.</p>
|
|
7935
|
-
*/
|
|
7936
|
-
NumberOfNodes?: number;
|
|
7937
|
-
/**
|
|
7938
|
-
* @public
|
|
7939
|
-
* <p>The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
7940
|
-
* <ul>
|
|
7941
|
-
* <li>
|
|
7942
|
-
* <p>For the <code>Standard</code> worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.</p>
|
|
7943
|
-
* </li>
|
|
7944
|
-
* <li>
|
|
7945
|
-
* <p>For the <code>G.1X</code> worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.</p>
|
|
7946
|
-
* </li>
|
|
7947
|
-
* <li>
|
|
7948
|
-
* <p>For the <code>G.2X</code> worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.</p>
|
|
7949
|
-
* </li>
|
|
7950
|
-
* </ul>
|
|
7951
|
-
* <p>Known issue: when a development endpoint is created with the <code>G.2X</code>
|
|
7952
|
-
* <code>WorkerType</code> configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk. </p>
|
|
7953
|
-
*/
|
|
7954
|
-
WorkerType?: WorkerType;
|
|
7955
|
-
/**
|
|
7956
|
-
* @public
|
|
7957
|
-
* <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
|
|
7958
|
-
* <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
|
|
7959
|
-
* <p>Development endpoints that are created without specifying a Glue version default to Glue 0.9.</p>
|
|
7960
|
-
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
7961
|
-
*/
|
|
7962
|
-
GlueVersion?: string;
|
|
7963
|
-
/**
|
|
7964
|
-
* @public
|
|
7965
|
-
* <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
|
|
7966
|
-
* <p>The maximum number of workers you can define are 299 for <code>G.1X</code>, and 149 for <code>G.2X</code>. </p>
|
|
7967
|
-
*/
|
|
7968
|
-
NumberOfWorkers?: number;
|
|
7969
|
-
/**
|
|
7970
|
-
* @public
|
|
7971
|
-
* <p>The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in
|
|
7972
|
-
* your <code>DevEndpoint</code>. Multiple values must be complete paths separated by a
|
|
7973
|
-
* comma.</p>
|
|
7974
|
-
* <note>
|
|
7975
|
-
* <p>You can only use pure Python libraries with a <code>DevEndpoint</code>. Libraries that rely on
|
|
7976
|
-
* C extensions, such as the <a href="http://pandas.pydata.org/">pandas</a> Python data
|
|
7977
|
-
* analysis library, are not yet supported.</p>
|
|
7978
|
-
* </note>
|
|
7979
|
-
*/
|
|
7980
|
-
ExtraPythonLibsS3Path?: string;
|
|
7981
|
-
/**
|
|
7982
|
-
* @public
|
|
7983
|
-
* <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
|
|
7984
|
-
* in your <code>DevEndpoint</code>.</p>
|
|
7985
|
-
*/
|
|
7986
|
-
ExtraJarsS3Path?: string;
|
|
7987
|
-
/**
|
|
7988
|
-
* @public
|
|
7989
|
-
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
|
|
7990
|
-
* <code>DevEndpoint</code>.</p>
|
|
7991
|
-
*/
|
|
7992
|
-
SecurityConfiguration?: string;
|
|
7993
|
-
/**
|
|
7994
|
-
* @public
|
|
7995
|
-
* <p>The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
|
|
7996
|
-
*/
|
|
7997
|
-
Tags?: Record<string, string>;
|
|
7998
|
-
/**
|
|
7999
|
-
* @public
|
|
8000
|
-
* <p>A map of arguments used to configure the <code>DevEndpoint</code>.</p>
|
|
8001
|
-
*/
|
|
8002
|
-
Arguments?: Record<string, string>;
|
|
8003
|
-
}
|
|
8004
|
-
/**
|
|
8005
|
-
* @public
|
|
8006
|
-
*/
|
|
8007
|
-
export interface CreateDevEndpointResponse {
|
|
8008
|
-
/**
|
|
8009
|
-
* @public
|
|
8010
|
-
* <p>The name assigned to the new <code>DevEndpoint</code>.</p>
|
|
8011
|
-
*/
|
|
8012
|
-
EndpointName?: string;
|
|
8013
|
-
/**
|
|
8014
|
-
* @public
|
|
8015
|
-
* <p>The current status of the new <code>DevEndpoint</code>.</p>
|
|
8016
|
-
*/
|
|
8017
|
-
Status?: string;
|
|
8018
|
-
/**
|
|
8019
|
-
* @public
|
|
8020
|
-
* <p>The security groups assigned to the new <code>DevEndpoint</code>.</p>
|
|
8021
|
-
*/
|
|
8022
|
-
SecurityGroupIds?: string[];
|
|
8023
|
-
/**
|
|
8024
|
-
* @public
|
|
8025
|
-
* <p>The subnet ID assigned to the new <code>DevEndpoint</code>.</p>
|
|
8026
|
-
*/
|
|
8027
|
-
SubnetId?: string;
|
|
8028
|
-
/**
|
|
8029
|
-
* @public
|
|
8030
|
-
* <p>The Amazon Resource Name (ARN) of the role assigned to the new
|
|
8031
|
-
* <code>DevEndpoint</code>.</p>
|
|
8032
|
-
*/
|
|
8033
|
-
RoleArn?: string;
|
|
8034
|
-
/**
|
|
8035
|
-
* @public
|
|
8036
|
-
* <p>The address of the YARN endpoint used by this <code>DevEndpoint</code>.</p>
|
|
8037
|
-
*/
|
|
8038
|
-
YarnEndpointAddress?: string;
|
|
8039
|
-
/**
|
|
8040
|
-
* @public
|
|
8041
|
-
* <p>The Apache Zeppelin port for the remote Apache Spark interpreter.</p>
|
|
8042
|
-
*/
|
|
8043
|
-
ZeppelinRemoteSparkInterpreterPort?: number;
|
|
8044
|
-
/**
|
|
8045
|
-
* @public
|
|
8046
|
-
* <p>The number of Glue Data Processing Units (DPUs) allocated to this DevEndpoint.</p>
|
|
8047
|
-
*/
|
|
8048
|
-
NumberOfNodes?: number;
|
|
8049
|
-
/**
|
|
8050
|
-
* @public
|
|
8051
|
-
* <p>The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X.</p>
|
|
8052
|
-
*/
|
|
8053
|
-
WorkerType?: WorkerType;
|
|
8054
|
-
/**
|
|
8055
|
-
* @public
|
|
8056
|
-
* <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
|
|
8057
|
-
* <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
|
|
8058
|
-
*/
|
|
8059
|
-
GlueVersion?: string;
|
|
8060
|
-
/**
|
|
8061
|
-
* @public
|
|
8062
|
-
* <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
|
|
8063
|
-
*/
|
|
8064
|
-
NumberOfWorkers?: number;
|
|
8065
|
-
/**
|
|
8066
|
-
* @public
|
|
8067
|
-
* <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
|
|
8068
|
-
*/
|
|
8069
|
-
AvailabilityZone?: string;
|
|
8070
|
-
/**
|
|
8071
|
-
* @public
|
|
8072
|
-
* <p>The ID of the virtual private cloud (VPC) used by this <code>DevEndpoint</code>.</p>
|
|
8073
|
-
*/
|
|
8074
|
-
VpcId?: string;
|
|
8075
|
-
/**
|
|
8076
|
-
* @public
|
|
8077
|
-
* <p>The paths to one or more Python libraries in an S3 bucket that will be loaded in your
|
|
8078
|
-
* <code>DevEndpoint</code>.</p>
|
|
8079
|
-
*/
|
|
8080
|
-
ExtraPythonLibsS3Path?: string;
|
|
8081
|
-
/**
|
|
8082
|
-
* @public
|
|
8083
|
-
* <p>Path to one or more Java <code>.jar</code> files in an S3 bucket that will be loaded in
|
|
8084
|
-
* your <code>DevEndpoint</code>.</p>
|
|
8085
|
-
*/
|
|
8086
|
-
ExtraJarsS3Path?: string;
|
|
8087
|
-
/**
|
|
8088
|
-
* @public
|
|
8089
|
-
* <p>The reason for a current failure in this <code>DevEndpoint</code>.</p>
|
|
8090
|
-
*/
|
|
8091
|
-
FailureReason?: string;
|
|
8092
|
-
/**
|
|
8093
|
-
* @public
|
|
8094
|
-
* <p>The name of the <code>SecurityConfiguration</code> structure being used with this
|
|
8095
|
-
* <code>DevEndpoint</code>.</p>
|
|
8096
|
-
*/
|
|
8097
|
-
SecurityConfiguration?: string;
|
|
8098
|
-
/**
|
|
8099
|
-
* @public
|
|
8100
|
-
* <p>The point in time at which this <code>DevEndpoint</code> was created.</p>
|
|
8101
|
-
*/
|
|
8102
|
-
CreatedTimestamp?: Date;
|
|
8103
|
-
/**
|
|
8104
|
-
* @public
|
|
8105
|
-
* <p>The map of arguments used to configure this <code>DevEndpoint</code>.</p>
|
|
8106
|
-
* <p>Valid arguments are:</p>
|
|
8107
|
-
* <ul>
|
|
8108
|
-
* <li>
|
|
8109
|
-
* <p>
|
|
8110
|
-
* <code>"--enable-glue-datacatalog": ""</code>
|
|
8111
|
-
* </p>
|
|
8112
|
-
* </li>
|
|
8113
|
-
* </ul>
|
|
8114
|
-
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
8115
|
-
*/
|
|
8116
|
-
Arguments?: Record<string, string>;
|
|
8117
|
-
}
|
|
@@ -1,6 +1,238 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Blueprint, Column, ConnectionPropertyKey, ConnectionsList, ConnectionType, Crawler, CsvHeaderOption, CsvSerdeOption, DatabaseIdentifier, DataFormat, DataQualityRuleResult, DataQualityTargetTable, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, FederatedDatabase, GlueTable, JobRun, Partition, PartitionInput, PartitionValueList, PhysicalConnectionRequirements, Predicate, PrincipalPermissions, SchemaId, StorageDescriptor, TaskStatusType, Trigger, TriggerType, WorkerType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CreateDevEndpointRequest {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>The name to be assigned to the new <code>DevEndpoint</code>.</p>
|
|
11
|
+
*/
|
|
12
|
+
EndpointName: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* <p>The IAM role for the <code>DevEndpoint</code>.</p>
|
|
16
|
+
*/
|
|
17
|
+
RoleArn: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* <p>Security group IDs for the security groups to be used by the new
|
|
21
|
+
* <code>DevEndpoint</code>.</p>
|
|
22
|
+
*/
|
|
23
|
+
SecurityGroupIds?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>The subnet ID for the new <code>DevEndpoint</code> to use.</p>
|
|
27
|
+
*/
|
|
28
|
+
SubnetId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <p>The public key to be used by this <code>DevEndpoint</code> for authentication. This
|
|
32
|
+
* attribute is provided for backward compatibility because the recommended attribute to use is
|
|
33
|
+
* public keys.</p>
|
|
34
|
+
*/
|
|
35
|
+
PublicKey?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>A list of public keys to be used by the development endpoints for authentication. The use
|
|
39
|
+
* of this attribute is preferred over a single public key because the public keys allow you to
|
|
40
|
+
* have a different private key per client.</p>
|
|
41
|
+
* <note>
|
|
42
|
+
* <p>If you previously created an endpoint with a public key, you must remove that key to be able
|
|
43
|
+
* to set a list of public keys. Call the <code>UpdateDevEndpoint</code> API with the public
|
|
44
|
+
* key content in the <code>deletePublicKeys</code> attribute, and the list of new keys in the
|
|
45
|
+
* <code>addPublicKeys</code> attribute.</p>
|
|
46
|
+
* </note>
|
|
47
|
+
*/
|
|
48
|
+
PublicKeys?: string[];
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
* <p>The number of Glue Data Processing Units (DPUs) to allocate to this
|
|
52
|
+
* <code>DevEndpoint</code>.</p>
|
|
53
|
+
*/
|
|
54
|
+
NumberOfNodes?: number;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* <p>The type of predefined worker that is allocated to the development endpoint. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
58
|
+
* <ul>
|
|
59
|
+
* <li>
|
|
60
|
+
* <p>For the <code>Standard</code> worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker.</p>
|
|
61
|
+
* </li>
|
|
62
|
+
* <li>
|
|
63
|
+
* <p>For the <code>G.1X</code> worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.</p>
|
|
64
|
+
* </li>
|
|
65
|
+
* <li>
|
|
66
|
+
* <p>For the <code>G.2X</code> worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.</p>
|
|
67
|
+
* </li>
|
|
68
|
+
* </ul>
|
|
69
|
+
* <p>Known issue: when a development endpoint is created with the <code>G.2X</code>
|
|
70
|
+
* <code>WorkerType</code> configuration, the Spark drivers for the development endpoint will run on 4 vCPU, 16 GB of memory, and a 64 GB disk. </p>
|
|
71
|
+
*/
|
|
72
|
+
WorkerType?: WorkerType;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
|
|
76
|
+
* <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
|
|
77
|
+
* <p>Development endpoints that are created without specifying a Glue version default to Glue 0.9.</p>
|
|
78
|
+
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
79
|
+
*/
|
|
80
|
+
GlueVersion?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
* <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
|
|
84
|
+
* <p>The maximum number of workers you can define are 299 for <code>G.1X</code>, and 149 for <code>G.2X</code>. </p>
|
|
85
|
+
*/
|
|
86
|
+
NumberOfWorkers?: number;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* <p>The paths to one or more Python libraries in an Amazon S3 bucket that should be loaded in
|
|
90
|
+
* your <code>DevEndpoint</code>. Multiple values must be complete paths separated by a
|
|
91
|
+
* comma.</p>
|
|
92
|
+
* <note>
|
|
93
|
+
* <p>You can only use pure Python libraries with a <code>DevEndpoint</code>. Libraries that rely on
|
|
94
|
+
* C extensions, such as the <a href="http://pandas.pydata.org/">pandas</a> Python data
|
|
95
|
+
* analysis library, are not yet supported.</p>
|
|
96
|
+
* </note>
|
|
97
|
+
*/
|
|
98
|
+
ExtraPythonLibsS3Path?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
* <p>The path to one or more Java <code>.jar</code> files in an S3 bucket that should be loaded
|
|
102
|
+
* in your <code>DevEndpoint</code>.</p>
|
|
103
|
+
*/
|
|
104
|
+
ExtraJarsS3Path?: string;
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* <p>The name of the <code>SecurityConfiguration</code> structure to be used with this
|
|
108
|
+
* <code>DevEndpoint</code>.</p>
|
|
109
|
+
*/
|
|
110
|
+
SecurityConfiguration?: string;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* <p>The tags to use with this DevEndpoint. You may use tags to limit access to the DevEndpoint. For more information about tags in Glue, see <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html">Amazon Web Services Tags in Glue</a> in the developer guide.</p>
|
|
114
|
+
*/
|
|
115
|
+
Tags?: Record<string, string>;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* <p>A map of arguments used to configure the <code>DevEndpoint</code>.</p>
|
|
119
|
+
*/
|
|
120
|
+
Arguments?: Record<string, string>;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export interface CreateDevEndpointResponse {
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* <p>The name assigned to the new <code>DevEndpoint</code>.</p>
|
|
129
|
+
*/
|
|
130
|
+
EndpointName?: string;
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* <p>The current status of the new <code>DevEndpoint</code>.</p>
|
|
134
|
+
*/
|
|
135
|
+
Status?: string;
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
* <p>The security groups assigned to the new <code>DevEndpoint</code>.</p>
|
|
139
|
+
*/
|
|
140
|
+
SecurityGroupIds?: string[];
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
* <p>The subnet ID assigned to the new <code>DevEndpoint</code>.</p>
|
|
144
|
+
*/
|
|
145
|
+
SubnetId?: string;
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* <p>The Amazon Resource Name (ARN) of the role assigned to the new
|
|
149
|
+
* <code>DevEndpoint</code>.</p>
|
|
150
|
+
*/
|
|
151
|
+
RoleArn?: string;
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* <p>The address of the YARN endpoint used by this <code>DevEndpoint</code>.</p>
|
|
155
|
+
*/
|
|
156
|
+
YarnEndpointAddress?: string;
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* <p>The Apache Zeppelin port for the remote Apache Spark interpreter.</p>
|
|
160
|
+
*/
|
|
161
|
+
ZeppelinRemoteSparkInterpreterPort?: number;
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* <p>The number of Glue Data Processing Units (DPUs) allocated to this DevEndpoint.</p>
|
|
165
|
+
*/
|
|
166
|
+
NumberOfNodes?: number;
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* <p>The type of predefined worker that is allocated to the development endpoint. May be a value of Standard, G.1X, or G.2X.</p>
|
|
170
|
+
*/
|
|
171
|
+
WorkerType?: WorkerType;
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* <p>Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for running your ETL scripts on development endpoints. </p>
|
|
175
|
+
* <p>For more information about the available Glue versions and corresponding Spark and Python versions, see <a href="https://docs.aws.amazon.com/glue/latest/dg/add-job.html">Glue version</a> in the developer guide.</p>
|
|
176
|
+
*/
|
|
177
|
+
GlueVersion?: string;
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* <p>The number of workers of a defined <code>workerType</code> that are allocated to the development endpoint.</p>
|
|
181
|
+
*/
|
|
182
|
+
NumberOfWorkers?: number;
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
|
|
186
|
+
*/
|
|
187
|
+
AvailabilityZone?: string;
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
* <p>The ID of the virtual private cloud (VPC) used by this <code>DevEndpoint</code>.</p>
|
|
191
|
+
*/
|
|
192
|
+
VpcId?: string;
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
* <p>The paths to one or more Python libraries in an S3 bucket that will be loaded in your
|
|
196
|
+
* <code>DevEndpoint</code>.</p>
|
|
197
|
+
*/
|
|
198
|
+
ExtraPythonLibsS3Path?: string;
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
* <p>Path to one or more Java <code>.jar</code> files in an S3 bucket that will be loaded in
|
|
202
|
+
* your <code>DevEndpoint</code>.</p>
|
|
203
|
+
*/
|
|
204
|
+
ExtraJarsS3Path?: string;
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
* <p>The reason for a current failure in this <code>DevEndpoint</code>.</p>
|
|
208
|
+
*/
|
|
209
|
+
FailureReason?: string;
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* <p>The name of the <code>SecurityConfiguration</code> structure being used with this
|
|
213
|
+
* <code>DevEndpoint</code>.</p>
|
|
214
|
+
*/
|
|
215
|
+
SecurityConfiguration?: string;
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
* <p>The point in time at which this <code>DevEndpoint</code> was created.</p>
|
|
219
|
+
*/
|
|
220
|
+
CreatedTimestamp?: Date;
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
* <p>The map of arguments used to configure this <code>DevEndpoint</code>.</p>
|
|
224
|
+
* <p>Valid arguments are:</p>
|
|
225
|
+
* <ul>
|
|
226
|
+
* <li>
|
|
227
|
+
* <p>
|
|
228
|
+
* <code>"--enable-glue-datacatalog": ""</code>
|
|
229
|
+
* </p>
|
|
230
|
+
* </li>
|
|
231
|
+
* </ul>
|
|
232
|
+
* <p>You can specify a version of Python support for development endpoints by using the <code>Arguments</code> parameter in the <code>CreateDevEndpoint</code> or <code>UpdateDevEndpoint</code> APIs. If no arguments are provided, the version defaults to Python 2.</p>
|
|
233
|
+
*/
|
|
234
|
+
Arguments?: Record<string, string>;
|
|
235
|
+
}
|
|
4
236
|
/**
|
|
5
237
|
* @public
|
|
6
238
|
* <p>A value could not be validated.</p>
|
|
@@ -6940,33 +7172,3 @@ export interface GetTriggersRequest {
|
|
|
6940
7172
|
*/
|
|
6941
7173
|
MaxResults?: number;
|
|
6942
7174
|
}
|
|
6943
|
-
/**
|
|
6944
|
-
* @public
|
|
6945
|
-
*/
|
|
6946
|
-
export interface GetTriggersResponse {
|
|
6947
|
-
/**
|
|
6948
|
-
* @public
|
|
6949
|
-
* <p>A list of triggers for the specified job.</p>
|
|
6950
|
-
*/
|
|
6951
|
-
Triggers?: Trigger[];
|
|
6952
|
-
/**
|
|
6953
|
-
* @public
|
|
6954
|
-
* <p>A continuation token, if not all the requested triggers
|
|
6955
|
-
* have yet been returned.</p>
|
|
6956
|
-
*/
|
|
6957
|
-
NextToken?: string;
|
|
6958
|
-
}
|
|
6959
|
-
/**
|
|
6960
|
-
* @public
|
|
6961
|
-
* @enum
|
|
6962
|
-
*/
|
|
6963
|
-
export declare const PermissionType: {
|
|
6964
|
-
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
6965
|
-
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
6966
|
-
readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
|
|
6967
|
-
readonly NESTED_PERMISSION: "NESTED_PERMISSION";
|
|
6968
|
-
};
|
|
6969
|
-
/**
|
|
6970
|
-
* @public
|
|
6971
|
-
*/
|
|
6972
|
-
export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
|
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, DatabaseInput, DataQualityTargetTable, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, Partition, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
-
import { ColumnStatistics, Compatibility, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, JobBookmarkEntry,
|
|
3
|
+
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, ConnectionInput, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, DatabaseInput, DataQualityTargetTable, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, Partition, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
+
import { ColumnStatistics, Compatibility, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, JobBookmarkEntry, PrincipalType, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionNumber, SchemaVersionStatus, Segment, Session, Statement, Table, TableInput, TransformFilterCriteria, TransformParameters, TransformSortCriteria, UserDefinedFunctionInput } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetTriggersResponse {
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* <p>A list of triggers for the specified job.</p>
|
|
12
|
+
*/
|
|
13
|
+
Triggers?: Trigger[];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* <p>A continuation token, if not all the requested triggers
|
|
17
|
+
* have yet been returned.</p>
|
|
18
|
+
*/
|
|
19
|
+
NextToken?: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
* @enum
|
|
24
|
+
*/
|
|
25
|
+
export declare const PermissionType: {
|
|
26
|
+
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
27
|
+
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
28
|
+
readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
|
|
29
|
+
readonly NESTED_PERMISSION: "NESTED_PERMISSION";
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
|
|
5
35
|
/**
|
|
6
36
|
* @public
|
|
7
37
|
*/
|
|
@@ -4714,6 +4744,16 @@ export interface CodeGenConfigurationNode {
|
|
|
4714
4744
|
* <p>Specifies a target that writes to a Snowflake data source.</p>
|
|
4715
4745
|
*/
|
|
4716
4746
|
SnowflakeTarget?: SnowflakeTarget;
|
|
4747
|
+
/**
|
|
4748
|
+
* @public
|
|
4749
|
+
* <p>Specifies a source generated with standard connection options.</p>
|
|
4750
|
+
*/
|
|
4751
|
+
ConnectorDataSource?: ConnectorDataSource;
|
|
4752
|
+
/**
|
|
4753
|
+
* @public
|
|
4754
|
+
* <p>Specifies a target generated with standard connection options.</p>
|
|
4755
|
+
*/
|
|
4756
|
+
ConnectorDataTarget?: ConnectorDataTarget;
|
|
4717
4757
|
}
|
|
4718
4758
|
/**
|
|
4719
4759
|
* @public
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
CreateDevEndpointRequest,
|
|
16
16
|
CreateDevEndpointResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_1";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface CreateDevEndpointCommandInput
|
|
20
20
|
extends CreateDevEndpointRequest {}
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../GlueClient";
|
|
14
|
-
import { GetTriggersRequest
|
|
14
|
+
import { GetTriggersRequest } from "../models/models_1";
|
|
15
|
+
import { GetTriggersResponse } from "../models/models_2";
|
|
15
16
|
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface GetTriggersCommandInput extends GetTriggersRequest {}
|
|
17
18
|
export interface GetTriggersCommandOutput
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./GlueClient";
|
|
2
2
|
export * from "./Glue";
|
|
3
3
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { GlueExtensionConfiguration } from "./extensionConfiguration";
|
|
4
6
|
export * from "./commands";
|
|
5
7
|
export * from "./pagination";
|
|
6
8
|
export * from "./models";
|
|
@@ -708,6 +708,18 @@ export interface BasicCatalogTarget {
|
|
|
708
708
|
Database: string | undefined;
|
|
709
709
|
Table: string | undefined;
|
|
710
710
|
}
|
|
711
|
+
export interface ConnectorDataSource {
|
|
712
|
+
Name: string | undefined;
|
|
713
|
+
ConnectionType: string | undefined;
|
|
714
|
+
Data: Record<string, string> | undefined;
|
|
715
|
+
OutputSchemas?: GlueSchema[];
|
|
716
|
+
}
|
|
717
|
+
export interface ConnectorDataTarget {
|
|
718
|
+
Name: string | undefined;
|
|
719
|
+
ConnectionType: string | undefined;
|
|
720
|
+
Data: Record<string, string> | undefined;
|
|
721
|
+
Inputs?: string[];
|
|
722
|
+
}
|
|
711
723
|
export interface CustomCode {
|
|
712
724
|
Name: string | undefined;
|
|
713
725
|
Inputs: string[] | undefined;
|
|
@@ -2092,41 +2104,3 @@ export interface CreateDataQualityRulesetRequest {
|
|
|
2092
2104
|
export interface CreateDataQualityRulesetResponse {
|
|
2093
2105
|
Name?: string;
|
|
2094
2106
|
}
|
|
2095
|
-
export interface CreateDevEndpointRequest {
|
|
2096
|
-
EndpointName: string | undefined;
|
|
2097
|
-
RoleArn: string | undefined;
|
|
2098
|
-
SecurityGroupIds?: string[];
|
|
2099
|
-
SubnetId?: string;
|
|
2100
|
-
PublicKey?: string;
|
|
2101
|
-
PublicKeys?: string[];
|
|
2102
|
-
NumberOfNodes?: number;
|
|
2103
|
-
WorkerType?: WorkerType;
|
|
2104
|
-
GlueVersion?: string;
|
|
2105
|
-
NumberOfWorkers?: number;
|
|
2106
|
-
ExtraPythonLibsS3Path?: string;
|
|
2107
|
-
ExtraJarsS3Path?: string;
|
|
2108
|
-
SecurityConfiguration?: string;
|
|
2109
|
-
Tags?: Record<string, string>;
|
|
2110
|
-
Arguments?: Record<string, string>;
|
|
2111
|
-
}
|
|
2112
|
-
export interface CreateDevEndpointResponse {
|
|
2113
|
-
EndpointName?: string;
|
|
2114
|
-
Status?: string;
|
|
2115
|
-
SecurityGroupIds?: string[];
|
|
2116
|
-
SubnetId?: string;
|
|
2117
|
-
RoleArn?: string;
|
|
2118
|
-
YarnEndpointAddress?: string;
|
|
2119
|
-
ZeppelinRemoteSparkInterpreterPort?: number;
|
|
2120
|
-
NumberOfNodes?: number;
|
|
2121
|
-
WorkerType?: WorkerType;
|
|
2122
|
-
GlueVersion?: string;
|
|
2123
|
-
NumberOfWorkers?: number;
|
|
2124
|
-
AvailabilityZone?: string;
|
|
2125
|
-
VpcId?: string;
|
|
2126
|
-
ExtraPythonLibsS3Path?: string;
|
|
2127
|
-
ExtraJarsS3Path?: string;
|
|
2128
|
-
FailureReason?: string;
|
|
2129
|
-
SecurityConfiguration?: string;
|
|
2130
|
-
CreatedTimestamp?: Date;
|
|
2131
|
-
Arguments?: Record<string, string>;
|
|
2132
|
-
}
|
|
@@ -34,6 +34,44 @@ import {
|
|
|
34
34
|
TriggerType,
|
|
35
35
|
WorkerType,
|
|
36
36
|
} from "./models_0";
|
|
37
|
+
export interface CreateDevEndpointRequest {
|
|
38
|
+
EndpointName: string | undefined;
|
|
39
|
+
RoleArn: string | undefined;
|
|
40
|
+
SecurityGroupIds?: string[];
|
|
41
|
+
SubnetId?: string;
|
|
42
|
+
PublicKey?: string;
|
|
43
|
+
PublicKeys?: string[];
|
|
44
|
+
NumberOfNodes?: number;
|
|
45
|
+
WorkerType?: WorkerType;
|
|
46
|
+
GlueVersion?: string;
|
|
47
|
+
NumberOfWorkers?: number;
|
|
48
|
+
ExtraPythonLibsS3Path?: string;
|
|
49
|
+
ExtraJarsS3Path?: string;
|
|
50
|
+
SecurityConfiguration?: string;
|
|
51
|
+
Tags?: Record<string, string>;
|
|
52
|
+
Arguments?: Record<string, string>;
|
|
53
|
+
}
|
|
54
|
+
export interface CreateDevEndpointResponse {
|
|
55
|
+
EndpointName?: string;
|
|
56
|
+
Status?: string;
|
|
57
|
+
SecurityGroupIds?: string[];
|
|
58
|
+
SubnetId?: string;
|
|
59
|
+
RoleArn?: string;
|
|
60
|
+
YarnEndpointAddress?: string;
|
|
61
|
+
ZeppelinRemoteSparkInterpreterPort?: number;
|
|
62
|
+
NumberOfNodes?: number;
|
|
63
|
+
WorkerType?: WorkerType;
|
|
64
|
+
GlueVersion?: string;
|
|
65
|
+
NumberOfWorkers?: number;
|
|
66
|
+
AvailabilityZone?: string;
|
|
67
|
+
VpcId?: string;
|
|
68
|
+
ExtraPythonLibsS3Path?: string;
|
|
69
|
+
ExtraJarsS3Path?: string;
|
|
70
|
+
FailureReason?: string;
|
|
71
|
+
SecurityConfiguration?: string;
|
|
72
|
+
CreatedTimestamp?: Date;
|
|
73
|
+
Arguments?: Record<string, string>;
|
|
74
|
+
}
|
|
37
75
|
export declare class ValidationException extends __BaseException {
|
|
38
76
|
readonly name: "ValidationException";
|
|
39
77
|
readonly $fault: "client";
|
|
@@ -1632,15 +1670,3 @@ export interface GetTriggersRequest {
|
|
|
1632
1670
|
DependentJobName?: string;
|
|
1633
1671
|
MaxResults?: number;
|
|
1634
1672
|
}
|
|
1635
|
-
export interface GetTriggersResponse {
|
|
1636
|
-
Triggers?: Trigger[];
|
|
1637
|
-
NextToken?: string;
|
|
1638
|
-
}
|
|
1639
|
-
export declare const PermissionType: {
|
|
1640
|
-
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
1641
|
-
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
1642
|
-
readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
|
|
1643
|
-
readonly NESTED_PERMISSION: "NESTED_PERMISSION";
|
|
1644
|
-
};
|
|
1645
|
-
export type PermissionType =
|
|
1646
|
-
(typeof PermissionType)[keyof typeof PermissionType];
|
|
@@ -15,6 +15,8 @@ import {
|
|
|
15
15
|
CatalogSource,
|
|
16
16
|
ConnectionInput,
|
|
17
17
|
ConnectionsList,
|
|
18
|
+
ConnectorDataSource,
|
|
19
|
+
ConnectorDataTarget,
|
|
18
20
|
CrawlerTargets,
|
|
19
21
|
CsvHeaderOption,
|
|
20
22
|
CsvSerdeOption,
|
|
@@ -109,7 +111,6 @@ import {
|
|
|
109
111
|
DataCatalogEncryptionSettings,
|
|
110
112
|
DataQualityEvaluationRunAdditionalRunOptions,
|
|
111
113
|
JobBookmarkEntry,
|
|
112
|
-
PermissionType,
|
|
113
114
|
PrincipalType,
|
|
114
115
|
RegistryId,
|
|
115
116
|
RegistryStatus,
|
|
@@ -128,6 +129,18 @@ import {
|
|
|
128
129
|
TransformSortCriteria,
|
|
129
130
|
UserDefinedFunctionInput,
|
|
130
131
|
} from "./models_1";
|
|
132
|
+
export interface GetTriggersResponse {
|
|
133
|
+
Triggers?: Trigger[];
|
|
134
|
+
NextToken?: string;
|
|
135
|
+
}
|
|
136
|
+
export declare const PermissionType: {
|
|
137
|
+
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
138
|
+
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
139
|
+
readonly NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION";
|
|
140
|
+
readonly NESTED_PERMISSION: "NESTED_PERMISSION";
|
|
141
|
+
};
|
|
142
|
+
export type PermissionType =
|
|
143
|
+
(typeof PermissionType)[keyof typeof PermissionType];
|
|
131
144
|
export interface GetUnfilteredPartitionMetadataRequest {
|
|
132
145
|
CatalogId: string | undefined;
|
|
133
146
|
DatabaseName: string | undefined;
|
|
@@ -1239,6 +1252,8 @@ export interface CodeGenConfigurationNode {
|
|
|
1239
1252
|
Recipe?: Recipe;
|
|
1240
1253
|
SnowflakeSource?: SnowflakeSource;
|
|
1241
1254
|
SnowflakeTarget?: SnowflakeTarget;
|
|
1255
|
+
ConnectorDataSource?: ConnectorDataSource;
|
|
1256
|
+
ConnectorDataTarget?: ConnectorDataTarget;
|
|
1242
1257
|
}
|
|
1243
1258
|
export interface CreateJobRequest {
|
|
1244
1259
|
Name: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.445.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.445.0",
|
|
25
|
+
"@aws-sdk/core": "3.445.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.445.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|