@aws-sdk/client-glue 3.271.0 → 3.274.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/commands/CreateSchemaCommand.js +2 -1
- package/dist-cjs/commands/CreateScriptCommand.js +1 -2
- package/dist-cjs/commands/ListBlueprintsCommand.js +3 -3
- package/dist-cjs/commands/ListCrawlersCommand.js +3 -3
- package/dist-cjs/commands/ListCrawlsCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +44 -44
- package/dist-cjs/models/models_1.js +44 -47
- package/dist-cjs/models/models_2.js +45 -4
- package/dist-cjs/protocols/Aws_json1_1.js +200 -0
- package/dist-es/commands/CreateSchemaCommand.js +2 -1
- package/dist-es/commands/CreateScriptCommand.js +1 -2
- package/dist-es/commands/ListBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListCrawlersCommand.js +1 -1
- package/dist-es/commands/ListCrawlsCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +32 -33
- package/dist-es/models/models_1.js +33 -35
- package/dist-es/models/models_2.js +35 -0
- package/dist-es/protocols/Aws_json1_1.js +200 -0
- package/dist-types/Glue.d.ts +15 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +2 -1
- package/dist-types/commands/CreateScriptCommand.d.ts +1 -2
- package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +19 -0
- package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +19 -0
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +19 -0
- package/dist-types/commands/ListBlueprintsCommand.d.ts +1 -1
- package/dist-types/commands/ListCrawlersCommand.d.ts +1 -1
- package/dist-types/commands/ListCrawlsCommand.d.ts +1 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +274 -165
- package/dist-types/models/models_1.d.ts +400 -183
- package/dist-types/models/models_2.d.ts +194 -3
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateScriptCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCrawlersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCrawlsCommand.d.ts +1 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +78 -63
- package/dist-types/ts3.4/models/models_1.d.ts +63 -66
- package/dist-types/ts3.4/models/models_2.d.ts +74 -2
- package/package.json +29 -29
|
@@ -1,6 +1,148 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, AuditContext, Blueprint,
|
|
3
|
+
import { Action, AuditContext, Blueprint, Column, Compatibility, ConnectionsList, ConnectionType, Crawler, CsvHeaderOption, DatabaseIdentifier, DataFormat, DataQualityRuleResult, DataQualityTargetTable, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, GlueTable, JobRun, Partition, PartitionIndex, PartitionValueList, PhysicalConnectionRequirements, Predicate, PrincipalPermissions, RegistryId, SchemaId, StorageDescriptor, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, TriggerType, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
+
export declare enum SchemaStatus {
|
|
5
|
+
AVAILABLE = "AVAILABLE",
|
|
6
|
+
DELETING = "DELETING",
|
|
7
|
+
PENDING = "PENDING"
|
|
8
|
+
}
|
|
9
|
+
export declare enum SchemaVersionStatus {
|
|
10
|
+
AVAILABLE = "AVAILABLE",
|
|
11
|
+
DELETING = "DELETING",
|
|
12
|
+
FAILURE = "FAILURE",
|
|
13
|
+
PENDING = "PENDING"
|
|
14
|
+
}
|
|
15
|
+
export interface CreateSchemaResponse {
|
|
16
|
+
/**
|
|
17
|
+
* <p>The name of the registry.</p>
|
|
18
|
+
*/
|
|
19
|
+
RegistryName?: string;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The Amazon Resource Name (ARN) of the registry.</p>
|
|
22
|
+
*/
|
|
23
|
+
RegistryArn?: string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The name of the schema.</p>
|
|
26
|
+
*/
|
|
27
|
+
SchemaName?: string;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The Amazon Resource Name (ARN) of the schema.</p>
|
|
30
|
+
*/
|
|
31
|
+
SchemaArn?: string;
|
|
32
|
+
/**
|
|
33
|
+
* <p>A description of the schema if specified when created.</p>
|
|
34
|
+
*/
|
|
35
|
+
Description?: string;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
|
|
38
|
+
*/
|
|
39
|
+
DataFormat?: DataFormat | string;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The schema compatibility mode.</p>
|
|
42
|
+
*/
|
|
43
|
+
Compatibility?: Compatibility | string;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The version number of the checkpoint (the last time the compatibility mode was changed).</p>
|
|
46
|
+
*/
|
|
47
|
+
SchemaCheckpoint?: number;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The latest version of the schema associated with the returned schema definition.</p>
|
|
50
|
+
*/
|
|
51
|
+
LatestSchemaVersion?: number;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The next version of the schema associated with the returned schema definition.</p>
|
|
54
|
+
*/
|
|
55
|
+
NextSchemaVersion?: number;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The status of the schema. </p>
|
|
58
|
+
*/
|
|
59
|
+
SchemaStatus?: SchemaStatus | string;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The tags for the schema.</p>
|
|
62
|
+
*/
|
|
63
|
+
Tags?: Record<string, string>;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The unique identifier of the first schema version.</p>
|
|
66
|
+
*/
|
|
67
|
+
SchemaVersionId?: string;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The status of the first schema version created.</p>
|
|
70
|
+
*/
|
|
71
|
+
SchemaVersionStatus?: SchemaVersionStatus | string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* <p>Represents a directional edge in a directed acyclic graph (DAG).</p>
|
|
75
|
+
*/
|
|
76
|
+
export interface CodeGenEdge {
|
|
77
|
+
/**
|
|
78
|
+
* <p>The ID of the node at which the edge starts.</p>
|
|
79
|
+
*/
|
|
80
|
+
Source: string | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The ID of the node at which the edge ends.</p>
|
|
83
|
+
*/
|
|
84
|
+
Target: string | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The target of the edge.</p>
|
|
87
|
+
*/
|
|
88
|
+
TargetParameter?: string;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>An argument or property of a node.</p>
|
|
92
|
+
*/
|
|
93
|
+
export interface CodeGenNodeArg {
|
|
94
|
+
/**
|
|
95
|
+
* <p>The name of the argument or property.</p>
|
|
96
|
+
*/
|
|
97
|
+
Name: string | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>The value of the argument or property.</p>
|
|
100
|
+
*/
|
|
101
|
+
Value: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>True if the value is used as a parameter.</p>
|
|
104
|
+
*/
|
|
105
|
+
Param?: boolean;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>Represents a node in a directed acyclic graph (DAG)</p>
|
|
109
|
+
*/
|
|
110
|
+
export interface CodeGenNode {
|
|
111
|
+
/**
|
|
112
|
+
* <p>A node identifier that is unique within the node's graph.</p>
|
|
113
|
+
*/
|
|
114
|
+
Id: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>The type of node that this is.</p>
|
|
117
|
+
*/
|
|
118
|
+
NodeType: string | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* <p>Properties of the node, in the form of name-value pairs.</p>
|
|
121
|
+
*/
|
|
122
|
+
Args: CodeGenNodeArg[] | undefined;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The line number of the node.</p>
|
|
125
|
+
*/
|
|
126
|
+
LineNumber?: number;
|
|
127
|
+
}
|
|
128
|
+
export declare enum Language {
|
|
129
|
+
PYTHON = "PYTHON",
|
|
130
|
+
SCALA = "SCALA"
|
|
131
|
+
}
|
|
132
|
+
export interface CreateScriptRequest {
|
|
133
|
+
/**
|
|
134
|
+
* <p>A list of the nodes in the DAG.</p>
|
|
135
|
+
*/
|
|
136
|
+
DagNodes?: CodeGenNode[];
|
|
137
|
+
/**
|
|
138
|
+
* <p>A list of the edges in the DAG.</p>
|
|
139
|
+
*/
|
|
140
|
+
DagEdges?: CodeGenEdge[];
|
|
141
|
+
/**
|
|
142
|
+
* <p>The programming language of the resulting code from the DAG.</p>
|
|
143
|
+
*/
|
|
144
|
+
Language?: Language | string;
|
|
145
|
+
}
|
|
4
146
|
export interface CreateScriptResponse {
|
|
5
147
|
/**
|
|
6
148
|
* <p>The Python script generated from the DAG.</p>
|
|
@@ -298,7 +440,7 @@ export interface TableInput {
|
|
|
298
440
|
*/
|
|
299
441
|
Description?: string;
|
|
300
442
|
/**
|
|
301
|
-
* <p>The table owner.</p>
|
|
443
|
+
* <p>The table owner. Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
302
444
|
*/
|
|
303
445
|
Owner?: string;
|
|
304
446
|
/**
|
|
@@ -330,15 +472,31 @@ export interface TableInput {
|
|
|
330
472
|
*/
|
|
331
473
|
PartitionKeys?: Column[];
|
|
332
474
|
/**
|
|
333
|
-
* <p>
|
|
475
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.
|
|
476
|
+
* If the table is a <code>VIRTUAL_VIEW</code>, certain Athena configuration encoded in base64.</p>
|
|
334
477
|
*/
|
|
335
478
|
ViewOriginalText?: string;
|
|
336
479
|
/**
|
|
337
|
-
* <p>
|
|
480
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
338
481
|
*/
|
|
339
482
|
ViewExpandedText?: string;
|
|
340
483
|
/**
|
|
341
|
-
* <p>The type of this table
|
|
484
|
+
* <p>The type of this table.
|
|
485
|
+
* Glue will create tables with the <code>EXTERNAL_TABLE</code> type.
|
|
486
|
+
* Other services, such as Athena, may create tables with additional table types.
|
|
487
|
+
* </p>
|
|
488
|
+
* <p>Glue related table types:</p>
|
|
489
|
+
* <dl>
|
|
490
|
+
* <dt>EXTERNAL_TABLE</dt>
|
|
491
|
+
* <dd>
|
|
492
|
+
* <p>Hive compatible attribute - indicates a non-Hive managed table.</p>
|
|
493
|
+
* </dd>
|
|
494
|
+
* <dt>GOVERNED</dt>
|
|
495
|
+
* <dd>
|
|
496
|
+
* <p>Used by Lake Formation.
|
|
497
|
+
* The Glue Data Catalog understands <code>GOVERNED</code>.</p>
|
|
498
|
+
* </dd>
|
|
499
|
+
* </dl>
|
|
342
500
|
*/
|
|
343
501
|
TableType?: string;
|
|
344
502
|
/**
|
|
@@ -1833,7 +1991,7 @@ export interface Connection {
|
|
|
1833
1991
|
* </li>
|
|
1834
1992
|
* <li>
|
|
1835
1993
|
* <p>
|
|
1836
|
-
* <code>KAFKA_SASL_MECHANISM</code> - <code>"SCRAM-SHA-512"</code> or <code>"
|
|
1994
|
+
* <code>KAFKA_SASL_MECHANISM</code> - <code>"SCRAM-SHA-512"</code>, <code>"GSSAPI"</code>, or <code>"AWS_MSK_IAM"</code>. These are the supported <a href="https://www.iana.org/assignments/sasl-mechanisms/sasl-mechanisms.xhtml">SASL Mechanisms</a>.</p>
|
|
1837
1995
|
* </li>
|
|
1838
1996
|
* <li>
|
|
1839
1997
|
* <p>
|
|
@@ -2098,7 +2256,7 @@ export interface Database {
|
|
|
2098
2256
|
*/
|
|
2099
2257
|
CreateTime?: Date;
|
|
2100
2258
|
/**
|
|
2101
|
-
* <p>Creates a set of default permissions on the table for principals.
|
|
2259
|
+
* <p>Creates a set of default permissions on the table for principals. Used by Lake Formation. Not used in the normal course of Glue operations.</p>
|
|
2102
2260
|
*/
|
|
2103
2261
|
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
2104
2262
|
/**
|
|
@@ -4332,15 +4490,31 @@ export interface Table {
|
|
|
4332
4490
|
*/
|
|
4333
4491
|
PartitionKeys?: Column[];
|
|
4334
4492
|
/**
|
|
4335
|
-
* <p>
|
|
4493
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.
|
|
4494
|
+
* If the table is a <code>VIRTUAL_VIEW</code>, certain Athena configuration encoded in base64.</p>
|
|
4336
4495
|
*/
|
|
4337
4496
|
ViewOriginalText?: string;
|
|
4338
4497
|
/**
|
|
4339
|
-
* <p>
|
|
4498
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
4340
4499
|
*/
|
|
4341
4500
|
ViewExpandedText?: string;
|
|
4342
4501
|
/**
|
|
4343
|
-
* <p>The type of this table
|
|
4502
|
+
* <p>The type of this table.
|
|
4503
|
+
* Glue will create tables with the <code>EXTERNAL_TABLE</code> type.
|
|
4504
|
+
* Other services, such as Athena, may create tables with additional table types.
|
|
4505
|
+
* </p>
|
|
4506
|
+
* <p>Glue related table types:</p>
|
|
4507
|
+
* <dl>
|
|
4508
|
+
* <dt>EXTERNAL_TABLE</dt>
|
|
4509
|
+
* <dd>
|
|
4510
|
+
* <p>Hive compatible attribute - indicates a non-Hive managed table.</p>
|
|
4511
|
+
* </dd>
|
|
4512
|
+
* <dt>GOVERNED</dt>
|
|
4513
|
+
* <dd>
|
|
4514
|
+
* <p>Used by Lake Formation.
|
|
4515
|
+
* The Glue Data Catalog understands <code>GOVERNED</code>.</p>
|
|
4516
|
+
* </dd>
|
|
4517
|
+
* </dl>
|
|
4344
4518
|
*/
|
|
4345
4519
|
TableType?: string;
|
|
4346
4520
|
/**
|
|
@@ -4550,22 +4724,44 @@ export declare enum PermissionType {
|
|
|
4550
4724
|
COLUMN_PERMISSION = "COLUMN_PERMISSION"
|
|
4551
4725
|
}
|
|
4552
4726
|
export interface GetUnfilteredPartitionMetadataRequest {
|
|
4727
|
+
/**
|
|
4728
|
+
* <p>The catalog ID where the partition resides.</p>
|
|
4729
|
+
*/
|
|
4553
4730
|
CatalogId: string | undefined;
|
|
4731
|
+
/**
|
|
4732
|
+
* <p>(Required) Specifies the name of a database that contains the partition.</p>
|
|
4733
|
+
*/
|
|
4554
4734
|
DatabaseName: string | undefined;
|
|
4735
|
+
/**
|
|
4736
|
+
* <p>(Required) Specifies the name of a table that contains the partition.</p>
|
|
4737
|
+
*/
|
|
4555
4738
|
TableName: string | undefined;
|
|
4739
|
+
/**
|
|
4740
|
+
* <p>(Required) A list of partition key values.</p>
|
|
4741
|
+
*/
|
|
4556
4742
|
PartitionValues: string[] | undefined;
|
|
4557
4743
|
/**
|
|
4558
|
-
* <p>A structure containing
|
|
4744
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4559
4745
|
*/
|
|
4560
4746
|
AuditContext?: AuditContext;
|
|
4747
|
+
/**
|
|
4748
|
+
* <p>(Required) A list of supported permission types. </p>
|
|
4749
|
+
*/
|
|
4561
4750
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
4562
4751
|
}
|
|
4563
4752
|
export interface GetUnfilteredPartitionMetadataResponse {
|
|
4564
4753
|
/**
|
|
4565
|
-
* <p>
|
|
4754
|
+
* <p>A Partition object containing the partition metadata.</p>
|
|
4566
4755
|
*/
|
|
4567
4756
|
Partition?: Partition;
|
|
4757
|
+
/**
|
|
4758
|
+
* <p>A list of column names that the user has been granted access to.</p>
|
|
4759
|
+
*/
|
|
4568
4760
|
AuthorizedColumns?: string[];
|
|
4761
|
+
/**
|
|
4762
|
+
* <p>A Boolean value that indicates whether the partition location is registered
|
|
4763
|
+
* with Lake Formation.</p>
|
|
4764
|
+
*/
|
|
4569
4765
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4570
4766
|
}
|
|
4571
4767
|
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
@@ -4578,56 +4774,224 @@ export declare class PermissionTypeMismatchException extends __BaseException {
|
|
|
4578
4774
|
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
4579
4775
|
}
|
|
4580
4776
|
export interface GetUnfilteredPartitionsMetadataRequest {
|
|
4777
|
+
/**
|
|
4778
|
+
* <p>The ID of the Data Catalog where the partitions in question reside. If none is provided,
|
|
4779
|
+
* the AWS account ID is used by default. </p>
|
|
4780
|
+
*/
|
|
4581
4781
|
CatalogId: string | undefined;
|
|
4782
|
+
/**
|
|
4783
|
+
* <p>The name of the catalog database where the partitions reside.</p>
|
|
4784
|
+
*/
|
|
4582
4785
|
DatabaseName: string | undefined;
|
|
4786
|
+
/**
|
|
4787
|
+
* <p>The name of the table that contains the partition.</p>
|
|
4788
|
+
*/
|
|
4583
4789
|
TableName: string | undefined;
|
|
4790
|
+
/**
|
|
4791
|
+
* <p>An expression that filters the partitions to be returned.</p>
|
|
4792
|
+
* <p>The expression uses SQL syntax similar to the SQL <code>WHERE</code> filter clause. The
|
|
4793
|
+
* SQL statement parser <a href="http://jsqlparser.sourceforge.net/home.php">JSQLParser</a> parses the expression. </p>
|
|
4794
|
+
* <p>
|
|
4795
|
+
* <i>Operators</i>: The following are the operators that you can use in the
|
|
4796
|
+
* <code>Expression</code> API call:</p>
|
|
4797
|
+
* <dl>
|
|
4798
|
+
* <dt>=</dt>
|
|
4799
|
+
* <dd>
|
|
4800
|
+
* <p>Checks whether the values of the two operands are equal; if yes, then the condition becomes
|
|
4801
|
+
* true.</p>
|
|
4802
|
+
* <p>Example: Assume 'variable a' holds 10 and 'variable b' holds 20. </p>
|
|
4803
|
+
* <p>(a = b) is not true.</p>
|
|
4804
|
+
* </dd>
|
|
4805
|
+
* <dt>< ></dt>
|
|
4806
|
+
* <dd>
|
|
4807
|
+
* <p>Checks whether the values of two operands are equal; if the values are not equal,
|
|
4808
|
+
* then the condition becomes true.</p>
|
|
4809
|
+
* <p>Example: (a < > b) is true.</p>
|
|
4810
|
+
* </dd>
|
|
4811
|
+
* <dt>></dt>
|
|
4812
|
+
* <dd>
|
|
4813
|
+
* <p>Checks whether the value of the left operand is greater than the value of the right
|
|
4814
|
+
* operand; if yes, then the condition becomes true.</p>
|
|
4815
|
+
* <p>Example: (a > b) is not true.</p>
|
|
4816
|
+
* </dd>
|
|
4817
|
+
* <dt><</dt>
|
|
4818
|
+
* <dd>
|
|
4819
|
+
* <p>Checks whether the value of the left operand is less than the value of the right
|
|
4820
|
+
* operand; if yes, then the condition becomes true.</p>
|
|
4821
|
+
* <p>Example: (a < b) is true.</p>
|
|
4822
|
+
* </dd>
|
|
4823
|
+
* <dt>>=</dt>
|
|
4824
|
+
* <dd>
|
|
4825
|
+
* <p>Checks whether the value of the left operand is greater than or equal to the value
|
|
4826
|
+
* of the right operand; if yes, then the condition becomes true.</p>
|
|
4827
|
+
* <p>Example: (a >= b) is not true.</p>
|
|
4828
|
+
* </dd>
|
|
4829
|
+
* <dt><=</dt>
|
|
4830
|
+
* <dd>
|
|
4831
|
+
* <p>Checks whether the value of the left operand is less than or equal to the value of
|
|
4832
|
+
* the right operand; if yes, then the condition becomes true.</p>
|
|
4833
|
+
* <p>Example: (a <= b) is true.</p>
|
|
4834
|
+
* </dd>
|
|
4835
|
+
* <dt>AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL</dt>
|
|
4836
|
+
* <dd>
|
|
4837
|
+
* <p>Logical operators.</p>
|
|
4838
|
+
* </dd>
|
|
4839
|
+
* </dl>
|
|
4840
|
+
* <p>
|
|
4841
|
+
* <i>Supported Partition Key Types</i>: The following are the supported
|
|
4842
|
+
* partition keys.</p>
|
|
4843
|
+
* <ul>
|
|
4844
|
+
* <li>
|
|
4845
|
+
* <p>
|
|
4846
|
+
* <code>string</code>
|
|
4847
|
+
* </p>
|
|
4848
|
+
* </li>
|
|
4849
|
+
* <li>
|
|
4850
|
+
* <p>
|
|
4851
|
+
* <code>date</code>
|
|
4852
|
+
* </p>
|
|
4853
|
+
* </li>
|
|
4854
|
+
* <li>
|
|
4855
|
+
* <p>
|
|
4856
|
+
* <code>timestamp</code>
|
|
4857
|
+
* </p>
|
|
4858
|
+
* </li>
|
|
4859
|
+
* <li>
|
|
4860
|
+
* <p>
|
|
4861
|
+
* <code>int</code>
|
|
4862
|
+
* </p>
|
|
4863
|
+
* </li>
|
|
4864
|
+
* <li>
|
|
4865
|
+
* <p>
|
|
4866
|
+
* <code>bigint</code>
|
|
4867
|
+
* </p>
|
|
4868
|
+
* </li>
|
|
4869
|
+
* <li>
|
|
4870
|
+
* <p>
|
|
4871
|
+
* <code>long</code>
|
|
4872
|
+
* </p>
|
|
4873
|
+
* </li>
|
|
4874
|
+
* <li>
|
|
4875
|
+
* <p>
|
|
4876
|
+
* <code>tinyint</code>
|
|
4877
|
+
* </p>
|
|
4878
|
+
* </li>
|
|
4879
|
+
* <li>
|
|
4880
|
+
* <p>
|
|
4881
|
+
* <code>smallint</code>
|
|
4882
|
+
* </p>
|
|
4883
|
+
* </li>
|
|
4884
|
+
* <li>
|
|
4885
|
+
* <p>
|
|
4886
|
+
* <code>decimal</code>
|
|
4887
|
+
* </p>
|
|
4888
|
+
* </li>
|
|
4889
|
+
* </ul>
|
|
4890
|
+
* <p>If an type is encountered that is not valid, an exception is thrown. </p>
|
|
4891
|
+
*/
|
|
4584
4892
|
Expression?: string;
|
|
4585
4893
|
/**
|
|
4586
|
-
* <p>A structure containing
|
|
4894
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4587
4895
|
*/
|
|
4588
4896
|
AuditContext?: AuditContext;
|
|
4897
|
+
/**
|
|
4898
|
+
* <p>A list of supported permission types. </p>
|
|
4899
|
+
*/
|
|
4589
4900
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
4901
|
+
/**
|
|
4902
|
+
* <p>A continuation token, if this is not the first call to retrieve
|
|
4903
|
+
* these partitions.</p>
|
|
4904
|
+
*/
|
|
4590
4905
|
NextToken?: string;
|
|
4591
4906
|
/**
|
|
4592
|
-
* <p>
|
|
4593
|
-
* multiple requests to be run in parallel.</p>
|
|
4907
|
+
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
4594
4908
|
*/
|
|
4595
4909
|
Segment?: Segment;
|
|
4910
|
+
/**
|
|
4911
|
+
* <p>The maximum number of partitions to return in a single response.</p>
|
|
4912
|
+
*/
|
|
4596
4913
|
MaxResults?: number;
|
|
4597
4914
|
}
|
|
4915
|
+
/**
|
|
4916
|
+
* <p>A partition that contains unfiltered metadata.</p>
|
|
4917
|
+
*/
|
|
4598
4918
|
export interface UnfilteredPartition {
|
|
4599
4919
|
/**
|
|
4600
|
-
* <p>
|
|
4920
|
+
* <p>The partition object.</p>
|
|
4601
4921
|
*/
|
|
4602
4922
|
Partition?: Partition;
|
|
4923
|
+
/**
|
|
4924
|
+
* <p>The list of columns the user has permissions to access.</p>
|
|
4925
|
+
*/
|
|
4603
4926
|
AuthorizedColumns?: string[];
|
|
4927
|
+
/**
|
|
4928
|
+
* <p>A Boolean value indicating that the partition location is registered with Lake Formation.</p>
|
|
4929
|
+
*/
|
|
4604
4930
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4605
4931
|
}
|
|
4606
4932
|
export interface GetUnfilteredPartitionsMetadataResponse {
|
|
4933
|
+
/**
|
|
4934
|
+
* <p>A list of requested partitions.</p>
|
|
4935
|
+
*/
|
|
4607
4936
|
UnfilteredPartitions?: UnfilteredPartition[];
|
|
4937
|
+
/**
|
|
4938
|
+
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
4939
|
+
* one.</p>
|
|
4940
|
+
*/
|
|
4608
4941
|
NextToken?: string;
|
|
4609
4942
|
}
|
|
4610
4943
|
export interface GetUnfilteredTableMetadataRequest {
|
|
4944
|
+
/**
|
|
4945
|
+
* <p>The catalog ID where the table resides.</p>
|
|
4946
|
+
*/
|
|
4611
4947
|
CatalogId: string | undefined;
|
|
4948
|
+
/**
|
|
4949
|
+
* <p>(Required) Specifies the name of a database that contains the table.</p>
|
|
4950
|
+
*/
|
|
4612
4951
|
DatabaseName: string | undefined;
|
|
4952
|
+
/**
|
|
4953
|
+
* <p>(Required) Specifies the name of a table for which you are requesting metadata.</p>
|
|
4954
|
+
*/
|
|
4613
4955
|
Name: string | undefined;
|
|
4614
4956
|
/**
|
|
4615
|
-
* <p>A structure containing
|
|
4957
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4616
4958
|
*/
|
|
4617
4959
|
AuditContext?: AuditContext;
|
|
4960
|
+
/**
|
|
4961
|
+
* <p>(Required) A list of supported permission types. </p>
|
|
4962
|
+
*/
|
|
4618
4963
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
4619
4964
|
}
|
|
4965
|
+
/**
|
|
4966
|
+
* <p>A filter that uses both column-level and row-level filtering.</p>
|
|
4967
|
+
*/
|
|
4620
4968
|
export interface ColumnRowFilter {
|
|
4969
|
+
/**
|
|
4970
|
+
* <p>A string containing the name of the column.</p>
|
|
4971
|
+
*/
|
|
4621
4972
|
ColumnName?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* <p>A string containing the row-level filter expression.</p>
|
|
4975
|
+
*/
|
|
4622
4976
|
RowFilterExpression?: string;
|
|
4623
4977
|
}
|
|
4624
4978
|
export interface GetUnfilteredTableMetadataResponse {
|
|
4625
4979
|
/**
|
|
4626
|
-
* <p>
|
|
4980
|
+
* <p>A Table object containing the table metadata.</p>
|
|
4627
4981
|
*/
|
|
4628
4982
|
Table?: Table;
|
|
4983
|
+
/**
|
|
4984
|
+
* <p>A list of column names that the user has been granted access to.</p>
|
|
4985
|
+
*/
|
|
4629
4986
|
AuthorizedColumns?: string[];
|
|
4987
|
+
/**
|
|
4988
|
+
* <p>A Boolean value that indicates whether the partition location is registered
|
|
4989
|
+
* with Lake Formation.</p>
|
|
4990
|
+
*/
|
|
4630
4991
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4992
|
+
/**
|
|
4993
|
+
* <p>A list of column row filters.</p>
|
|
4994
|
+
*/
|
|
4631
4995
|
CellFilters?: ColumnRowFilter[];
|
|
4632
4996
|
}
|
|
4633
4997
|
export interface GetUserDefinedFunctionRequest {
|
|
@@ -4813,149 +5177,26 @@ export interface ImportCatalogToGlueRequest {
|
|
|
4813
5177
|
}
|
|
4814
5178
|
export interface ImportCatalogToGlueResponse {
|
|
4815
5179
|
}
|
|
4816
|
-
export interface ListBlueprintsRequest {
|
|
4817
|
-
/**
|
|
4818
|
-
* <p>A continuation token, if this is a continuation request.</p>
|
|
4819
|
-
*/
|
|
4820
|
-
NextToken?: string;
|
|
4821
|
-
/**
|
|
4822
|
-
* <p>The maximum size of a list to return.</p>
|
|
4823
|
-
*/
|
|
4824
|
-
MaxResults?: number;
|
|
4825
|
-
/**
|
|
4826
|
-
* <p>Filters the list by an Amazon Web Services resource tag.</p>
|
|
4827
|
-
*/
|
|
4828
|
-
Tags?: Record<string, string>;
|
|
4829
|
-
}
|
|
4830
|
-
export interface ListBlueprintsResponse {
|
|
4831
|
-
/**
|
|
4832
|
-
* <p>List of names of blueprints in the account.</p>
|
|
4833
|
-
*/
|
|
4834
|
-
Blueprints?: string[];
|
|
4835
|
-
/**
|
|
4836
|
-
* <p>A continuation token, if not all blueprint names have been returned.</p>
|
|
4837
|
-
*/
|
|
4838
|
-
NextToken?: string;
|
|
4839
|
-
}
|
|
4840
|
-
export interface ListCrawlersRequest {
|
|
4841
|
-
/**
|
|
4842
|
-
* <p>The maximum size of a list to return.</p>
|
|
4843
|
-
*/
|
|
4844
|
-
MaxResults?: number;
|
|
4845
|
-
/**
|
|
4846
|
-
* <p>A continuation token, if this is a continuation request.</p>
|
|
4847
|
-
*/
|
|
4848
|
-
NextToken?: string;
|
|
4849
|
-
/**
|
|
4850
|
-
* <p>Specifies to return only these tagged resources.</p>
|
|
4851
|
-
*/
|
|
4852
|
-
Tags?: Record<string, string>;
|
|
4853
|
-
}
|
|
4854
|
-
export interface ListCrawlersResponse {
|
|
4855
|
-
/**
|
|
4856
|
-
* <p>The names of all crawlers in the account, or the crawlers with the specified tags.</p>
|
|
4857
|
-
*/
|
|
4858
|
-
CrawlerNames?: string[];
|
|
4859
|
-
/**
|
|
4860
|
-
* <p>A continuation token, if the returned list does not contain the
|
|
4861
|
-
* last metric available.</p>
|
|
4862
|
-
*/
|
|
4863
|
-
NextToken?: string;
|
|
4864
|
-
}
|
|
4865
|
-
export declare enum FieldName {
|
|
4866
|
-
CRAWL_ID = "CRAWL_ID",
|
|
4867
|
-
DPU_HOUR = "DPU_HOUR",
|
|
4868
|
-
END_TIME = "END_TIME",
|
|
4869
|
-
START_TIME = "START_TIME",
|
|
4870
|
-
STATE = "STATE"
|
|
4871
|
-
}
|
|
4872
|
-
export declare enum FilterOperator {
|
|
4873
|
-
EQ = "EQ",
|
|
4874
|
-
GE = "GE",
|
|
4875
|
-
GT = "GT",
|
|
4876
|
-
LE = "LE",
|
|
4877
|
-
LT = "LT",
|
|
4878
|
-
NE = "NE"
|
|
4879
|
-
}
|
|
4880
5180
|
/**
|
|
4881
|
-
*
|
|
5181
|
+
* @internal
|
|
4882
5182
|
*/
|
|
4883
|
-
export
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
* <p>
|
|
4901
|
-
* <code>DPU_HOUR</code>: The number of data processing unit (DPU) hours used for the crawl.</p>
|
|
4902
|
-
* </li>
|
|
4903
|
-
* </ul>
|
|
4904
|
-
*/
|
|
4905
|
-
FieldName?: FieldName | string;
|
|
4906
|
-
/**
|
|
4907
|
-
* <p>A defined comparator that operates on the value. The available operators are:</p>
|
|
4908
|
-
* <ul>
|
|
4909
|
-
* <li>
|
|
4910
|
-
* <p>
|
|
4911
|
-
* <code>GT</code>: Greater than.</p>
|
|
4912
|
-
* </li>
|
|
4913
|
-
* <li>
|
|
4914
|
-
* <p>
|
|
4915
|
-
* <code>GE</code>: Greater than or equal to.</p>
|
|
4916
|
-
* </li>
|
|
4917
|
-
* <li>
|
|
4918
|
-
* <p>
|
|
4919
|
-
* <code>LT</code>: Less than.</p>
|
|
4920
|
-
* </li>
|
|
4921
|
-
* <li>
|
|
4922
|
-
* <p>
|
|
4923
|
-
* <code>LE</code>: Less than or equal to.</p>
|
|
4924
|
-
* </li>
|
|
4925
|
-
* <li>
|
|
4926
|
-
* <p>
|
|
4927
|
-
* <code>EQ</code>: Equal to.</p>
|
|
4928
|
-
* </li>
|
|
4929
|
-
* <li>
|
|
4930
|
-
* <p>
|
|
4931
|
-
* <code>NE</code>: Not equal to.</p>
|
|
4932
|
-
* </li>
|
|
4933
|
-
* </ul>
|
|
4934
|
-
*/
|
|
4935
|
-
FilterOperator?: FilterOperator | string;
|
|
4936
|
-
/**
|
|
4937
|
-
* <p>The value provided for comparison on the crawl field. </p>
|
|
4938
|
-
*/
|
|
4939
|
-
FieldValue?: string;
|
|
4940
|
-
}
|
|
4941
|
-
export interface ListCrawlsRequest {
|
|
4942
|
-
/**
|
|
4943
|
-
* <p>The name of the crawler whose runs you want to retrieve.</p>
|
|
4944
|
-
*/
|
|
4945
|
-
CrawlerName: string | undefined;
|
|
4946
|
-
/**
|
|
4947
|
-
* <p>The maximum number of results to return. The default is 20, and maximum is 100.</p>
|
|
4948
|
-
*/
|
|
4949
|
-
MaxResults?: number;
|
|
4950
|
-
/**
|
|
4951
|
-
* <p>Filters the crawls by the criteria you specify in a list of <code>CrawlsFilter</code> objects.</p>
|
|
4952
|
-
*/
|
|
4953
|
-
Filters?: CrawlsFilter[];
|
|
4954
|
-
/**
|
|
4955
|
-
* <p>A continuation token, if this is a continuation call.</p>
|
|
4956
|
-
*/
|
|
4957
|
-
NextToken?: string;
|
|
4958
|
-
}
|
|
5183
|
+
export declare const CreateSchemaResponseFilterSensitiveLog: (obj: CreateSchemaResponse) => any;
|
|
5184
|
+
/**
|
|
5185
|
+
* @internal
|
|
5186
|
+
*/
|
|
5187
|
+
export declare const CodeGenEdgeFilterSensitiveLog: (obj: CodeGenEdge) => any;
|
|
5188
|
+
/**
|
|
5189
|
+
* @internal
|
|
5190
|
+
*/
|
|
5191
|
+
export declare const CodeGenNodeArgFilterSensitiveLog: (obj: CodeGenNodeArg) => any;
|
|
5192
|
+
/**
|
|
5193
|
+
* @internal
|
|
5194
|
+
*/
|
|
5195
|
+
export declare const CodeGenNodeFilterSensitiveLog: (obj: CodeGenNode) => any;
|
|
5196
|
+
/**
|
|
5197
|
+
* @internal
|
|
5198
|
+
*/
|
|
5199
|
+
export declare const CreateScriptRequestFilterSensitiveLog: (obj: CreateScriptRequest) => any;
|
|
4959
5200
|
/**
|
|
4960
5201
|
* @internal
|
|
4961
5202
|
*/
|
|
@@ -6020,27 +6261,3 @@ export declare const ImportCatalogToGlueRequestFilterSensitiveLog: (obj: ImportC
|
|
|
6020
6261
|
* @internal
|
|
6021
6262
|
*/
|
|
6022
6263
|
export declare const ImportCatalogToGlueResponseFilterSensitiveLog: (obj: ImportCatalogToGlueResponse) => any;
|
|
6023
|
-
/**
|
|
6024
|
-
* @internal
|
|
6025
|
-
*/
|
|
6026
|
-
export declare const ListBlueprintsRequestFilterSensitiveLog: (obj: ListBlueprintsRequest) => any;
|
|
6027
|
-
/**
|
|
6028
|
-
* @internal
|
|
6029
|
-
*/
|
|
6030
|
-
export declare const ListBlueprintsResponseFilterSensitiveLog: (obj: ListBlueprintsResponse) => any;
|
|
6031
|
-
/**
|
|
6032
|
-
* @internal
|
|
6033
|
-
*/
|
|
6034
|
-
export declare const ListCrawlersRequestFilterSensitiveLog: (obj: ListCrawlersRequest) => any;
|
|
6035
|
-
/**
|
|
6036
|
-
* @internal
|
|
6037
|
-
*/
|
|
6038
|
-
export declare const ListCrawlersResponseFilterSensitiveLog: (obj: ListCrawlersResponse) => any;
|
|
6039
|
-
/**
|
|
6040
|
-
* @internal
|
|
6041
|
-
*/
|
|
6042
|
-
export declare const CrawlsFilterFilterSensitiveLog: (obj: CrawlsFilter) => any;
|
|
6043
|
-
/**
|
|
6044
|
-
* @internal
|
|
6045
|
-
*/
|
|
6046
|
-
export declare const ListCrawlsRequestFilterSensitiveLog: (obj: ListCrawlsRequest) => any;
|