@aws-sdk/client-glue 3.272.0 → 3.276.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/ListBlueprintsCommand.js +3 -3
- package/dist-cjs/commands/ListCrawlersCommand.js +3 -3
- package/dist-cjs/models/models_0.js +32 -35
- package/dist-cjs/models/models_1.js +35 -39
- package/dist-cjs/models/models_2.js +37 -4
- package/dist-cjs/protocols/Aws_json1_1.js +174 -0
- package/dist-es/commands/CreateSchemaCommand.js +2 -1
- package/dist-es/commands/ListBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListCrawlersCommand.js +1 -1
- package/dist-es/models/models_0.js +21 -25
- package/dist-es/models/models_1.js +25 -29
- package/dist-es/models/models_2.js +29 -0
- package/dist-es/protocols/Aws_json1_1.js +174 -0
- package/dist-types/Glue.d.ts +15 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +2 -1
- 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/models/models_0.d.ts +234 -143
- package/dist-types/models/models_1.d.ts +380 -98
- package/dist-types/models/models_2.d.ts +103 -3
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +2 -1
- 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/models/models_0.d.ts +60 -51
- package/dist-types/ts3.4/models/models_1.d.ts +51 -50
- package/dist-types/ts3.4/models/models_2.d.ts +57 -4
- package/package.json +2 -2
|
@@ -1,6 +1,130 @@
|
|
|
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
|
+
}
|
|
4
128
|
export declare enum Language {
|
|
5
129
|
PYTHON = "PYTHON",
|
|
6
130
|
SCALA = "SCALA"
|
|
@@ -316,7 +440,7 @@ export interface TableInput {
|
|
|
316
440
|
*/
|
|
317
441
|
Description?: string;
|
|
318
442
|
/**
|
|
319
|
-
* <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>
|
|
320
444
|
*/
|
|
321
445
|
Owner?: string;
|
|
322
446
|
/**
|
|
@@ -348,15 +472,31 @@ export interface TableInput {
|
|
|
348
472
|
*/
|
|
349
473
|
PartitionKeys?: Column[];
|
|
350
474
|
/**
|
|
351
|
-
* <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>
|
|
352
477
|
*/
|
|
353
478
|
ViewOriginalText?: string;
|
|
354
479
|
/**
|
|
355
|
-
* <p>
|
|
480
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
356
481
|
*/
|
|
357
482
|
ViewExpandedText?: string;
|
|
358
483
|
/**
|
|
359
|
-
* <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>
|
|
360
500
|
*/
|
|
361
501
|
TableType?: string;
|
|
362
502
|
/**
|
|
@@ -1851,7 +1991,7 @@ export interface Connection {
|
|
|
1851
1991
|
* </li>
|
|
1852
1992
|
* <li>
|
|
1853
1993
|
* <p>
|
|
1854
|
-
* <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>
|
|
1855
1995
|
* </li>
|
|
1856
1996
|
* <li>
|
|
1857
1997
|
* <p>
|
|
@@ -2116,7 +2256,7 @@ export interface Database {
|
|
|
2116
2256
|
*/
|
|
2117
2257
|
CreateTime?: Date;
|
|
2118
2258
|
/**
|
|
2119
|
-
* <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>
|
|
2120
2260
|
*/
|
|
2121
2261
|
CreateTableDefaultPermissions?: PrincipalPermissions[];
|
|
2122
2262
|
/**
|
|
@@ -4350,15 +4490,31 @@ export interface Table {
|
|
|
4350
4490
|
*/
|
|
4351
4491
|
PartitionKeys?: Column[];
|
|
4352
4492
|
/**
|
|
4353
|
-
* <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>
|
|
4354
4495
|
*/
|
|
4355
4496
|
ViewOriginalText?: string;
|
|
4356
4497
|
/**
|
|
4357
|
-
* <p>
|
|
4498
|
+
* <p>Included for Apache Hive compatibility. Not used in the normal course of Glue operations.</p>
|
|
4358
4499
|
*/
|
|
4359
4500
|
ViewExpandedText?: string;
|
|
4360
4501
|
/**
|
|
4361
|
-
* <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>
|
|
4362
4518
|
*/
|
|
4363
4519
|
TableType?: string;
|
|
4364
4520
|
/**
|
|
@@ -4568,22 +4724,44 @@ export declare enum PermissionType {
|
|
|
4568
4724
|
COLUMN_PERMISSION = "COLUMN_PERMISSION"
|
|
4569
4725
|
}
|
|
4570
4726
|
export interface GetUnfilteredPartitionMetadataRequest {
|
|
4727
|
+
/**
|
|
4728
|
+
* <p>The catalog ID where the partition resides.</p>
|
|
4729
|
+
*/
|
|
4571
4730
|
CatalogId: string | undefined;
|
|
4731
|
+
/**
|
|
4732
|
+
* <p>(Required) Specifies the name of a database that contains the partition.</p>
|
|
4733
|
+
*/
|
|
4572
4734
|
DatabaseName: string | undefined;
|
|
4735
|
+
/**
|
|
4736
|
+
* <p>(Required) Specifies the name of a table that contains the partition.</p>
|
|
4737
|
+
*/
|
|
4573
4738
|
TableName: string | undefined;
|
|
4739
|
+
/**
|
|
4740
|
+
* <p>(Required) A list of partition key values.</p>
|
|
4741
|
+
*/
|
|
4574
4742
|
PartitionValues: string[] | undefined;
|
|
4575
4743
|
/**
|
|
4576
|
-
* <p>A structure containing
|
|
4744
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4577
4745
|
*/
|
|
4578
4746
|
AuditContext?: AuditContext;
|
|
4747
|
+
/**
|
|
4748
|
+
* <p>(Required) A list of supported permission types. </p>
|
|
4749
|
+
*/
|
|
4579
4750
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
4580
4751
|
}
|
|
4581
4752
|
export interface GetUnfilteredPartitionMetadataResponse {
|
|
4582
4753
|
/**
|
|
4583
|
-
* <p>
|
|
4754
|
+
* <p>A Partition object containing the partition metadata.</p>
|
|
4584
4755
|
*/
|
|
4585
4756
|
Partition?: Partition;
|
|
4757
|
+
/**
|
|
4758
|
+
* <p>A list of column names that the user has been granted access to.</p>
|
|
4759
|
+
*/
|
|
4586
4760
|
AuthorizedColumns?: string[];
|
|
4761
|
+
/**
|
|
4762
|
+
* <p>A Boolean value that indicates whether the partition location is registered
|
|
4763
|
+
* with Lake Formation.</p>
|
|
4764
|
+
*/
|
|
4587
4765
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4588
4766
|
}
|
|
4589
4767
|
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
@@ -4596,56 +4774,224 @@ export declare class PermissionTypeMismatchException extends __BaseException {
|
|
|
4596
4774
|
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
4597
4775
|
}
|
|
4598
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
|
+
*/
|
|
4599
4781
|
CatalogId: string | undefined;
|
|
4782
|
+
/**
|
|
4783
|
+
* <p>The name of the catalog database where the partitions reside.</p>
|
|
4784
|
+
*/
|
|
4600
4785
|
DatabaseName: string | undefined;
|
|
4786
|
+
/**
|
|
4787
|
+
* <p>The name of the table that contains the partition.</p>
|
|
4788
|
+
*/
|
|
4601
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
|
+
*/
|
|
4602
4892
|
Expression?: string;
|
|
4603
4893
|
/**
|
|
4604
|
-
* <p>A structure containing
|
|
4894
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4605
4895
|
*/
|
|
4606
4896
|
AuditContext?: AuditContext;
|
|
4897
|
+
/**
|
|
4898
|
+
* <p>A list of supported permission types. </p>
|
|
4899
|
+
*/
|
|
4607
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
|
+
*/
|
|
4608
4905
|
NextToken?: string;
|
|
4609
4906
|
/**
|
|
4610
|
-
* <p>
|
|
4611
|
-
* multiple requests to be run in parallel.</p>
|
|
4907
|
+
* <p>The segment of the table's partitions to scan in this request.</p>
|
|
4612
4908
|
*/
|
|
4613
4909
|
Segment?: Segment;
|
|
4910
|
+
/**
|
|
4911
|
+
* <p>The maximum number of partitions to return in a single response.</p>
|
|
4912
|
+
*/
|
|
4614
4913
|
MaxResults?: number;
|
|
4615
4914
|
}
|
|
4915
|
+
/**
|
|
4916
|
+
* <p>A partition that contains unfiltered metadata.</p>
|
|
4917
|
+
*/
|
|
4616
4918
|
export interface UnfilteredPartition {
|
|
4617
4919
|
/**
|
|
4618
|
-
* <p>
|
|
4920
|
+
* <p>The partition object.</p>
|
|
4619
4921
|
*/
|
|
4620
4922
|
Partition?: Partition;
|
|
4923
|
+
/**
|
|
4924
|
+
* <p>The list of columns the user has permissions to access.</p>
|
|
4925
|
+
*/
|
|
4621
4926
|
AuthorizedColumns?: string[];
|
|
4927
|
+
/**
|
|
4928
|
+
* <p>A Boolean value indicating that the partition location is registered with Lake Formation.</p>
|
|
4929
|
+
*/
|
|
4622
4930
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4623
4931
|
}
|
|
4624
4932
|
export interface GetUnfilteredPartitionsMetadataResponse {
|
|
4933
|
+
/**
|
|
4934
|
+
* <p>A list of requested partitions.</p>
|
|
4935
|
+
*/
|
|
4625
4936
|
UnfilteredPartitions?: UnfilteredPartition[];
|
|
4937
|
+
/**
|
|
4938
|
+
* <p>A continuation token, if the returned list of partitions does not include the last
|
|
4939
|
+
* one.</p>
|
|
4940
|
+
*/
|
|
4626
4941
|
NextToken?: string;
|
|
4627
4942
|
}
|
|
4628
4943
|
export interface GetUnfilteredTableMetadataRequest {
|
|
4944
|
+
/**
|
|
4945
|
+
* <p>The catalog ID where the table resides.</p>
|
|
4946
|
+
*/
|
|
4629
4947
|
CatalogId: string | undefined;
|
|
4948
|
+
/**
|
|
4949
|
+
* <p>(Required) Specifies the name of a database that contains the table.</p>
|
|
4950
|
+
*/
|
|
4630
4951
|
DatabaseName: string | undefined;
|
|
4952
|
+
/**
|
|
4953
|
+
* <p>(Required) Specifies the name of a table for which you are requesting metadata.</p>
|
|
4954
|
+
*/
|
|
4631
4955
|
Name: string | undefined;
|
|
4632
4956
|
/**
|
|
4633
|
-
* <p>A structure containing
|
|
4957
|
+
* <p>A structure containing Lake Formation audit context information.</p>
|
|
4634
4958
|
*/
|
|
4635
4959
|
AuditContext?: AuditContext;
|
|
4960
|
+
/**
|
|
4961
|
+
* <p>(Required) A list of supported permission types. </p>
|
|
4962
|
+
*/
|
|
4636
4963
|
SupportedPermissionTypes: (PermissionType | string)[] | undefined;
|
|
4637
4964
|
}
|
|
4965
|
+
/**
|
|
4966
|
+
* <p>A filter that uses both column-level and row-level filtering.</p>
|
|
4967
|
+
*/
|
|
4638
4968
|
export interface ColumnRowFilter {
|
|
4969
|
+
/**
|
|
4970
|
+
* <p>A string containing the name of the column.</p>
|
|
4971
|
+
*/
|
|
4639
4972
|
ColumnName?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* <p>A string containing the row-level filter expression.</p>
|
|
4975
|
+
*/
|
|
4640
4976
|
RowFilterExpression?: string;
|
|
4641
4977
|
}
|
|
4642
4978
|
export interface GetUnfilteredTableMetadataResponse {
|
|
4643
4979
|
/**
|
|
4644
|
-
* <p>
|
|
4980
|
+
* <p>A Table object containing the table metadata.</p>
|
|
4645
4981
|
*/
|
|
4646
4982
|
Table?: Table;
|
|
4983
|
+
/**
|
|
4984
|
+
* <p>A list of column names that the user has been granted access to.</p>
|
|
4985
|
+
*/
|
|
4647
4986
|
AuthorizedColumns?: string[];
|
|
4987
|
+
/**
|
|
4988
|
+
* <p>A Boolean value that indicates whether the partition location is registered
|
|
4989
|
+
* with Lake Formation.</p>
|
|
4990
|
+
*/
|
|
4648
4991
|
IsRegisteredWithLakeFormation?: boolean;
|
|
4992
|
+
/**
|
|
4993
|
+
* <p>A list of column row filters.</p>
|
|
4994
|
+
*/
|
|
4649
4995
|
CellFilters?: ColumnRowFilter[];
|
|
4650
4996
|
}
|
|
4651
4997
|
export interface GetUserDefinedFunctionRequest {
|
|
@@ -4831,70 +5177,22 @@ export interface ImportCatalogToGlueRequest {
|
|
|
4831
5177
|
}
|
|
4832
5178
|
export interface ImportCatalogToGlueResponse {
|
|
4833
5179
|
}
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
|
|
4837
|
-
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
* <p>List of names of blueprints in the account.</p>
|
|
4851
|
-
*/
|
|
4852
|
-
Blueprints?: string[];
|
|
4853
|
-
/**
|
|
4854
|
-
* <p>A continuation token, if not all blueprint names have been returned.</p>
|
|
4855
|
-
*/
|
|
4856
|
-
NextToken?: string;
|
|
4857
|
-
}
|
|
4858
|
-
export interface ListCrawlersRequest {
|
|
4859
|
-
/**
|
|
4860
|
-
* <p>The maximum size of a list to return.</p>
|
|
4861
|
-
*/
|
|
4862
|
-
MaxResults?: number;
|
|
4863
|
-
/**
|
|
4864
|
-
* <p>A continuation token, if this is a continuation request.</p>
|
|
4865
|
-
*/
|
|
4866
|
-
NextToken?: string;
|
|
4867
|
-
/**
|
|
4868
|
-
* <p>Specifies to return only these tagged resources.</p>
|
|
4869
|
-
*/
|
|
4870
|
-
Tags?: Record<string, string>;
|
|
4871
|
-
}
|
|
4872
|
-
export interface ListCrawlersResponse {
|
|
4873
|
-
/**
|
|
4874
|
-
* <p>The names of all crawlers in the account, or the crawlers with the specified tags.</p>
|
|
4875
|
-
*/
|
|
4876
|
-
CrawlerNames?: string[];
|
|
4877
|
-
/**
|
|
4878
|
-
* <p>A continuation token, if the returned list does not contain the
|
|
4879
|
-
* last metric available.</p>
|
|
4880
|
-
*/
|
|
4881
|
-
NextToken?: string;
|
|
4882
|
-
}
|
|
4883
|
-
export declare enum FieldName {
|
|
4884
|
-
CRAWL_ID = "CRAWL_ID",
|
|
4885
|
-
DPU_HOUR = "DPU_HOUR",
|
|
4886
|
-
END_TIME = "END_TIME",
|
|
4887
|
-
START_TIME = "START_TIME",
|
|
4888
|
-
STATE = "STATE"
|
|
4889
|
-
}
|
|
4890
|
-
export declare enum FilterOperator {
|
|
4891
|
-
EQ = "EQ",
|
|
4892
|
-
GE = "GE",
|
|
4893
|
-
GT = "GT",
|
|
4894
|
-
LE = "LE",
|
|
4895
|
-
LT = "LT",
|
|
4896
|
-
NE = "NE"
|
|
4897
|
-
}
|
|
5180
|
+
/**
|
|
5181
|
+
* @internal
|
|
5182
|
+
*/
|
|
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;
|
|
4898
5196
|
/**
|
|
4899
5197
|
* @internal
|
|
4900
5198
|
*/
|
|
@@ -5963,19 +6261,3 @@ export declare const ImportCatalogToGlueRequestFilterSensitiveLog: (obj: ImportC
|
|
|
5963
6261
|
* @internal
|
|
5964
6262
|
*/
|
|
5965
6263
|
export declare const ImportCatalogToGlueResponseFilterSensitiveLog: (obj: ImportCatalogToGlueResponse) => any;
|
|
5966
|
-
/**
|
|
5967
|
-
* @internal
|
|
5968
|
-
*/
|
|
5969
|
-
export declare const ListBlueprintsRequestFilterSensitiveLog: (obj: ListBlueprintsRequest) => any;
|
|
5970
|
-
/**
|
|
5971
|
-
* @internal
|
|
5972
|
-
*/
|
|
5973
|
-
export declare const ListBlueprintsResponseFilterSensitiveLog: (obj: ListBlueprintsResponse) => any;
|
|
5974
|
-
/**
|
|
5975
|
-
* @internal
|
|
5976
|
-
*/
|
|
5977
|
-
export declare const ListCrawlersRequestFilterSensitiveLog: (obj: ListCrawlersRequest) => any;
|
|
5978
|
-
/**
|
|
5979
|
-
* @internal
|
|
5980
|
-
*/
|
|
5981
|
-
export declare const ListCrawlersResponseFilterSensitiveLog: (obj: ListCrawlersResponse) => any;
|