@aws-sdk/client-glue 3.650.0 → 3.651.1
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/index.js +125 -49
- package/dist-es/models/models_0.js +15 -27
- package/dist-es/models/models_1.js +27 -12
- package/dist-es/models/models_2.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +56 -2
- package/dist-types/commands/BatchGetTableOptimizerCommand.d.ts +52 -3
- package/dist-types/commands/CancelDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/CancelMLTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/CancelStatementCommand.d.ts +1 -1
- package/dist-types/commands/CheckSchemaVersionValidityCommand.d.ts +1 -1
- package/dist-types/commands/CreateTableOptimizerCommand.d.ts +20 -1
- package/dist-types/commands/DeleteTableOptimizerCommand.d.ts +4 -1
- package/dist-types/commands/GetMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/GetTableOptimizerCommand.d.ts +42 -2
- package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +31 -1
- package/dist-types/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +24 -2
- package/dist-types/commands/UpdateTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUsageProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +235 -155
- package/dist-types/models/models_1.d.ts +153 -358
- package/dist-types/models/models_2.d.ts +359 -196
- package/dist-types/models/models_3.d.ts +196 -2
- package/dist-types/ts3.4/commands/CancelDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelMLTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelStatementCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CheckSchemaVersionValidityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateTableOptimizerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUsageProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserDefinedFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +57 -52
- package/dist-types/ts3.4/models/models_1.d.ts +52 -83
- package/dist-types/ts3.4/models/models_2.d.ts +85 -57
- package/dist-types/ts3.4/models/models_3.d.ts +57 -1
- package/package.json +5 -5
|
@@ -1,6 +1,158 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, AuthenticationConfiguration, AuthenticationConfigurationInput, Blueprint, Column, ConnectionsList, Crawler, CrawlerTargets,
|
|
3
|
+
import { Action, AuthenticationConfiguration, AuthenticationConfigurationInput, Blueprint, Column, ConnectionsList, Crawler, CrawlerTargets, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, GlueTable, InclusionAnnotationValue, JobRun, LakeFormationConfiguration, LineageConfiguration, PartitionInput, Predicate, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TriggerType, WorkerType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CancelDataQualityRulesetEvaluationRunRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The unique run identifier associated with this run.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
RunId: string | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export interface CancelDataQualityRulesetEvaluationRunResponse {
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface CancelMLTaskRunRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The unique identifier of the machine learning transform.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
TransformId: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>A unique identifier for the task run.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
TaskRunId: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* @enum
|
|
37
|
+
*/
|
|
38
|
+
export declare const TaskStatusType: {
|
|
39
|
+
readonly FAILED: "FAILED";
|
|
40
|
+
readonly RUNNING: "RUNNING";
|
|
41
|
+
readonly STARTING: "STARTING";
|
|
42
|
+
readonly STOPPED: "STOPPED";
|
|
43
|
+
readonly STOPPING: "STOPPING";
|
|
44
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
45
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type TaskStatusType = (typeof TaskStatusType)[keyof typeof TaskStatusType];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export interface CancelMLTaskRunResponse {
|
|
55
|
+
/**
|
|
56
|
+
* <p>The unique identifier of the machine learning transform.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
TransformId?: string;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The unique identifier for the task run.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
TaskRunId?: string;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The status for this run.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
Status?: TaskStatusType;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface CancelStatementRequest {
|
|
75
|
+
/**
|
|
76
|
+
* <p>The Session ID of the statement to be cancelled.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
SessionId: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The ID of the statement to be cancelled.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
Id: number | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>The origin of the request to cancel the statement.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
RequestOrigin?: string;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export interface CancelStatementResponse {
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>The session is in an invalid state to perform a requested operation.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class IllegalSessionStateException extends __BaseException {
|
|
101
|
+
readonly name: "IllegalSessionStateException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
/**
|
|
104
|
+
* <p>A message describing the problem.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
Message?: string;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<IllegalSessionStateException, __BaseException>);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
* @enum
|
|
116
|
+
*/
|
|
117
|
+
export declare const DataFormat: {
|
|
118
|
+
readonly AVRO: "AVRO";
|
|
119
|
+
readonly JSON: "JSON";
|
|
120
|
+
readonly PROTOBUF: "PROTOBUF";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export interface CheckSchemaVersionValidityInput {
|
|
130
|
+
/**
|
|
131
|
+
* <p>The data format of the schema definition. Currently <code>AVRO</code>, <code>JSON</code> and <code>PROTOBUF</code> are supported.</p>
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
DataFormat: DataFormat | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* <p>The definition of the schema that has to be validated.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
SchemaDefinition: string | undefined;
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export interface CheckSchemaVersionValidityResponse {
|
|
145
|
+
/**
|
|
146
|
+
* <p>Return true, if the schema is valid and false otherwise.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
Valid?: boolean;
|
|
150
|
+
/**
|
|
151
|
+
* <p>A validation failure error message.</p>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
Error?: string;
|
|
155
|
+
}
|
|
4
156
|
/**
|
|
5
157
|
* @public
|
|
6
158
|
*/
|
|
@@ -6669,363 +6821,6 @@ export interface GetMLTaskRunsResponse {
|
|
|
6669
6821
|
*/
|
|
6670
6822
|
NextToken?: string;
|
|
6671
6823
|
}
|
|
6672
|
-
/**
|
|
6673
|
-
* @public
|
|
6674
|
-
*/
|
|
6675
|
-
export interface GetMLTransformRequest {
|
|
6676
|
-
/**
|
|
6677
|
-
* <p>The unique identifier of the transform, generated at the time that the transform was
|
|
6678
|
-
* created.</p>
|
|
6679
|
-
* @public
|
|
6680
|
-
*/
|
|
6681
|
-
TransformId: string | undefined;
|
|
6682
|
-
}
|
|
6683
|
-
/**
|
|
6684
|
-
* <p>A structure containing the column name and column importance score for a column. </p>
|
|
6685
|
-
* <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>
|
|
6686
|
-
* @public
|
|
6687
|
-
*/
|
|
6688
|
-
export interface ColumnImportance {
|
|
6689
|
-
/**
|
|
6690
|
-
* <p>The name of a column.</p>
|
|
6691
|
-
* @public
|
|
6692
|
-
*/
|
|
6693
|
-
ColumnName?: string;
|
|
6694
|
-
/**
|
|
6695
|
-
* <p>The column importance score for the column, as a decimal.</p>
|
|
6696
|
-
* @public
|
|
6697
|
-
*/
|
|
6698
|
-
Importance?: number;
|
|
6699
|
-
}
|
|
6700
|
-
/**
|
|
6701
|
-
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
6702
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
6703
|
-
* @public
|
|
6704
|
-
*/
|
|
6705
|
-
export interface ConfusionMatrix {
|
|
6706
|
-
/**
|
|
6707
|
-
* <p>The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.</p>
|
|
6708
|
-
* @public
|
|
6709
|
-
*/
|
|
6710
|
-
NumTruePositives?: number;
|
|
6711
|
-
/**
|
|
6712
|
-
* <p>The number of nonmatches in the data that the transform incorrectly classified as a match,
|
|
6713
|
-
* in the confusion matrix for your transform.</p>
|
|
6714
|
-
* @public
|
|
6715
|
-
*/
|
|
6716
|
-
NumFalsePositives?: number;
|
|
6717
|
-
/**
|
|
6718
|
-
* <p>The number of nonmatches in the data that the transform correctly rejected, in the
|
|
6719
|
-
* confusion matrix for your transform.</p>
|
|
6720
|
-
* @public
|
|
6721
|
-
*/
|
|
6722
|
-
NumTrueNegatives?: number;
|
|
6723
|
-
/**
|
|
6724
|
-
* <p>The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.</p>
|
|
6725
|
-
* @public
|
|
6726
|
-
*/
|
|
6727
|
-
NumFalseNegatives?: number;
|
|
6728
|
-
}
|
|
6729
|
-
/**
|
|
6730
|
-
* <p>The evaluation metrics for the find matches algorithm. The quality of your machine
|
|
6731
|
-
* learning transform is measured by getting your transform to predict some matches and comparing
|
|
6732
|
-
* the results to known matches from the same dataset. The quality metrics are based on a subset
|
|
6733
|
-
* of your data, so they are not precise.</p>
|
|
6734
|
-
* @public
|
|
6735
|
-
*/
|
|
6736
|
-
export interface FindMatchesMetrics {
|
|
6737
|
-
/**
|
|
6738
|
-
* <p>The area under the precision/recall curve (AUPRC) is a single number measuring the overall
|
|
6739
|
-
* quality of the transform, that is independent of the choice made for precision vs. recall.
|
|
6740
|
-
* Higher values indicate that you have a more attractive precision vs. recall tradeoff.</p>
|
|
6741
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
6742
|
-
* @public
|
|
6743
|
-
*/
|
|
6744
|
-
AreaUnderPRCurve?: number;
|
|
6745
|
-
/**
|
|
6746
|
-
* <p>The precision metric indicates when often your transform is correct when it predicts a match. Specifically, it measures how well the transform finds true positives from the total true positives possible.</p>
|
|
6747
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
6748
|
-
* @public
|
|
6749
|
-
*/
|
|
6750
|
-
Precision?: number;
|
|
6751
|
-
/**
|
|
6752
|
-
* <p>The recall metric indicates that for an actual match, how often your transform predicts
|
|
6753
|
-
* the match. Specifically, it measures how well the transform finds true positives from the
|
|
6754
|
-
* total records in the source data.</p>
|
|
6755
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Precision_and_recall">Precision and recall</a> in Wikipedia.</p>
|
|
6756
|
-
* @public
|
|
6757
|
-
*/
|
|
6758
|
-
Recall?: number;
|
|
6759
|
-
/**
|
|
6760
|
-
* <p>The maximum F1 metric indicates the transform's accuracy between 0 and 1, where 1 is the best accuracy.</p>
|
|
6761
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/F1_score">F1 score</a> in Wikipedia.</p>
|
|
6762
|
-
* @public
|
|
6763
|
-
*/
|
|
6764
|
-
F1?: number;
|
|
6765
|
-
/**
|
|
6766
|
-
* <p>The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.</p>
|
|
6767
|
-
* <p>For more information, see <a href="https://en.wikipedia.org/wiki/Confusion_matrix">Confusion matrix</a> in Wikipedia.</p>
|
|
6768
|
-
* @public
|
|
6769
|
-
*/
|
|
6770
|
-
ConfusionMatrix?: ConfusionMatrix;
|
|
6771
|
-
/**
|
|
6772
|
-
* <p>A list of <code>ColumnImportance</code> structures containing column importance metrics, sorted in order of descending importance.</p>
|
|
6773
|
-
* @public
|
|
6774
|
-
*/
|
|
6775
|
-
ColumnImportances?: ColumnImportance[];
|
|
6776
|
-
}
|
|
6777
|
-
/**
|
|
6778
|
-
* <p>Evaluation metrics provide an estimate of the quality of your machine learning transform.</p>
|
|
6779
|
-
* @public
|
|
6780
|
-
*/
|
|
6781
|
-
export interface EvaluationMetrics {
|
|
6782
|
-
/**
|
|
6783
|
-
* <p>The type of machine learning transform.</p>
|
|
6784
|
-
* @public
|
|
6785
|
-
*/
|
|
6786
|
-
TransformType: TransformType | undefined;
|
|
6787
|
-
/**
|
|
6788
|
-
* <p>The evaluation metrics for the find matches algorithm.</p>
|
|
6789
|
-
* @public
|
|
6790
|
-
*/
|
|
6791
|
-
FindMatchesMetrics?: FindMatchesMetrics;
|
|
6792
|
-
}
|
|
6793
|
-
/**
|
|
6794
|
-
* <p>A key-value pair representing a column and data type that this transform can
|
|
6795
|
-
* run against. The <code>Schema</code> parameter of the <code>MLTransform</code> may contain up to 100 of these structures.</p>
|
|
6796
|
-
* @public
|
|
6797
|
-
*/
|
|
6798
|
-
export interface SchemaColumn {
|
|
6799
|
-
/**
|
|
6800
|
-
* <p>The name of the column.</p>
|
|
6801
|
-
* @public
|
|
6802
|
-
*/
|
|
6803
|
-
Name?: string;
|
|
6804
|
-
/**
|
|
6805
|
-
* <p>The type of data in the column.</p>
|
|
6806
|
-
* @public
|
|
6807
|
-
*/
|
|
6808
|
-
DataType?: string;
|
|
6809
|
-
}
|
|
6810
|
-
/**
|
|
6811
|
-
* @public
|
|
6812
|
-
* @enum
|
|
6813
|
-
*/
|
|
6814
|
-
export declare const TransformStatusType: {
|
|
6815
|
-
readonly DELETING: "DELETING";
|
|
6816
|
-
readonly NOT_READY: "NOT_READY";
|
|
6817
|
-
readonly READY: "READY";
|
|
6818
|
-
};
|
|
6819
|
-
/**
|
|
6820
|
-
* @public
|
|
6821
|
-
*/
|
|
6822
|
-
export type TransformStatusType = (typeof TransformStatusType)[keyof typeof TransformStatusType];
|
|
6823
|
-
/**
|
|
6824
|
-
* @public
|
|
6825
|
-
*/
|
|
6826
|
-
export interface GetMLTransformResponse {
|
|
6827
|
-
/**
|
|
6828
|
-
* <p>The unique identifier of the transform, generated at the time that the transform was
|
|
6829
|
-
* created.</p>
|
|
6830
|
-
* @public
|
|
6831
|
-
*/
|
|
6832
|
-
TransformId?: string;
|
|
6833
|
-
/**
|
|
6834
|
-
* <p>The unique name given to the transform when it was created.</p>
|
|
6835
|
-
* @public
|
|
6836
|
-
*/
|
|
6837
|
-
Name?: string;
|
|
6838
|
-
/**
|
|
6839
|
-
* <p>A description of the transform.</p>
|
|
6840
|
-
* @public
|
|
6841
|
-
*/
|
|
6842
|
-
Description?: string;
|
|
6843
|
-
/**
|
|
6844
|
-
* <p>The last known status of the transform (to indicate whether it can be used or not). One of "NOT_READY", "READY", or "DELETING".</p>
|
|
6845
|
-
* @public
|
|
6846
|
-
*/
|
|
6847
|
-
Status?: TransformStatusType;
|
|
6848
|
-
/**
|
|
6849
|
-
* <p>The date and time when the transform was created.</p>
|
|
6850
|
-
* @public
|
|
6851
|
-
*/
|
|
6852
|
-
CreatedOn?: Date;
|
|
6853
|
-
/**
|
|
6854
|
-
* <p>The date and time when the transform was last modified.</p>
|
|
6855
|
-
* @public
|
|
6856
|
-
*/
|
|
6857
|
-
LastModifiedOn?: Date;
|
|
6858
|
-
/**
|
|
6859
|
-
* <p>A list of Glue table definitions used by the transform.</p>
|
|
6860
|
-
* @public
|
|
6861
|
-
*/
|
|
6862
|
-
InputRecordTables?: GlueTable[];
|
|
6863
|
-
/**
|
|
6864
|
-
* <p>The configuration parameters that are specific to the algorithm used.</p>
|
|
6865
|
-
* @public
|
|
6866
|
-
*/
|
|
6867
|
-
Parameters?: TransformParameters;
|
|
6868
|
-
/**
|
|
6869
|
-
* <p>The latest evaluation metrics.</p>
|
|
6870
|
-
* @public
|
|
6871
|
-
*/
|
|
6872
|
-
EvaluationMetrics?: EvaluationMetrics;
|
|
6873
|
-
/**
|
|
6874
|
-
* <p>The number of labels available for this transform.</p>
|
|
6875
|
-
* @public
|
|
6876
|
-
*/
|
|
6877
|
-
LabelCount?: number;
|
|
6878
|
-
/**
|
|
6879
|
-
* <p>The <code>Map<Column, Type></code> object that represents the schema that this
|
|
6880
|
-
* transform accepts. Has an upper bound of 100 columns.</p>
|
|
6881
|
-
* @public
|
|
6882
|
-
*/
|
|
6883
|
-
Schema?: SchemaColumn[];
|
|
6884
|
-
/**
|
|
6885
|
-
* <p>The name or Amazon Resource Name (ARN) of the IAM role with the required
|
|
6886
|
-
* permissions.</p>
|
|
6887
|
-
* @public
|
|
6888
|
-
*/
|
|
6889
|
-
Role?: string;
|
|
6890
|
-
/**
|
|
6891
|
-
* <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
|
|
6892
|
-
* @public
|
|
6893
|
-
*/
|
|
6894
|
-
GlueVersion?: string;
|
|
6895
|
-
/**
|
|
6896
|
-
* <p>The number of Glue data processing units (DPUs) that are allocated to task runs for this transform. You can allocate from 2 to 100 DPUs; the default is 10. A DPU is a relative measure of
|
|
6897
|
-
* processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more
|
|
6898
|
-
* information, see the <a href="https://aws.amazon.com/glue/pricing/">Glue pricing
|
|
6899
|
-
* page</a>. </p>
|
|
6900
|
-
* <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>
|
|
6901
|
-
* @public
|
|
6902
|
-
*/
|
|
6903
|
-
MaxCapacity?: number;
|
|
6904
|
-
/**
|
|
6905
|
-
* <p>The type of predefined worker that is allocated when this task runs. Accepts a value of Standard, G.1X, or G.2X.</p>
|
|
6906
|
-
* <ul>
|
|
6907
|
-
* <li>
|
|
6908
|
-
* <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>
|
|
6909
|
-
* </li>
|
|
6910
|
-
* <li>
|
|
6911
|
-
* <p>For the <code>G.1X</code> worker type, each worker provides 4 vCPU, 16 GB of memory and a 64GB disk, and 1 executor per worker.</p>
|
|
6912
|
-
* </li>
|
|
6913
|
-
* <li>
|
|
6914
|
-
* <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>
|
|
6915
|
-
* </li>
|
|
6916
|
-
* </ul>
|
|
6917
|
-
* @public
|
|
6918
|
-
*/
|
|
6919
|
-
WorkerType?: WorkerType;
|
|
6920
|
-
/**
|
|
6921
|
-
* <p>The number of workers of a defined <code>workerType</code> that are allocated when this task runs.</p>
|
|
6922
|
-
* @public
|
|
6923
|
-
*/
|
|
6924
|
-
NumberOfWorkers?: number;
|
|
6925
|
-
/**
|
|
6926
|
-
* <p>The timeout for a task run for this transform in minutes. This is the maximum time that a task run for this transform can consume resources before it is terminated and enters <code>TIMEOUT</code> status. The default is 2,880 minutes (48 hours).</p>
|
|
6927
|
-
* @public
|
|
6928
|
-
*/
|
|
6929
|
-
Timeout?: number;
|
|
6930
|
-
/**
|
|
6931
|
-
* <p>The maximum number of times to retry a task for this transform after a task run fails.</p>
|
|
6932
|
-
* @public
|
|
6933
|
-
*/
|
|
6934
|
-
MaxRetries?: number;
|
|
6935
|
-
/**
|
|
6936
|
-
* <p>The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.</p>
|
|
6937
|
-
* @public
|
|
6938
|
-
*/
|
|
6939
|
-
TransformEncryption?: TransformEncryption;
|
|
6940
|
-
}
|
|
6941
|
-
/**
|
|
6942
|
-
* <p>The criteria used to filter the machine learning transforms.</p>
|
|
6943
|
-
* @public
|
|
6944
|
-
*/
|
|
6945
|
-
export interface TransformFilterCriteria {
|
|
6946
|
-
/**
|
|
6947
|
-
* <p>A unique transform name that is used to filter the machine learning transforms.</p>
|
|
6948
|
-
* @public
|
|
6949
|
-
*/
|
|
6950
|
-
Name?: string;
|
|
6951
|
-
/**
|
|
6952
|
-
* <p>The type of machine learning transform that is used to filter the machine learning
|
|
6953
|
-
* transforms.</p>
|
|
6954
|
-
* @public
|
|
6955
|
-
*/
|
|
6956
|
-
TransformType?: TransformType;
|
|
6957
|
-
/**
|
|
6958
|
-
* <p>Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of "NOT_READY", "READY", or "DELETING".</p>
|
|
6959
|
-
* @public
|
|
6960
|
-
*/
|
|
6961
|
-
Status?: TransformStatusType;
|
|
6962
|
-
/**
|
|
6963
|
-
* <p>This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see <a href="https://docs.aws.amazon.com/glue/latest/dg/release-notes.html#release-notes-versions">Glue Versions</a> in the developer guide.</p>
|
|
6964
|
-
* @public
|
|
6965
|
-
*/
|
|
6966
|
-
GlueVersion?: string;
|
|
6967
|
-
/**
|
|
6968
|
-
* <p>The time and date before which the transforms were created.</p>
|
|
6969
|
-
* @public
|
|
6970
|
-
*/
|
|
6971
|
-
CreatedBefore?: Date;
|
|
6972
|
-
/**
|
|
6973
|
-
* <p>The time and date after which the transforms were created.</p>
|
|
6974
|
-
* @public
|
|
6975
|
-
*/
|
|
6976
|
-
CreatedAfter?: Date;
|
|
6977
|
-
/**
|
|
6978
|
-
* <p>Filter on transforms last modified before this date.</p>
|
|
6979
|
-
* @public
|
|
6980
|
-
*/
|
|
6981
|
-
LastModifiedBefore?: Date;
|
|
6982
|
-
/**
|
|
6983
|
-
* <p>Filter on transforms last modified after this date.</p>
|
|
6984
|
-
* @public
|
|
6985
|
-
*/
|
|
6986
|
-
LastModifiedAfter?: Date;
|
|
6987
|
-
/**
|
|
6988
|
-
* <p>Filters on datasets with a specific schema. The <code>Map<Column, Type></code>
|
|
6989
|
-
* object is an array of key-value pairs representing the schema this transform accepts, where
|
|
6990
|
-
* <code>Column</code> is the name of a column, and <code>Type</code> is the type of the data
|
|
6991
|
-
* such as an integer or string. Has an upper bound of 100 columns.</p>
|
|
6992
|
-
* @public
|
|
6993
|
-
*/
|
|
6994
|
-
Schema?: SchemaColumn[];
|
|
6995
|
-
}
|
|
6996
|
-
/**
|
|
6997
|
-
* @public
|
|
6998
|
-
* @enum
|
|
6999
|
-
*/
|
|
7000
|
-
export declare const TransformSortColumnType: {
|
|
7001
|
-
readonly CREATED: "CREATED";
|
|
7002
|
-
readonly LAST_MODIFIED: "LAST_MODIFIED";
|
|
7003
|
-
readonly NAME: "NAME";
|
|
7004
|
-
readonly STATUS: "STATUS";
|
|
7005
|
-
readonly TRANSFORM_TYPE: "TRANSFORM_TYPE";
|
|
7006
|
-
};
|
|
7007
|
-
/**
|
|
7008
|
-
* @public
|
|
7009
|
-
*/
|
|
7010
|
-
export type TransformSortColumnType = (typeof TransformSortColumnType)[keyof typeof TransformSortColumnType];
|
|
7011
|
-
/**
|
|
7012
|
-
* <p>The sorting criteria that are associated with the machine learning transform.</p>
|
|
7013
|
-
* @public
|
|
7014
|
-
*/
|
|
7015
|
-
export interface TransformSortCriteria {
|
|
7016
|
-
/**
|
|
7017
|
-
* <p>The column to be used in the sorting criteria that are associated with the machine
|
|
7018
|
-
* learning transform.</p>
|
|
7019
|
-
* @public
|
|
7020
|
-
*/
|
|
7021
|
-
Column: TransformSortColumnType | undefined;
|
|
7022
|
-
/**
|
|
7023
|
-
* <p>The sort direction to be used in the sorting criteria that are associated with the machine
|
|
7024
|
-
* learning transform.</p>
|
|
7025
|
-
* @public
|
|
7026
|
-
*/
|
|
7027
|
-
SortDirection: SortDirectionType | undefined;
|
|
7028
|
-
}
|
|
7029
6824
|
/**
|
|
7030
6825
|
* @internal
|
|
7031
6826
|
*/
|