@aws-sdk/client-glue 3.301.0 → 3.305.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +434 -444
- package/dist-cjs/models/models_1.js +141 -154
- package/dist-cjs/models/models_2.js +41 -48
- package/dist-cjs/protocols/Aws_json1_1.js +126 -1
- package/dist-es/models/models_0.js +429 -442
- package/dist-es/models/models_1.js +140 -153
- package/dist-es/models/models_2.js +41 -48
- package/dist-es/protocols/Aws_json1_1.js +127 -2
- package/dist-types/commands/BatchGetPartitionCommand.d.ts +5 -0
- package/dist-types/commands/CreateDatabaseCommand.d.ts +7 -0
- package/dist-types/commands/CreateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/CreateSchemaCommand.d.ts +1 -2
- package/dist-types/commands/GetDatabaseCommand.d.ts +3 -0
- package/dist-types/commands/GetDatabasesCommand.d.ts +1 -1
- package/dist-types/commands/GetPartitionCommand.d.ts +5 -0
- package/dist-types/commands/GetPartitionsCommand.d.ts +5 -0
- package/dist-types/commands/GetTableCommand.d.ts +5 -0
- package/dist-types/commands/GetTablesCommand.d.ts +5 -0
- package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +6 -0
- package/dist-types/commands/GetWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowRunsCommand.d.ts +1 -1
- package/dist-types/commands/ImportCatalogToGlueCommand.d.ts +1 -1
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +0 -1
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +741 -520
- package/dist-types/models/models_1.d.ts +437 -203
- package/dist-types/models/models_2.d.ts +149 -48
- package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkflowRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ImportCatalogToGlueCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +510 -413
- package/dist-types/ts3.4/models/models_1.d.ts +213 -150
- package/dist-types/ts3.4/models/models_2.d.ts +76 -44
- package/package.json +34 -34
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
AuditContext,
|
|
6
6
|
Blueprint,
|
|
7
7
|
Column,
|
|
8
|
-
Compatibility,
|
|
9
8
|
ConnectionsList,
|
|
10
9
|
ConnectionType,
|
|
11
10
|
Crawler,
|
|
@@ -18,6 +17,7 @@ import {
|
|
|
18
17
|
DevEndpoint,
|
|
19
18
|
ErrorDetail,
|
|
20
19
|
EventBatchingCondition,
|
|
20
|
+
FederatedDatabase,
|
|
21
21
|
GlueTable,
|
|
22
22
|
JobRun,
|
|
23
23
|
Partition,
|
|
@@ -26,7 +26,6 @@ import {
|
|
|
26
26
|
PhysicalConnectionRequirements,
|
|
27
27
|
Predicate,
|
|
28
28
|
PrincipalPermissions,
|
|
29
|
-
RegistryId,
|
|
30
29
|
SchemaId,
|
|
31
30
|
StorageDescriptor,
|
|
32
31
|
TaskStatusType,
|
|
@@ -39,17 +38,55 @@ import {
|
|
|
39
38
|
Workflow,
|
|
40
39
|
WorkflowRun,
|
|
41
40
|
} from "./models_0";
|
|
42
|
-
export
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
41
|
+
export interface CreateRegistryInput {
|
|
42
|
+
RegistryName: string | undefined;
|
|
43
|
+
Description?: string;
|
|
44
|
+
Tags?: Record<string, string>;
|
|
46
45
|
}
|
|
47
|
-
export
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
export interface CreateRegistryResponse {
|
|
47
|
+
RegistryArn?: string;
|
|
48
|
+
RegistryName?: string;
|
|
49
|
+
Description?: string;
|
|
50
|
+
Tags?: Record<string, string>;
|
|
52
51
|
}
|
|
52
|
+
export declare const Compatibility: {
|
|
53
|
+
readonly BACKWARD: "BACKWARD";
|
|
54
|
+
readonly BACKWARD_ALL: "BACKWARD_ALL";
|
|
55
|
+
readonly DISABLED: "DISABLED";
|
|
56
|
+
readonly FORWARD: "FORWARD";
|
|
57
|
+
readonly FORWARD_ALL: "FORWARD_ALL";
|
|
58
|
+
readonly FULL: "FULL";
|
|
59
|
+
readonly FULL_ALL: "FULL_ALL";
|
|
60
|
+
readonly NONE: "NONE";
|
|
61
|
+
};
|
|
62
|
+
export type Compatibility = (typeof Compatibility)[keyof typeof Compatibility];
|
|
63
|
+
export interface RegistryId {
|
|
64
|
+
RegistryName?: string;
|
|
65
|
+
RegistryArn?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface CreateSchemaInput {
|
|
68
|
+
RegistryId?: RegistryId;
|
|
69
|
+
SchemaName: string | undefined;
|
|
70
|
+
DataFormat: DataFormat | string | undefined;
|
|
71
|
+
Compatibility?: Compatibility | string;
|
|
72
|
+
Description?: string;
|
|
73
|
+
Tags?: Record<string, string>;
|
|
74
|
+
SchemaDefinition?: string;
|
|
75
|
+
}
|
|
76
|
+
export declare const SchemaStatus: {
|
|
77
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
78
|
+
readonly DELETING: "DELETING";
|
|
79
|
+
readonly PENDING: "PENDING";
|
|
80
|
+
};
|
|
81
|
+
export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus];
|
|
82
|
+
export declare const SchemaVersionStatus: {
|
|
83
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
84
|
+
readonly DELETING: "DELETING";
|
|
85
|
+
readonly FAILURE: "FAILURE";
|
|
86
|
+
readonly PENDING: "PENDING";
|
|
87
|
+
};
|
|
88
|
+
export type SchemaVersionStatus =
|
|
89
|
+
(typeof SchemaVersionStatus)[keyof typeof SchemaVersionStatus];
|
|
53
90
|
export interface CreateSchemaResponse {
|
|
54
91
|
RegistryName?: string;
|
|
55
92
|
RegistryArn?: string;
|
|
@@ -82,10 +119,11 @@ export interface CodeGenNode {
|
|
|
82
119
|
Args: CodeGenNodeArg[] | undefined;
|
|
83
120
|
LineNumber?: number;
|
|
84
121
|
}
|
|
85
|
-
export declare
|
|
86
|
-
PYTHON
|
|
87
|
-
SCALA
|
|
88
|
-
}
|
|
122
|
+
export declare const Language: {
|
|
123
|
+
readonly PYTHON: "PYTHON";
|
|
124
|
+
readonly SCALA: "SCALA";
|
|
125
|
+
};
|
|
126
|
+
export type Language = (typeof Language)[keyof typeof Language];
|
|
89
127
|
export interface CreateScriptRequest {
|
|
90
128
|
DagNodes?: CodeGenNode[];
|
|
91
129
|
DagEdges?: CodeGenEdge[];
|
|
@@ -95,27 +133,33 @@ export interface CreateScriptResponse {
|
|
|
95
133
|
PythonScript?: string;
|
|
96
134
|
ScalaCode?: string;
|
|
97
135
|
}
|
|
98
|
-
export declare
|
|
99
|
-
DISABLED
|
|
100
|
-
SSEKMS
|
|
101
|
-
}
|
|
136
|
+
export declare const CloudWatchEncryptionMode: {
|
|
137
|
+
readonly DISABLED: "DISABLED";
|
|
138
|
+
readonly SSEKMS: "SSE-KMS";
|
|
139
|
+
};
|
|
140
|
+
export type CloudWatchEncryptionMode =
|
|
141
|
+
(typeof CloudWatchEncryptionMode)[keyof typeof CloudWatchEncryptionMode];
|
|
102
142
|
export interface CloudWatchEncryption {
|
|
103
143
|
CloudWatchEncryptionMode?: CloudWatchEncryptionMode | string;
|
|
104
144
|
KmsKeyArn?: string;
|
|
105
145
|
}
|
|
106
|
-
export declare
|
|
107
|
-
CSEKMS
|
|
108
|
-
DISABLED
|
|
109
|
-
}
|
|
146
|
+
export declare const JobBookmarksEncryptionMode: {
|
|
147
|
+
readonly CSEKMS: "CSE-KMS";
|
|
148
|
+
readonly DISABLED: "DISABLED";
|
|
149
|
+
};
|
|
150
|
+
export type JobBookmarksEncryptionMode =
|
|
151
|
+
(typeof JobBookmarksEncryptionMode)[keyof typeof JobBookmarksEncryptionMode];
|
|
110
152
|
export interface JobBookmarksEncryption {
|
|
111
153
|
JobBookmarksEncryptionMode?: JobBookmarksEncryptionMode | string;
|
|
112
154
|
KmsKeyArn?: string;
|
|
113
155
|
}
|
|
114
|
-
export declare
|
|
115
|
-
DISABLED
|
|
116
|
-
SSEKMS
|
|
117
|
-
SSES3
|
|
118
|
-
}
|
|
156
|
+
export declare const S3EncryptionMode: {
|
|
157
|
+
readonly DISABLED: "DISABLED";
|
|
158
|
+
readonly SSEKMS: "SSE-KMS";
|
|
159
|
+
readonly SSES3: "SSE-S3";
|
|
160
|
+
};
|
|
161
|
+
export type S3EncryptionMode =
|
|
162
|
+
(typeof S3EncryptionMode)[keyof typeof S3EncryptionMode];
|
|
119
163
|
export interface S3Encryption {
|
|
120
164
|
S3EncryptionMode?: S3EncryptionMode | string;
|
|
121
165
|
KmsKeyArn?: string;
|
|
@@ -154,14 +198,15 @@ export interface CreateSessionRequest {
|
|
|
154
198
|
Tags?: Record<string, string>;
|
|
155
199
|
RequestOrigin?: string;
|
|
156
200
|
}
|
|
157
|
-
export declare
|
|
158
|
-
FAILED
|
|
159
|
-
PROVISIONING
|
|
160
|
-
READY
|
|
161
|
-
STOPPED
|
|
162
|
-
STOPPING
|
|
163
|
-
TIMEOUT
|
|
164
|
-
}
|
|
201
|
+
export declare const SessionStatus: {
|
|
202
|
+
readonly FAILED: "FAILED";
|
|
203
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
204
|
+
readonly READY: "READY";
|
|
205
|
+
readonly STOPPED: "STOPPED";
|
|
206
|
+
readonly STOPPING: "STOPPING";
|
|
207
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
208
|
+
};
|
|
209
|
+
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
165
210
|
export interface Session {
|
|
166
211
|
Id?: string;
|
|
167
212
|
CreatedOn?: Date;
|
|
@@ -223,16 +268,18 @@ export interface CreateTriggerRequest {
|
|
|
223
268
|
export interface CreateTriggerResponse {
|
|
224
269
|
Name?: string;
|
|
225
270
|
}
|
|
226
|
-
export declare
|
|
227
|
-
GROUP
|
|
228
|
-
ROLE
|
|
229
|
-
USER
|
|
230
|
-
}
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
271
|
+
export declare const PrincipalType: {
|
|
272
|
+
readonly GROUP: "GROUP";
|
|
273
|
+
readonly ROLE: "ROLE";
|
|
274
|
+
readonly USER: "USER";
|
|
275
|
+
};
|
|
276
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
277
|
+
export declare const ResourceType: {
|
|
278
|
+
readonly ARCHIVE: "ARCHIVE";
|
|
279
|
+
readonly FILE: "FILE";
|
|
280
|
+
readonly JAR: "JAR";
|
|
281
|
+
};
|
|
282
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
236
283
|
export interface ResourceUri {
|
|
237
284
|
ResourceType?: ResourceType | string;
|
|
238
285
|
Uri?: string;
|
|
@@ -367,10 +414,12 @@ export interface DeletePartitionIndexResponse {}
|
|
|
367
414
|
export interface DeleteRegistryInput {
|
|
368
415
|
RegistryId: RegistryId | undefined;
|
|
369
416
|
}
|
|
370
|
-
export declare
|
|
371
|
-
AVAILABLE
|
|
372
|
-
DELETING
|
|
373
|
-
}
|
|
417
|
+
export declare const RegistryStatus: {
|
|
418
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
419
|
+
readonly DELETING: "DELETING";
|
|
420
|
+
};
|
|
421
|
+
export type RegistryStatus =
|
|
422
|
+
(typeof RegistryStatus)[keyof typeof RegistryStatus];
|
|
374
423
|
export interface DeleteRegistryResponse {
|
|
375
424
|
RegistryName?: string;
|
|
376
425
|
RegistryArn?: string;
|
|
@@ -467,12 +516,14 @@ export interface GetBlueprintRunRequest {
|
|
|
467
516
|
BlueprintName: string | undefined;
|
|
468
517
|
RunId: string | undefined;
|
|
469
518
|
}
|
|
470
|
-
export declare
|
|
471
|
-
FAILED
|
|
472
|
-
ROLLING_BACK
|
|
473
|
-
RUNNING
|
|
474
|
-
SUCCEEDED
|
|
475
|
-
}
|
|
519
|
+
export declare const BlueprintRunState: {
|
|
520
|
+
readonly FAILED: "FAILED";
|
|
521
|
+
readonly ROLLING_BACK: "ROLLING_BACK";
|
|
522
|
+
readonly RUNNING: "RUNNING";
|
|
523
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
524
|
+
};
|
|
525
|
+
export type BlueprintRunState =
|
|
526
|
+
(typeof BlueprintRunState)[keyof typeof BlueprintRunState];
|
|
476
527
|
export interface BlueprintRun {
|
|
477
528
|
BlueprintName?: string;
|
|
478
529
|
RunId?: string;
|
|
@@ -617,15 +668,17 @@ export interface StringColumnStatisticsData {
|
|
|
617
668
|
NumberOfNulls: number | undefined;
|
|
618
669
|
NumberOfDistinctValues: number | undefined;
|
|
619
670
|
}
|
|
620
|
-
export declare
|
|
621
|
-
BINARY
|
|
622
|
-
BOOLEAN
|
|
623
|
-
DATE
|
|
624
|
-
DECIMAL
|
|
625
|
-
DOUBLE
|
|
626
|
-
LONG
|
|
627
|
-
STRING
|
|
628
|
-
}
|
|
671
|
+
export declare const ColumnStatisticsType: {
|
|
672
|
+
readonly BINARY: "BINARY";
|
|
673
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
674
|
+
readonly DATE: "DATE";
|
|
675
|
+
readonly DECIMAL: "DECIMAL";
|
|
676
|
+
readonly DOUBLE: "DOUBLE";
|
|
677
|
+
readonly LONG: "LONG";
|
|
678
|
+
readonly STRING: "STRING";
|
|
679
|
+
};
|
|
680
|
+
export type ColumnStatisticsType =
|
|
681
|
+
(typeof ColumnStatisticsType)[keyof typeof ColumnStatisticsType];
|
|
629
682
|
export interface ColumnStatisticsData {
|
|
630
683
|
Type: ColumnStatisticsType | string | undefined;
|
|
631
684
|
BooleanColumnStatisticsData?: BooleanColumnStatisticsData;
|
|
@@ -748,14 +801,18 @@ export interface Database {
|
|
|
748
801
|
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
749
802
|
TargetDatabase?: DatabaseIdentifier;
|
|
750
803
|
CatalogId?: string;
|
|
804
|
+
FederatedDatabase?: FederatedDatabase;
|
|
751
805
|
}
|
|
752
806
|
export interface GetDatabaseResponse {
|
|
753
807
|
Database?: Database;
|
|
754
808
|
}
|
|
755
|
-
export declare
|
|
756
|
-
ALL
|
|
757
|
-
|
|
758
|
-
|
|
809
|
+
export declare const ResourceShareType: {
|
|
810
|
+
readonly ALL: "ALL";
|
|
811
|
+
readonly FEDERATED: "FEDERATED";
|
|
812
|
+
readonly FOREIGN: "FOREIGN";
|
|
813
|
+
};
|
|
814
|
+
export type ResourceShareType =
|
|
815
|
+
(typeof ResourceShareType)[keyof typeof ResourceShareType];
|
|
759
816
|
export interface GetDatabasesRequest {
|
|
760
817
|
CatalogId?: string;
|
|
761
818
|
NextToken?: string;
|
|
@@ -773,10 +830,12 @@ export interface ConnectionPasswordEncryption {
|
|
|
773
830
|
ReturnConnectionPasswordEncrypted: boolean | undefined;
|
|
774
831
|
AwsKmsKeyId?: string;
|
|
775
832
|
}
|
|
776
|
-
export declare
|
|
777
|
-
DISABLED
|
|
778
|
-
SSEKMS
|
|
779
|
-
}
|
|
833
|
+
export declare const CatalogEncryptionMode: {
|
|
834
|
+
readonly DISABLED: "DISABLED";
|
|
835
|
+
readonly SSEKMS: "SSE-KMS";
|
|
836
|
+
};
|
|
837
|
+
export type CatalogEncryptionMode =
|
|
838
|
+
(typeof CatalogEncryptionMode)[keyof typeof CatalogEncryptionMode];
|
|
780
839
|
export interface EncryptionAtRest {
|
|
781
840
|
CatalogEncryptionMode: CatalogEncryptionMode | string | undefined;
|
|
782
841
|
SseAwsKmsKeyId?: string;
|
|
@@ -962,13 +1021,14 @@ export interface ImportLabelsTaskRunProperties {
|
|
|
962
1021
|
export interface LabelingSetGenerationTaskRunProperties {
|
|
963
1022
|
OutputS3Path?: string;
|
|
964
1023
|
}
|
|
965
|
-
export declare
|
|
966
|
-
EVALUATION
|
|
967
|
-
EXPORT_LABELS
|
|
968
|
-
FIND_MATCHES
|
|
969
|
-
IMPORT_LABELS
|
|
970
|
-
LABELING_SET_GENERATION
|
|
971
|
-
}
|
|
1024
|
+
export declare const TaskType: {
|
|
1025
|
+
readonly EVALUATION: "EVALUATION";
|
|
1026
|
+
readonly EXPORT_LABELS: "EXPORT_LABELS";
|
|
1027
|
+
readonly FIND_MATCHES: "FIND_MATCHES";
|
|
1028
|
+
readonly IMPORT_LABELS: "IMPORT_LABELS";
|
|
1029
|
+
readonly LABELING_SET_GENERATION: "LABELING_SET_GENERATION";
|
|
1030
|
+
};
|
|
1031
|
+
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
972
1032
|
export interface TaskRunProperties {
|
|
973
1033
|
TaskType?: TaskType | string;
|
|
974
1034
|
ImportLabelsTaskRunProperties?: ImportLabelsTaskRunProperties;
|
|
@@ -994,15 +1054,19 @@ export interface TaskRunFilterCriteria {
|
|
|
994
1054
|
StartedBefore?: Date;
|
|
995
1055
|
StartedAfter?: Date;
|
|
996
1056
|
}
|
|
997
|
-
export declare
|
|
998
|
-
STARTED
|
|
999
|
-
STATUS
|
|
1000
|
-
TASK_RUN_TYPE
|
|
1001
|
-
}
|
|
1002
|
-
export
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1057
|
+
export declare const TaskRunSortColumnType: {
|
|
1058
|
+
readonly STARTED: "STARTED";
|
|
1059
|
+
readonly STATUS: "STATUS";
|
|
1060
|
+
readonly TASK_RUN_TYPE: "TASK_RUN_TYPE";
|
|
1061
|
+
};
|
|
1062
|
+
export type TaskRunSortColumnType =
|
|
1063
|
+
(typeof TaskRunSortColumnType)[keyof typeof TaskRunSortColumnType];
|
|
1064
|
+
export declare const SortDirectionType: {
|
|
1065
|
+
readonly ASCENDING: "ASCENDING";
|
|
1066
|
+
readonly DESCENDING: "DESCENDING";
|
|
1067
|
+
};
|
|
1068
|
+
export type SortDirectionType =
|
|
1069
|
+
(typeof SortDirectionType)[keyof typeof SortDirectionType];
|
|
1006
1070
|
export interface TaskRunSortCriteria {
|
|
1007
1071
|
Column: TaskRunSortColumnType | string | undefined;
|
|
1008
1072
|
SortDirection: SortDirectionType | string | undefined;
|
|
@@ -1059,11 +1123,13 @@ export interface SchemaColumn {
|
|
|
1059
1123
|
Name?: string;
|
|
1060
1124
|
DataType?: string;
|
|
1061
1125
|
}
|
|
1062
|
-
export declare
|
|
1063
|
-
DELETING
|
|
1064
|
-
NOT_READY
|
|
1065
|
-
READY
|
|
1066
|
-
}
|
|
1126
|
+
export declare const TransformStatusType: {
|
|
1127
|
+
readonly DELETING: "DELETING";
|
|
1128
|
+
readonly NOT_READY: "NOT_READY";
|
|
1129
|
+
readonly READY: "READY";
|
|
1130
|
+
};
|
|
1131
|
+
export type TransformStatusType =
|
|
1132
|
+
(typeof TransformStatusType)[keyof typeof TransformStatusType];
|
|
1067
1133
|
export interface GetMLTransformResponse {
|
|
1068
1134
|
TransformId?: string;
|
|
1069
1135
|
Name?: string;
|
|
@@ -1096,13 +1162,15 @@ export interface TransformFilterCriteria {
|
|
|
1096
1162
|
LastModifiedAfter?: Date;
|
|
1097
1163
|
Schema?: SchemaColumn[];
|
|
1098
1164
|
}
|
|
1099
|
-
export declare
|
|
1100
|
-
CREATED
|
|
1101
|
-
LAST_MODIFIED
|
|
1102
|
-
NAME
|
|
1103
|
-
STATUS
|
|
1104
|
-
TRANSFORM_TYPE
|
|
1105
|
-
}
|
|
1165
|
+
export declare const TransformSortColumnType: {
|
|
1166
|
+
readonly CREATED: "CREATED";
|
|
1167
|
+
readonly LAST_MODIFIED: "LAST_MODIFIED";
|
|
1168
|
+
readonly NAME: "NAME";
|
|
1169
|
+
readonly STATUS: "STATUS";
|
|
1170
|
+
readonly TRANSFORM_TYPE: "TRANSFORM_TYPE";
|
|
1171
|
+
};
|
|
1172
|
+
export type TransformSortColumnType =
|
|
1173
|
+
(typeof TransformSortColumnType)[keyof typeof TransformSortColumnType];
|
|
1106
1174
|
export interface TransformSortCriteria {
|
|
1107
1175
|
Column: TransformSortColumnType | string | undefined;
|
|
1108
1176
|
SortDirection: SortDirectionType | string | undefined;
|
|
@@ -1153,23 +1221,27 @@ export interface GetPartitionIndexesRequest {
|
|
|
1153
1221
|
TableName: string | undefined;
|
|
1154
1222
|
NextToken?: string;
|
|
1155
1223
|
}
|
|
1156
|
-
export declare
|
|
1157
|
-
ENCRYPTED_PARTITION_ERROR
|
|
1158
|
-
INTERNAL_ERROR
|
|
1159
|
-
INVALID_PARTITION_TYPE_DATA_ERROR
|
|
1160
|
-
MISSING_PARTITION_VALUE_ERROR
|
|
1161
|
-
UNSUPPORTED_PARTITION_CHARACTER_ERROR
|
|
1162
|
-
}
|
|
1224
|
+
export declare const BackfillErrorCode: {
|
|
1225
|
+
readonly ENCRYPTED_PARTITION_ERROR: "ENCRYPTED_PARTITION_ERROR";
|
|
1226
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
1227
|
+
readonly INVALID_PARTITION_TYPE_DATA_ERROR: "INVALID_PARTITION_TYPE_DATA_ERROR";
|
|
1228
|
+
readonly MISSING_PARTITION_VALUE_ERROR: "MISSING_PARTITION_VALUE_ERROR";
|
|
1229
|
+
readonly UNSUPPORTED_PARTITION_CHARACTER_ERROR: "UNSUPPORTED_PARTITION_CHARACTER_ERROR";
|
|
1230
|
+
};
|
|
1231
|
+
export type BackfillErrorCode =
|
|
1232
|
+
(typeof BackfillErrorCode)[keyof typeof BackfillErrorCode];
|
|
1163
1233
|
export interface BackfillError {
|
|
1164
1234
|
Code?: BackfillErrorCode | string;
|
|
1165
1235
|
Partitions?: PartitionValueList[];
|
|
1166
1236
|
}
|
|
1167
|
-
export declare
|
|
1168
|
-
ACTIVE
|
|
1169
|
-
CREATING
|
|
1170
|
-
DELETING
|
|
1171
|
-
FAILED
|
|
1172
|
-
}
|
|
1237
|
+
export declare const PartitionIndexStatus: {
|
|
1238
|
+
readonly ACTIVE: "ACTIVE";
|
|
1239
|
+
readonly CREATING: "CREATING";
|
|
1240
|
+
readonly DELETING: "DELETING";
|
|
1241
|
+
readonly FAILED: "FAILED";
|
|
1242
|
+
};
|
|
1243
|
+
export type PartitionIndexStatus =
|
|
1244
|
+
(typeof PartitionIndexStatus)[keyof typeof PartitionIndexStatus];
|
|
1173
1245
|
export interface KeySchemaElement {
|
|
1174
1246
|
Name: string | undefined;
|
|
1175
1247
|
Type: string | undefined;
|
|
@@ -1297,9 +1369,11 @@ export interface GetSchemaVersionResponse {
|
|
|
1297
1369
|
Status?: SchemaVersionStatus | string;
|
|
1298
1370
|
CreatedTime?: string;
|
|
1299
1371
|
}
|
|
1300
|
-
export declare
|
|
1301
|
-
SYNTAX_DIFF
|
|
1302
|
-
}
|
|
1372
|
+
export declare const SchemaDiffType: {
|
|
1373
|
+
readonly SYNTAX_DIFF: "SYNTAX_DIFF";
|
|
1374
|
+
};
|
|
1375
|
+
export type SchemaDiffType =
|
|
1376
|
+
(typeof SchemaDiffType)[keyof typeof SchemaDiffType];
|
|
1303
1377
|
export interface GetSchemaVersionsDiffInput {
|
|
1304
1378
|
SchemaId: SchemaId | undefined;
|
|
1305
1379
|
FirstSchemaVersionNumber: SchemaVersionNumber | undefined;
|
|
@@ -1343,14 +1417,16 @@ export interface GetStatementRequest {
|
|
|
1343
1417
|
export interface StatementOutputData {
|
|
1344
1418
|
TextPlain?: string;
|
|
1345
1419
|
}
|
|
1346
|
-
export declare
|
|
1347
|
-
AVAILABLE
|
|
1348
|
-
CANCELLED
|
|
1349
|
-
CANCELLING
|
|
1350
|
-
ERROR
|
|
1351
|
-
RUNNING
|
|
1352
|
-
WAITING
|
|
1353
|
-
}
|
|
1420
|
+
export declare const StatementState: {
|
|
1421
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1422
|
+
readonly CANCELLED: "CANCELLED";
|
|
1423
|
+
readonly CANCELLING: "CANCELLING";
|
|
1424
|
+
readonly ERROR: "ERROR";
|
|
1425
|
+
readonly RUNNING: "RUNNING";
|
|
1426
|
+
readonly WAITING: "WAITING";
|
|
1427
|
+
};
|
|
1428
|
+
export type StatementState =
|
|
1429
|
+
(typeof StatementState)[keyof typeof StatementState];
|
|
1354
1430
|
export interface StatementOutput {
|
|
1355
1431
|
Data?: StatementOutputData;
|
|
1356
1432
|
ExecutionCount?: number;
|
|
@@ -1378,6 +1454,11 @@ export interface GetTableRequest {
|
|
|
1378
1454
|
TransactionId?: string;
|
|
1379
1455
|
QueryAsOfTime?: Date;
|
|
1380
1456
|
}
|
|
1457
|
+
export interface FederatedTable {
|
|
1458
|
+
Identifier?: string;
|
|
1459
|
+
DatabaseIdentifier?: string;
|
|
1460
|
+
ConnectionName?: string;
|
|
1461
|
+
}
|
|
1381
1462
|
export interface Table {
|
|
1382
1463
|
Name: string | undefined;
|
|
1383
1464
|
DatabaseName?: string;
|
|
@@ -1399,6 +1480,7 @@ export interface Table {
|
|
|
1399
1480
|
TargetTable?: TableIdentifier;
|
|
1400
1481
|
CatalogId?: string;
|
|
1401
1482
|
VersionId?: string;
|
|
1483
|
+
FederatedTable?: FederatedTable;
|
|
1402
1484
|
}
|
|
1403
1485
|
export interface GetTableResponse {
|
|
1404
1486
|
Table?: Table;
|
|
@@ -1461,10 +1543,12 @@ export interface GetTriggersResponse {
|
|
|
1461
1543
|
Triggers?: Trigger[];
|
|
1462
1544
|
NextToken?: string;
|
|
1463
1545
|
}
|
|
1464
|
-
export declare
|
|
1465
|
-
CELL_FILTER_PERMISSION
|
|
1466
|
-
COLUMN_PERMISSION
|
|
1467
|
-
}
|
|
1546
|
+
export declare const PermissionType: {
|
|
1547
|
+
readonly CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION";
|
|
1548
|
+
readonly COLUMN_PERMISSION: "COLUMN_PERMISSION";
|
|
1549
|
+
};
|
|
1550
|
+
export type PermissionType =
|
|
1551
|
+
(typeof PermissionType)[keyof typeof PermissionType];
|
|
1468
1552
|
export interface GetUnfilteredPartitionMetadataRequest {
|
|
1469
1553
|
CatalogId: string | undefined;
|
|
1470
1554
|
DatabaseName: string | undefined;
|
|
@@ -1570,24 +1654,3 @@ export interface GetWorkflowRunRequest {
|
|
|
1570
1654
|
export interface GetWorkflowRunResponse {
|
|
1571
1655
|
Run?: WorkflowRun;
|
|
1572
1656
|
}
|
|
1573
|
-
export interface GetWorkflowRunPropertiesRequest {
|
|
1574
|
-
Name: string | undefined;
|
|
1575
|
-
RunId: string | undefined;
|
|
1576
|
-
}
|
|
1577
|
-
export interface GetWorkflowRunPropertiesResponse {
|
|
1578
|
-
RunProperties?: Record<string, string>;
|
|
1579
|
-
}
|
|
1580
|
-
export interface GetWorkflowRunsRequest {
|
|
1581
|
-
Name: string | undefined;
|
|
1582
|
-
IncludeGraph?: boolean;
|
|
1583
|
-
NextToken?: string;
|
|
1584
|
-
MaxResults?: number;
|
|
1585
|
-
}
|
|
1586
|
-
export interface GetWorkflowRunsResponse {
|
|
1587
|
-
Runs?: WorkflowRun[];
|
|
1588
|
-
NextToken?: string;
|
|
1589
|
-
}
|
|
1590
|
-
export interface ImportCatalogToGlueRequest {
|
|
1591
|
-
CatalogId?: string;
|
|
1592
|
-
}
|
|
1593
|
-
export interface ImportCatalogToGlueResponse {}
|