@aws-sdk/client-glue 3.216.0 → 3.219.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/CreateUserDefinedFunctionCommand.js +3 -3
- package/dist-cjs/commands/PutSchemaVersionMetadataCommand.js +3 -3
- package/dist-cjs/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +24 -18
- package/dist-cjs/models/models_1.js +18 -18
- package/dist-cjs/models/models_2.js +15 -3
- package/dist-cjs/protocols/Aws_json1_1.js +72 -0
- package/dist-es/commands/CreateUserDefinedFunctionCommand.js +1 -1
- package/dist-es/commands/PutSchemaVersionMetadataCommand.js +1 -1
- package/dist-es/commands/PutWorkflowRunPropertiesCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +16 -9
- package/dist-es/models/models_1.js +9 -9
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +72 -0
- package/dist-types/Glue.d.ts +22 -52
- package/dist-types/commands/CreateCustomEntityTypeCommand.d.ts +1 -2
- package/dist-types/commands/CreateMLTransformCommand.d.ts +1 -3
- package/dist-types/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
- package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +0 -1
- package/dist-types/commands/GetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -2
- package/dist-types/commands/ListCrawlersCommand.d.ts +0 -1
- package/dist-types/commands/ListCrawlsCommand.d.ts +2 -3
- package/dist-types/commands/ListDevEndpointsCommand.d.ts +0 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListTriggersCommand.d.ts +0 -1
- package/dist-types/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/PutWorkflowRunPropertiesCommand.d.ts +1 -2
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +2 -4
- package/dist-types/commands/StartImportLabelsTaskRunCommand.d.ts +0 -3
- package/dist-types/commands/StartMLEvaluationTaskRunCommand.d.ts +2 -4
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -4
- package/dist-types/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +0 -1
- package/dist-types/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +0 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +132 -161
- package/dist-types/models/models_1.d.ts +89 -132
- package/dist-types/models/models_2.d.ts +111 -67
- package/dist-types/ts3.4/commands/CreateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutWorkflowRunPropertiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +33 -22
- package/dist-types/ts3.4/models/models_1.d.ts +22 -30
- package/dist-types/ts3.4/models/models_2.d.ts +33 -1
- package/package.json +3 -3
|
@@ -1,6 +1,49 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { AuditContext, Blueprint, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, Compatibility, ConnectionType, Crawler, CsvHeaderOption, CustomEntityType, DatabaseIdentifier, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, GlueTable, JobRun, Language, Partition, PartitionValueList, PhysicalConnectionRequirements, PrincipalPermissions, PrincipalType, RegistryId, ResourceUri, SchemaId, SchemaStatus, SchemaVersionStatus, Session, StorageDescriptor, TableIdentifier, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>A structure used to create or update a user-defined function.</p>
|
|
6
|
+
*/
|
|
7
|
+
export interface UserDefinedFunctionInput {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The name of the function.</p>
|
|
10
|
+
*/
|
|
11
|
+
FunctionName?: string;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The Java class that contains the function code.</p>
|
|
14
|
+
*/
|
|
15
|
+
ClassName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The owner of the function.</p>
|
|
18
|
+
*/
|
|
19
|
+
OwnerName?: string;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The owner type.</p>
|
|
22
|
+
*/
|
|
23
|
+
OwnerType?: PrincipalType | string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The resource URIs for the function.</p>
|
|
26
|
+
*/
|
|
27
|
+
ResourceUris?: ResourceUri[];
|
|
28
|
+
}
|
|
29
|
+
export interface CreateUserDefinedFunctionRequest {
|
|
30
|
+
/**
|
|
31
|
+
* <p>The ID of the Data Catalog in which to create the function. If none is provided, the Amazon Web Services
|
|
32
|
+
* account ID is used by default.</p>
|
|
33
|
+
*/
|
|
34
|
+
CatalogId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* <p>The name of the catalog database in which to create the function.</p>
|
|
37
|
+
*/
|
|
38
|
+
DatabaseName: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>A <code>FunctionInput</code> object that defines the function
|
|
41
|
+
* to create in the Data Catalog.</p>
|
|
42
|
+
*/
|
|
43
|
+
FunctionInput: UserDefinedFunctionInput | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface CreateUserDefinedFunctionResponse {
|
|
46
|
+
}
|
|
4
47
|
export interface CreateWorkflowRequest {
|
|
5
48
|
/**
|
|
6
49
|
* <p>The name to be assigned to the workflow. It should be unique within your account.</p>
|
|
@@ -339,7 +382,7 @@ export interface DeleteSchemaVersionsInput {
|
|
|
339
382
|
SchemaId: SchemaId | undefined;
|
|
340
383
|
/**
|
|
341
384
|
* <p>A version range may be supplied which may be of the format:</p>
|
|
342
|
-
*
|
|
385
|
+
* <ul>
|
|
343
386
|
* <li>
|
|
344
387
|
* <p>a single version number, 5</p>
|
|
345
388
|
* </li>
|
|
@@ -547,8 +590,7 @@ export interface BlueprintRun {
|
|
|
547
590
|
WorkflowName?: string;
|
|
548
591
|
/**
|
|
549
592
|
* <p>The state of the blueprint run. Possible values are:</p>
|
|
550
|
-
*
|
|
551
|
-
* <ul>
|
|
593
|
+
* <ul>
|
|
552
594
|
* <li>
|
|
553
595
|
* <p>Running — The blueprint run is in progress.</p>
|
|
554
596
|
* </li>
|
|
@@ -1631,8 +1673,7 @@ export interface GetDatabasesRequest {
|
|
|
1631
1673
|
MaxResults?: number;
|
|
1632
1674
|
/**
|
|
1633
1675
|
* <p>Allows you to specify that you want to list the databases shared with your account. The allowable values are <code>FOREIGN</code> or <code>ALL</code>. </p>
|
|
1634
|
-
*
|
|
1635
|
-
* <ul>
|
|
1676
|
+
* <ul>
|
|
1636
1677
|
* <li>
|
|
1637
1678
|
* <p>If set to <code>FOREIGN</code>, will list the databases shared with your account. </p>
|
|
1638
1679
|
* </li>
|
|
@@ -1666,11 +1707,9 @@ export interface GetDataCatalogEncryptionSettingsRequest {
|
|
|
1666
1707
|
* <code>CreateConnection</code> or <code>UpdateConnection</code> and store it in the
|
|
1667
1708
|
* <code>ENCRYPTED_PASSWORD</code> field in the connection properties. You can enable catalog
|
|
1668
1709
|
* encryption or only password encryption.</p>
|
|
1669
|
-
*
|
|
1670
|
-
* <p>When a <code>CreationConnection</code> request arrives containing a password, the Data
|
|
1710
|
+
* <p>When a <code>CreationConnection</code> request arrives containing a password, the Data
|
|
1671
1711
|
* Catalog first encrypts the password using your KMS key. It then encrypts the whole
|
|
1672
1712
|
* connection object again if catalog encryption is also enabled.</p>
|
|
1673
|
-
*
|
|
1674
1713
|
* <p>This encryption requires that you set KMS key permissions to enable or restrict access
|
|
1675
1714
|
* on the password key according to your security requirements. For example, you might want only
|
|
1676
1715
|
* administrators to have decrypt permission on the password key.</p>
|
|
@@ -1682,12 +1721,10 @@ export interface ConnectionPasswordEncryption {
|
|
|
1682
1721
|
ReturnConnectionPasswordEncrypted: boolean | undefined;
|
|
1683
1722
|
/**
|
|
1684
1723
|
* <p>An KMS key that is used to encrypt the connection password. </p>
|
|
1685
|
-
*
|
|
1686
1724
|
* <p>If connection password protection is enabled, the caller of <code>CreateConnection</code>
|
|
1687
1725
|
* and <code>UpdateConnection</code> needs at least <code>kms:Encrypt</code> permission on the
|
|
1688
1726
|
* specified KMS key, to encrypt passwords before storing them in the Data Catalog. </p>
|
|
1689
|
-
*
|
|
1690
|
-
* <p>You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.</p>
|
|
1727
|
+
* <p>You can set the decrypt permission to enable or restrict access on the password key according to your security requirements.</p>
|
|
1691
1728
|
*/
|
|
1692
1729
|
AwsKmsKeyId?: string;
|
|
1693
1730
|
}
|
|
@@ -2236,8 +2273,7 @@ export interface GetMLTransformRequest {
|
|
|
2236
2273
|
}
|
|
2237
2274
|
/**
|
|
2238
2275
|
* <p>A structure containing the column name and column importance score for a column. </p>
|
|
2239
|
-
*
|
|
2240
|
-
* <p>Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.</p>
|
|
2276
|
+
* <p>Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.</p>
|
|
2241
2277
|
*/
|
|
2242
2278
|
export interface ColumnImportance {
|
|
2243
2279
|
/**
|
|
@@ -2251,8 +2287,7 @@ export interface ColumnImportance {
|
|
|
2251
2287
|
}
|
|
2252
2288
|
/**
|
|
2253
2289
|
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
2254
|
-
*
|
|
2255
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
2290
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
2256
2291
|
*/
|
|
2257
2292
|
export interface ConfusionMatrix {
|
|
2258
2293
|
/**
|
|
@@ -2285,7 +2320,7 @@ export interface FindMatchesMetrics {
|
|
|
2285
2320
|
* <p>The area under the precision/recall curve (AUPRC) is a single number measuring the overall
|
|
2286
2321
|
* quality of the transform, that is independent of the choice made for precision vs. recall.
|
|
2287
2322
|
* Higher values indicate that you have a more attractive precision vs. recall tradeoff.</p>
|
|
2288
|
-
*
|
|
2323
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
2289
2324
|
*/
|
|
2290
2325
|
AreaUnderPRCurve?: number;
|
|
2291
2326
|
/**
|
|
@@ -2307,7 +2342,7 @@ export interface FindMatchesMetrics {
|
|
|
2307
2342
|
F1?: number;
|
|
2308
2343
|
/**
|
|
2309
2344
|
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
2310
|
-
*
|
|
2345
|
+
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
2311
2346
|
*/
|
|
2312
2347
|
ConfusionMatrix?: ConfusionMatrix;
|
|
2313
2348
|
/**
|
|
@@ -2408,13 +2443,12 @@ export interface GetMLTransformResponse {
|
|
|
2408
2443
|
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
2409
2444
|
* information, see the <a href="https://aws.amazon.com/glue/pricing/">Glue pricing
|
|
2410
2445
|
* page</a>. </p>
|
|
2411
|
-
*
|
|
2412
2446
|
* <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
|
|
2413
2447
|
*/
|
|
2414
2448
|
MaxCapacity?: number;
|
|
2415
2449
|
/**
|
|
2416
2450
|
* <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
2417
|
-
*
|
|
2451
|
+
* <ul>
|
|
2418
2452
|
* <li>
|
|
2419
2453
|
* <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>
|
|
2420
2454
|
* </li>
|
|
@@ -2585,8 +2619,7 @@ export interface MLTransform {
|
|
|
2585
2619
|
Schema?: SchemaColumn[];
|
|
2586
2620
|
/**
|
|
2587
2621
|
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required permissions. The required permissions include both Glue service role permissions to Glue resources, and Amazon S3 permissions required by the transform. </p>
|
|
2588
|
-
*
|
|
2589
|
-
* <ul>
|
|
2622
|
+
* <ul>
|
|
2590
2623
|
* <li>
|
|
2591
2624
|
* <p>This role needs Glue service role permissions to allow access to resources in Glue. See <a href="https://docs.aws.amazon.com/glue/latest/dg/attach-policy-iam-user.html">Attach a Policy to IAM Users That Access Glue</a>.</p>
|
|
2592
2625
|
* </li>
|
|
@@ -2605,10 +2638,9 @@ export interface MLTransform {
|
|
|
2605
2638
|
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
2606
2639
|
* information, see the <a href="http://aws.amazon.com/glue/pricing/">Glue pricing
|
|
2607
2640
|
* page</a>. </p>
|
|
2608
|
-
*
|
|
2609
|
-
* <p>
|
|
2641
|
+
* <p>
|
|
2610
2642
|
* <code>MaxCapacity</code> is a mutually exclusive option with <code>NumberOfWorkers</code> and <code>WorkerType</code>.</p>
|
|
2611
|
-
*
|
|
2643
|
+
* <ul>
|
|
2612
2644
|
* <li>
|
|
2613
2645
|
* <p>If either <code>NumberOfWorkers</code> or <code>WorkerType</code> is set, then <code>MaxCapacity</code> cannot be set.</p>
|
|
2614
2646
|
* </li>
|
|
@@ -2623,13 +2655,12 @@ export interface MLTransform {
|
|
|
2623
2655
|
* <code>MaxCapacity</code> and <code>NumberOfWorkers</code> must both be at least 1.</p>
|
|
2624
2656
|
* </li>
|
|
2625
2657
|
* </ul>
|
|
2626
|
-
*
|
|
2627
|
-
* <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
|
|
2658
|
+
* <p>When the <code>WorkerType</code> field is set to a value other than <code>Standard</code>, the <code>MaxCapacity</code> field is set automatically and becomes read-only.</p>
|
|
2628
2659
|
*/
|
|
2629
2660
|
MaxCapacity?: number;
|
|
2630
2661
|
/**
|
|
2631
2662
|
* <p>The type of predefined worker that is allocated when a task of this transform runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
2632
|
-
*
|
|
2663
|
+
* <ul>
|
|
2633
2664
|
* <li>
|
|
2634
2665
|
* <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>
|
|
2635
2666
|
* </li>
|
|
@@ -2640,10 +2671,9 @@ export interface MLTransform {
|
|
|
2640
2671
|
* <p>For the <code>G.2X</code> worker type, each worker provides 8 vCPU, 32 GB of memory and a 128GB disk, and 1 executor per worker.</p>
|
|
2641
2672
|
* </li>
|
|
2642
2673
|
* </ul>
|
|
2643
|
-
*
|
|
2644
|
-
* <p>
|
|
2674
|
+
* <p>
|
|
2645
2675
|
* <code>MaxCapacity</code> is a mutually exclusive option with <code>NumberOfWorkers</code> and <code>WorkerType</code>.</p>
|
|
2646
|
-
*
|
|
2676
|
+
* <ul>
|
|
2647
2677
|
* <li>
|
|
2648
2678
|
* <p>If either <code>NumberOfWorkers</code> or <code>WorkerType</code> is set, then <code>MaxCapacity</code> cannot be set.</p>
|
|
2649
2679
|
* </li>
|
|
@@ -2662,8 +2692,7 @@ export interface MLTransform {
|
|
|
2662
2692
|
WorkerType?: WorkerType | string;
|
|
2663
2693
|
/**
|
|
2664
2694
|
* <p>The number of workers of a defined <code>workerType</code> that are allocated when a task of the transform runs.</p>
|
|
2665
|
-
*
|
|
2666
|
-
* <p>If <code>WorkerType</code> is set, then <code>NumberOfWorkers</code> is required (and vice versa).</p>
|
|
2695
|
+
* <p>If <code>WorkerType</code> is set, then <code>NumberOfWorkers</code> is required (and vice versa).</p>
|
|
2667
2696
|
*/
|
|
2668
2697
|
NumberOfWorkers?: number;
|
|
2669
2698
|
/**
|
|
@@ -2743,10 +2772,8 @@ export declare enum BackfillErrorCode {
|
|
|
2743
2772
|
}
|
|
2744
2773
|
/**
|
|
2745
2774
|
* <p>A list of errors that can occur when registering partition indexes for an existing table.</p>
|
|
2746
|
-
*
|
|
2747
|
-
*
|
|
2748
|
-
*
|
|
2749
|
-
* <ul>
|
|
2775
|
+
* <p>These errors give the details about why an index registration failed and provide a limited number of partitions in the response, so that you can fix the partitions at fault and try registering the index again. The most common set of errors that can occur are categorized as follows:</p>
|
|
2776
|
+
* <ul>
|
|
2750
2777
|
* <li>
|
|
2751
2778
|
* <p>EncryptedPartitionError: The partitions are encrypted.</p>
|
|
2752
2779
|
* </li>
|
|
@@ -2807,9 +2834,8 @@ export interface PartitionIndexDescriptor {
|
|
|
2807
2834
|
Keys: KeySchemaElement[] | undefined;
|
|
2808
2835
|
/**
|
|
2809
2836
|
* <p>The status of the partition index. </p>
|
|
2810
|
-
*
|
|
2811
|
-
*
|
|
2812
|
-
* <ul>
|
|
2837
|
+
* <p>The possible statuses are:</p>
|
|
2838
|
+
* <ul>
|
|
2813
2839
|
* <li>
|
|
2814
2840
|
* <p>CREATING: The index is being created. When an index is in a CREATING state, the index or its table cannot be deleted.</p>
|
|
2815
2841
|
* </li>
|
|
@@ -2973,7 +2999,6 @@ export interface GetPartitionsRequest {
|
|
|
2973
2999
|
* <p>The following list shows the valid operators on each type. When you define a crawler, the
|
|
2974
3000
|
* <code>partitionKey</code> type is created as a <code>STRING</code>, to be compatible with the catalog
|
|
2975
3001
|
* partitions. </p>
|
|
2976
|
-
*
|
|
2977
3002
|
* <p>
|
|
2978
3003
|
* <i>Sample API Call</i>: </p>
|
|
2979
3004
|
*/
|
|
@@ -3038,17 +3063,15 @@ export interface GetPlanRequest {
|
|
|
3038
3063
|
Language?: Language | string;
|
|
3039
3064
|
/**
|
|
3040
3065
|
* <p>A map to hold additional optional key-value parameters.</p>
|
|
3041
|
-
*
|
|
3042
|
-
*
|
|
3043
|
-
*
|
|
3044
|
-
* <ul>
|
|
3066
|
+
* <p>Currently, these key-value pairs are supported:</p>
|
|
3067
|
+
* <ul>
|
|
3045
3068
|
* <li>
|
|
3046
3069
|
* <p>
|
|
3047
3070
|
* <code>inferSchema</code> — Specifies whether to set <code>inferSchema</code> to true or false for the default script generated by an Glue job. For example, to set <code>inferSchema</code> to true, pass the following key value pair:</p>
|
|
3048
|
-
*
|
|
3071
|
+
* <p>
|
|
3049
3072
|
* <code>--additional-plan-options-map '{"inferSchema":"true"}'</code>
|
|
3050
3073
|
* </p>
|
|
3051
|
-
*
|
|
3074
|
+
* </li>
|
|
3052
3075
|
* </ul>
|
|
3053
3076
|
*/
|
|
3054
3077
|
AdditionalPlanOptionsMap?: Record<string, string>;
|
|
@@ -3166,7 +3189,7 @@ export interface GetResourcePolicyResponse {
|
|
|
3166
3189
|
export interface GetSchemaInput {
|
|
3167
3190
|
/**
|
|
3168
3191
|
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
3169
|
-
*
|
|
3192
|
+
* <ul>
|
|
3170
3193
|
* <li>
|
|
3171
3194
|
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
3172
3195
|
* </li>
|
|
@@ -3234,7 +3257,7 @@ export interface GetSchemaResponse {
|
|
|
3234
3257
|
export interface GetSchemaByDefinitionInput {
|
|
3235
3258
|
/**
|
|
3236
3259
|
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
3237
|
-
*
|
|
3260
|
+
* <ul>
|
|
3238
3261
|
* <li>
|
|
3239
3262
|
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p>
|
|
3240
3263
|
* </li>
|
|
@@ -3287,7 +3310,7 @@ export interface SchemaVersionNumber {
|
|
|
3287
3310
|
export interface GetSchemaVersionInput {
|
|
3288
3311
|
/**
|
|
3289
3312
|
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
3290
|
-
*
|
|
3313
|
+
* <ul>
|
|
3291
3314
|
* <li>
|
|
3292
3315
|
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
3293
3316
|
* </li>
|
|
@@ -3342,7 +3365,7 @@ export declare enum SchemaDiffType {
|
|
|
3342
3365
|
export interface GetSchemaVersionsDiffInput {
|
|
3343
3366
|
/**
|
|
3344
3367
|
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
3345
|
-
*
|
|
3368
|
+
* <ul>
|
|
3346
3369
|
* <li>
|
|
3347
3370
|
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p>
|
|
3348
3371
|
* </li>
|
|
@@ -3612,7 +3635,7 @@ export interface Table {
|
|
|
3612
3635
|
/**
|
|
3613
3636
|
* <p>A list of columns by which the table is partitioned. Only primitive
|
|
3614
3637
|
* types are supported as partition keys.</p>
|
|
3615
|
-
*
|
|
3638
|
+
* <p>When you create a table used by Amazon Athena, and you do not specify any
|
|
3616
3639
|
* <code>partitionKeys</code>, you must at least set the value of <code>partitionKeys</code> to
|
|
3617
3640
|
* an empty list. For example:</p>
|
|
3618
3641
|
* <p>
|
|
@@ -4172,7 +4195,7 @@ export declare enum FilterOperator {
|
|
|
4172
4195
|
export interface CrawlsFilter {
|
|
4173
4196
|
/**
|
|
4174
4197
|
* <p>A key used to filter the crawler runs for a specified crawler. Valid values for each of the field names are:</p>
|
|
4175
|
-
*
|
|
4198
|
+
* <ul>
|
|
4176
4199
|
* <li>
|
|
4177
4200
|
* <p>
|
|
4178
4201
|
* <code>CRAWL_ID</code>: A string representing the UUID identifier for a crawl.</p>
|
|
@@ -4194,7 +4217,7 @@ export interface CrawlsFilter {
|
|
|
4194
4217
|
FieldName?: FieldName | string;
|
|
4195
4218
|
/**
|
|
4196
4219
|
* <p>A defined comparator that operates on the value. The available operators are:</p>
|
|
4197
|
-
*
|
|
4220
|
+
* <ul>
|
|
4198
4221
|
* <li>
|
|
4199
4222
|
* <p>
|
|
4200
4223
|
* <code>GT</code>: Greater than.</p>
|
|
@@ -4520,7 +4543,7 @@ export interface ListSchemasResponse {
|
|
|
4520
4543
|
export interface ListSchemaVersionsInput {
|
|
4521
4544
|
/**
|
|
4522
4545
|
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
4523
|
-
*
|
|
4546
|
+
* <ul>
|
|
4524
4547
|
* <li>
|
|
4525
4548
|
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
4526
4549
|
* </li>
|
|
@@ -4761,72 +4784,18 @@ export interface MetadataKeyValuePair {
|
|
|
4761
4784
|
*/
|
|
4762
4785
|
MetadataValue?: string;
|
|
4763
4786
|
}
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
SchemaVersionId?: string;
|
|
4777
|
-
/**
|
|
4778
|
-
* <p>The metadata key's corresponding value.</p>
|
|
4779
|
-
*/
|
|
4780
|
-
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
4781
|
-
}
|
|
4782
|
-
export interface PutSchemaVersionMetadataResponse {
|
|
4783
|
-
/**
|
|
4784
|
-
* <p>The Amazon Resource Name (ARN) for the schema.</p>
|
|
4785
|
-
*/
|
|
4786
|
-
SchemaArn?: string;
|
|
4787
|
-
/**
|
|
4788
|
-
* <p>The name for the schema.</p>
|
|
4789
|
-
*/
|
|
4790
|
-
SchemaName?: string;
|
|
4791
|
-
/**
|
|
4792
|
-
* <p>The name for the registry.</p>
|
|
4793
|
-
*/
|
|
4794
|
-
RegistryName?: string;
|
|
4795
|
-
/**
|
|
4796
|
-
* <p>The latest version of the schema.</p>
|
|
4797
|
-
*/
|
|
4798
|
-
LatestVersion?: boolean;
|
|
4799
|
-
/**
|
|
4800
|
-
* <p>The version number of the schema.</p>
|
|
4801
|
-
*/
|
|
4802
|
-
VersionNumber?: number;
|
|
4803
|
-
/**
|
|
4804
|
-
* <p>The unique version ID of the schema version.</p>
|
|
4805
|
-
*/
|
|
4806
|
-
SchemaVersionId?: string;
|
|
4807
|
-
/**
|
|
4808
|
-
* <p>The metadata key.</p>
|
|
4809
|
-
*/
|
|
4810
|
-
MetadataKey?: string;
|
|
4811
|
-
/**
|
|
4812
|
-
* <p>The value of the metadata key.</p>
|
|
4813
|
-
*/
|
|
4814
|
-
MetadataValue?: string;
|
|
4815
|
-
}
|
|
4816
|
-
export interface PutWorkflowRunPropertiesRequest {
|
|
4817
|
-
/**
|
|
4818
|
-
* <p>Name of the workflow which was run.</p>
|
|
4819
|
-
*/
|
|
4820
|
-
Name: string | undefined;
|
|
4821
|
-
/**
|
|
4822
|
-
* <p>The ID of the workflow run for which the run properties should be updated.</p>
|
|
4823
|
-
*/
|
|
4824
|
-
RunId: string | undefined;
|
|
4825
|
-
/**
|
|
4826
|
-
* <p>The properties to put for the specified run.</p>
|
|
4827
|
-
*/
|
|
4828
|
-
RunProperties: Record<string, string> | undefined;
|
|
4829
|
-
}
|
|
4787
|
+
/**
|
|
4788
|
+
* @internal
|
|
4789
|
+
*/
|
|
4790
|
+
export declare const UserDefinedFunctionInputFilterSensitiveLog: (obj: UserDefinedFunctionInput) => any;
|
|
4791
|
+
/**
|
|
4792
|
+
* @internal
|
|
4793
|
+
*/
|
|
4794
|
+
export declare const CreateUserDefinedFunctionRequestFilterSensitiveLog: (obj: CreateUserDefinedFunctionRequest) => any;
|
|
4795
|
+
/**
|
|
4796
|
+
* @internal
|
|
4797
|
+
*/
|
|
4798
|
+
export declare const CreateUserDefinedFunctionResponseFilterSensitiveLog: (obj: CreateUserDefinedFunctionResponse) => any;
|
|
4830
4799
|
/**
|
|
4831
4800
|
* @internal
|
|
4832
4801
|
*/
|
|
@@ -5915,15 +5884,3 @@ export declare const PutResourcePolicyResponseFilterSensitiveLog: (obj: PutResou
|
|
|
5915
5884
|
* @internal
|
|
5916
5885
|
*/
|
|
5917
5886
|
export declare const MetadataKeyValuePairFilterSensitiveLog: (obj: MetadataKeyValuePair) => any;
|
|
5918
|
-
/**
|
|
5919
|
-
* @internal
|
|
5920
|
-
*/
|
|
5921
|
-
export declare const PutSchemaVersionMetadataInputFilterSensitiveLog: (obj: PutSchemaVersionMetadataInput) => any;
|
|
5922
|
-
/**
|
|
5923
|
-
* @internal
|
|
5924
|
-
*/
|
|
5925
|
-
export declare const PutSchemaVersionMetadataResponseFilterSensitiveLog: (obj: PutSchemaVersionMetadataResponse) => any;
|
|
5926
|
-
/**
|
|
5927
|
-
* @internal
|
|
5928
|
-
*/
|
|
5929
|
-
export declare const PutWorkflowRunPropertiesRequestFilterSensitiveLog: (obj: PutWorkflowRunPropertiesRequest) => any;
|