@aws-sdk/client-sagemaker-geospatial 3.935.0 → 3.939.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/index.js +166 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +141 -0
- package/dist-es/models/models_0.js +1 -141
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/models_0.d.ts +1 -564
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +184 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -184
- package/package.json +12 -12
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
export declare const AlgorithmNameCloudRemoval: {
|
|
2
|
+
readonly INTERPOLATION: "INTERPOLATION";
|
|
3
|
+
};
|
|
4
|
+
export type AlgorithmNameCloudRemoval =
|
|
5
|
+
(typeof AlgorithmNameCloudRemoval)[keyof typeof AlgorithmNameCloudRemoval];
|
|
6
|
+
export declare const AlgorithmNameGeoMosaic: {
|
|
7
|
+
readonly AVERAGE: "AVERAGE";
|
|
8
|
+
readonly BILINEAR: "BILINEAR";
|
|
9
|
+
readonly CUBIC: "CUBIC";
|
|
10
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
11
|
+
readonly LANCZOS: "LANCZOS";
|
|
12
|
+
readonly MAX: "MAX";
|
|
13
|
+
readonly MED: "MED";
|
|
14
|
+
readonly MIN: "MIN";
|
|
15
|
+
readonly MODE: "MODE";
|
|
16
|
+
readonly NEAR: "NEAR";
|
|
17
|
+
readonly Q1: "Q1";
|
|
18
|
+
readonly Q3: "Q3";
|
|
19
|
+
readonly RMS: "RMS";
|
|
20
|
+
readonly SUM: "SUM";
|
|
21
|
+
};
|
|
22
|
+
export type AlgorithmNameGeoMosaic =
|
|
23
|
+
(typeof AlgorithmNameGeoMosaic)[keyof typeof AlgorithmNameGeoMosaic];
|
|
24
|
+
export declare const AlgorithmNameResampling: {
|
|
25
|
+
readonly AVERAGE: "AVERAGE";
|
|
26
|
+
readonly BILINEAR: "BILINEAR";
|
|
27
|
+
readonly CUBIC: "CUBIC";
|
|
28
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
29
|
+
readonly LANCZOS: "LANCZOS";
|
|
30
|
+
readonly MAX: "MAX";
|
|
31
|
+
readonly MED: "MED";
|
|
32
|
+
readonly MIN: "MIN";
|
|
33
|
+
readonly MODE: "MODE";
|
|
34
|
+
readonly NEAR: "NEAR";
|
|
35
|
+
readonly Q1: "Q1";
|
|
36
|
+
readonly Q3: "Q3";
|
|
37
|
+
readonly RMS: "RMS";
|
|
38
|
+
readonly SUM: "SUM";
|
|
39
|
+
};
|
|
40
|
+
export type AlgorithmNameResampling =
|
|
41
|
+
(typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
|
|
42
|
+
export declare const OutputType: {
|
|
43
|
+
readonly FLOAT32: "FLOAT32";
|
|
44
|
+
readonly FLOAT64: "FLOAT64";
|
|
45
|
+
readonly INT16: "INT16";
|
|
46
|
+
readonly INT32: "INT32";
|
|
47
|
+
readonly UINT16: "UINT16";
|
|
48
|
+
};
|
|
49
|
+
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
50
|
+
export declare const ComparisonOperator: {
|
|
51
|
+
readonly EQUALS: "EQUALS";
|
|
52
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
53
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
54
|
+
};
|
|
55
|
+
export type ComparisonOperator =
|
|
56
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
57
|
+
export declare const DataCollectionType: {
|
|
58
|
+
readonly PREMIUM: "PREMIUM";
|
|
59
|
+
readonly PUBLIC: "PUBLIC";
|
|
60
|
+
readonly USER: "USER";
|
|
61
|
+
};
|
|
62
|
+
export type DataCollectionType =
|
|
63
|
+
(typeof DataCollectionType)[keyof typeof DataCollectionType];
|
|
64
|
+
export declare const EarthObservationJobExportStatus: {
|
|
65
|
+
readonly FAILED: "FAILED";
|
|
66
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
67
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
68
|
+
};
|
|
69
|
+
export type EarthObservationJobExportStatus =
|
|
70
|
+
(typeof EarthObservationJobExportStatus)[keyof typeof EarthObservationJobExportStatus];
|
|
71
|
+
export declare const EarthObservationJobErrorType: {
|
|
72
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
73
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
74
|
+
};
|
|
75
|
+
export type EarthObservationJobErrorType =
|
|
76
|
+
(typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
77
|
+
export declare const ExportErrorType: {
|
|
78
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
79
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
80
|
+
};
|
|
81
|
+
export type ExportErrorType =
|
|
82
|
+
(typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
83
|
+
export declare const LogicalOperator: {
|
|
84
|
+
readonly AND: "AND";
|
|
85
|
+
};
|
|
86
|
+
export type LogicalOperator =
|
|
87
|
+
(typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
88
|
+
export declare const Unit: {
|
|
89
|
+
readonly METERS: "METERS";
|
|
90
|
+
};
|
|
91
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
92
|
+
export declare const PredefinedResolution: {
|
|
93
|
+
readonly AVERAGE: "AVERAGE";
|
|
94
|
+
readonly HIGHEST: "HIGHEST";
|
|
95
|
+
readonly LOWEST: "LOWEST";
|
|
96
|
+
};
|
|
97
|
+
export type PredefinedResolution =
|
|
98
|
+
(typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
99
|
+
export declare const GroupBy: {
|
|
100
|
+
readonly ALL: "ALL";
|
|
101
|
+
readonly YEARLY: "YEARLY";
|
|
102
|
+
};
|
|
103
|
+
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
104
|
+
export declare const TemporalStatistics: {
|
|
105
|
+
readonly MEAN: "MEAN";
|
|
106
|
+
readonly MEDIAN: "MEDIAN";
|
|
107
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
108
|
+
};
|
|
109
|
+
export type TemporalStatistics =
|
|
110
|
+
(typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
111
|
+
export declare const ZonalStatistics: {
|
|
112
|
+
readonly MAX: "MAX";
|
|
113
|
+
readonly MEAN: "MEAN";
|
|
114
|
+
readonly MEDIAN: "MEDIAN";
|
|
115
|
+
readonly MIN: "MIN";
|
|
116
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
117
|
+
readonly SUM: "SUM";
|
|
118
|
+
};
|
|
119
|
+
export type ZonalStatistics =
|
|
120
|
+
(typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
121
|
+
export declare const EarthObservationJobStatus: {
|
|
122
|
+
readonly COMPLETED: "COMPLETED";
|
|
123
|
+
readonly DELETED: "DELETED";
|
|
124
|
+
readonly DELETING: "DELETING";
|
|
125
|
+
readonly FAILED: "FAILED";
|
|
126
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
127
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
128
|
+
readonly STOPPED: "STOPPED";
|
|
129
|
+
readonly STOPPING: "STOPPING";
|
|
130
|
+
};
|
|
131
|
+
export type EarthObservationJobStatus =
|
|
132
|
+
(typeof EarthObservationJobStatus)[keyof typeof EarthObservationJobStatus];
|
|
133
|
+
export declare const TargetOptions: {
|
|
134
|
+
readonly INPUT: "INPUT";
|
|
135
|
+
readonly OUTPUT: "OUTPUT";
|
|
136
|
+
};
|
|
137
|
+
export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
|
|
138
|
+
export declare const SortOrder: {
|
|
139
|
+
readonly ASCENDING: "ASCENDING";
|
|
140
|
+
readonly DESCENDING: "DESCENDING";
|
|
141
|
+
};
|
|
142
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
143
|
+
export declare const VectorEnrichmentJobExportStatus: {
|
|
144
|
+
readonly FAILED: "FAILED";
|
|
145
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
146
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
147
|
+
};
|
|
148
|
+
export type VectorEnrichmentJobExportStatus =
|
|
149
|
+
(typeof VectorEnrichmentJobExportStatus)[keyof typeof VectorEnrichmentJobExportStatus];
|
|
150
|
+
export declare const VectorEnrichmentJobErrorType: {
|
|
151
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
152
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
153
|
+
};
|
|
154
|
+
export type VectorEnrichmentJobErrorType =
|
|
155
|
+
(typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
156
|
+
export declare const VectorEnrichmentJobExportErrorType: {
|
|
157
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
158
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
159
|
+
};
|
|
160
|
+
export type VectorEnrichmentJobExportErrorType =
|
|
161
|
+
(typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
162
|
+
export declare const VectorEnrichmentJobDocumentType: {
|
|
163
|
+
readonly CSV: "CSV";
|
|
164
|
+
};
|
|
165
|
+
export type VectorEnrichmentJobDocumentType =
|
|
166
|
+
(typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
167
|
+
export declare const VectorEnrichmentJobStatus: {
|
|
168
|
+
readonly COMPLETED: "COMPLETED";
|
|
169
|
+
readonly DELETED: "DELETED";
|
|
170
|
+
readonly DELETING: "DELETING";
|
|
171
|
+
readonly FAILED: "FAILED";
|
|
172
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
173
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
174
|
+
readonly STOPPED: "STOPPED";
|
|
175
|
+
readonly STOPPING: "STOPPING";
|
|
176
|
+
};
|
|
177
|
+
export type VectorEnrichmentJobStatus =
|
|
178
|
+
(typeof VectorEnrichmentJobStatus)[keyof typeof VectorEnrichmentJobStatus];
|
|
179
|
+
export declare const VectorEnrichmentJobType: {
|
|
180
|
+
readonly MAP_MATCHING: "MAP_MATCHING";
|
|
181
|
+
readonly REVERSE_GEOCODING: "REVERSE_GEOCODING";
|
|
182
|
+
};
|
|
183
|
+
export type VectorEnrichmentJobType =
|
|
184
|
+
(typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
@@ -1,45 +1,30 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
readonly CUBIC: "CUBIC";
|
|
29
|
-
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
30
|
-
readonly LANCZOS: "LANCZOS";
|
|
31
|
-
readonly MAX: "MAX";
|
|
32
|
-
readonly MED: "MED";
|
|
33
|
-
readonly MIN: "MIN";
|
|
34
|
-
readonly MODE: "MODE";
|
|
35
|
-
readonly NEAR: "NEAR";
|
|
36
|
-
readonly Q1: "Q1";
|
|
37
|
-
readonly Q3: "Q3";
|
|
38
|
-
readonly RMS: "RMS";
|
|
39
|
-
readonly SUM: "SUM";
|
|
40
|
-
};
|
|
41
|
-
export type AlgorithmNameResampling =
|
|
42
|
-
(typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
|
|
2
|
+
import {
|
|
3
|
+
AlgorithmNameCloudRemoval,
|
|
4
|
+
AlgorithmNameGeoMosaic,
|
|
5
|
+
AlgorithmNameResampling,
|
|
6
|
+
ComparisonOperator,
|
|
7
|
+
DataCollectionType,
|
|
8
|
+
EarthObservationJobErrorType,
|
|
9
|
+
EarthObservationJobExportStatus,
|
|
10
|
+
EarthObservationJobStatus,
|
|
11
|
+
ExportErrorType,
|
|
12
|
+
GroupBy,
|
|
13
|
+
LogicalOperator,
|
|
14
|
+
OutputType,
|
|
15
|
+
PredefinedResolution,
|
|
16
|
+
SortOrder,
|
|
17
|
+
TargetOptions,
|
|
18
|
+
TemporalStatistics,
|
|
19
|
+
Unit,
|
|
20
|
+
VectorEnrichmentJobDocumentType,
|
|
21
|
+
VectorEnrichmentJobErrorType,
|
|
22
|
+
VectorEnrichmentJobExportErrorType,
|
|
23
|
+
VectorEnrichmentJobExportStatus,
|
|
24
|
+
VectorEnrichmentJobStatus,
|
|
25
|
+
VectorEnrichmentJobType,
|
|
26
|
+
ZonalStatistics,
|
|
27
|
+
} from "./enums";
|
|
43
28
|
export interface MultiPolygonGeometryInput {
|
|
44
29
|
Coordinates: number[][][][] | undefined;
|
|
45
30
|
}
|
|
@@ -92,14 +77,6 @@ export declare namespace AreaOfInterest {
|
|
|
92
77
|
export interface AssetValue {
|
|
93
78
|
Href?: string | undefined;
|
|
94
79
|
}
|
|
95
|
-
export declare const OutputType: {
|
|
96
|
-
readonly FLOAT32: "FLOAT32";
|
|
97
|
-
readonly FLOAT64: "FLOAT64";
|
|
98
|
-
readonly INT16: "INT16";
|
|
99
|
-
readonly INT32: "INT32";
|
|
100
|
-
readonly UINT16: "UINT16";
|
|
101
|
-
};
|
|
102
|
-
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
103
80
|
export interface Operation {
|
|
104
81
|
Name: string | undefined;
|
|
105
82
|
Equation: string | undefined;
|
|
@@ -118,26 +95,12 @@ export interface CloudRemovalConfigInput {
|
|
|
118
95
|
InterpolationValue?: string | undefined;
|
|
119
96
|
TargetBands?: string[] | undefined;
|
|
120
97
|
}
|
|
121
|
-
export declare const ComparisonOperator: {
|
|
122
|
-
readonly EQUALS: "EQUALS";
|
|
123
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
124
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
125
|
-
};
|
|
126
|
-
export type ComparisonOperator =
|
|
127
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
128
98
|
export interface Filter {
|
|
129
99
|
Name: string | undefined;
|
|
130
100
|
Type: string | undefined;
|
|
131
101
|
Minimum?: number | undefined;
|
|
132
102
|
Maximum?: number | undefined;
|
|
133
103
|
}
|
|
134
|
-
export declare const DataCollectionType: {
|
|
135
|
-
readonly PREMIUM: "PREMIUM";
|
|
136
|
-
readonly PUBLIC: "PUBLIC";
|
|
137
|
-
readonly USER: "USER";
|
|
138
|
-
};
|
|
139
|
-
export type DataCollectionType =
|
|
140
|
-
(typeof DataCollectionType)[keyof typeof DataCollectionType];
|
|
141
104
|
export interface RasterDataCollectionMetadata {
|
|
142
105
|
Name: string | undefined;
|
|
143
106
|
Arn: string | undefined;
|
|
@@ -169,13 +132,6 @@ export interface ExportEarthObservationJobInput {
|
|
|
169
132
|
OutputConfig: OutputConfigInput | undefined;
|
|
170
133
|
ExportSourceImages?: boolean | undefined;
|
|
171
134
|
}
|
|
172
|
-
export declare const EarthObservationJobExportStatus: {
|
|
173
|
-
readonly FAILED: "FAILED";
|
|
174
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
175
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
176
|
-
};
|
|
177
|
-
export type EarthObservationJobExportStatus =
|
|
178
|
-
(typeof EarthObservationJobExportStatus)[keyof typeof EarthObservationJobExportStatus];
|
|
179
135
|
export interface ExportEarthObservationJobOutput {
|
|
180
136
|
Arn: string | undefined;
|
|
181
137
|
CreationTime: Date | undefined;
|
|
@@ -187,22 +143,10 @@ export interface ExportEarthObservationJobOutput {
|
|
|
187
143
|
export interface GetEarthObservationJobInput {
|
|
188
144
|
Arn: string | undefined;
|
|
189
145
|
}
|
|
190
|
-
export declare const EarthObservationJobErrorType: {
|
|
191
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
192
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
193
|
-
};
|
|
194
|
-
export type EarthObservationJobErrorType =
|
|
195
|
-
(typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
196
146
|
export interface EarthObservationJobErrorDetails {
|
|
197
147
|
Type?: EarthObservationJobErrorType | undefined;
|
|
198
148
|
Message?: string | undefined;
|
|
199
149
|
}
|
|
200
|
-
export declare const ExportErrorType: {
|
|
201
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
202
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
203
|
-
};
|
|
204
|
-
export type ExportErrorType =
|
|
205
|
-
(typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
206
150
|
export interface ExportErrorDetailsOutput {
|
|
207
151
|
Type?: ExportErrorType | undefined;
|
|
208
152
|
Message?: string | undefined;
|
|
@@ -211,11 +155,6 @@ export interface ExportErrorDetails {
|
|
|
211
155
|
ExportResults?: ExportErrorDetailsOutput | undefined;
|
|
212
156
|
ExportSourceImages?: ExportErrorDetailsOutput | undefined;
|
|
213
157
|
}
|
|
214
|
-
export declare const LogicalOperator: {
|
|
215
|
-
readonly AND: "AND";
|
|
216
|
-
};
|
|
217
|
-
export type LogicalOperator =
|
|
218
|
-
(typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
219
158
|
export interface EoCloudCoverInput {
|
|
220
159
|
LowerBound: number | undefined;
|
|
221
160
|
UpperBound: number | undefined;
|
|
@@ -349,10 +288,6 @@ export interface GeoMosaicConfigInput {
|
|
|
349
288
|
TargetBands?: string[] | undefined;
|
|
350
289
|
}
|
|
351
290
|
export interface LandCoverSegmentationConfigInput {}
|
|
352
|
-
export declare const Unit: {
|
|
353
|
-
readonly METERS: "METERS";
|
|
354
|
-
};
|
|
355
|
-
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
356
291
|
export interface UserDefined {
|
|
357
292
|
Value: number | undefined;
|
|
358
293
|
Unit: Unit | undefined;
|
|
@@ -365,13 +300,6 @@ export interface ResamplingConfigInput {
|
|
|
365
300
|
AlgorithmName?: AlgorithmNameResampling | undefined;
|
|
366
301
|
TargetBands?: string[] | undefined;
|
|
367
302
|
}
|
|
368
|
-
export declare const PredefinedResolution: {
|
|
369
|
-
readonly AVERAGE: "AVERAGE";
|
|
370
|
-
readonly HIGHEST: "HIGHEST";
|
|
371
|
-
readonly LOWEST: "LOWEST";
|
|
372
|
-
};
|
|
373
|
-
export type PredefinedResolution =
|
|
374
|
-
(typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
375
303
|
export interface OutputResolutionStackInput {
|
|
376
304
|
Predefined?: PredefinedResolution | undefined;
|
|
377
305
|
UserDefined?: UserDefined | undefined;
|
|
@@ -380,33 +308,11 @@ export interface StackConfigInput {
|
|
|
380
308
|
OutputResolution?: OutputResolutionStackInput | undefined;
|
|
381
309
|
TargetBands?: string[] | undefined;
|
|
382
310
|
}
|
|
383
|
-
export declare const GroupBy: {
|
|
384
|
-
readonly ALL: "ALL";
|
|
385
|
-
readonly YEARLY: "YEARLY";
|
|
386
|
-
};
|
|
387
|
-
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
388
|
-
export declare const TemporalStatistics: {
|
|
389
|
-
readonly MEAN: "MEAN";
|
|
390
|
-
readonly MEDIAN: "MEDIAN";
|
|
391
|
-
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
392
|
-
};
|
|
393
|
-
export type TemporalStatistics =
|
|
394
|
-
(typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
395
311
|
export interface TemporalStatisticsConfigInput {
|
|
396
312
|
GroupBy?: GroupBy | undefined;
|
|
397
313
|
Statistics: TemporalStatistics[] | undefined;
|
|
398
314
|
TargetBands?: string[] | undefined;
|
|
399
315
|
}
|
|
400
|
-
export declare const ZonalStatistics: {
|
|
401
|
-
readonly MAX: "MAX";
|
|
402
|
-
readonly MEAN: "MEAN";
|
|
403
|
-
readonly MEDIAN: "MEDIAN";
|
|
404
|
-
readonly MIN: "MIN";
|
|
405
|
-
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
406
|
-
readonly SUM: "SUM";
|
|
407
|
-
};
|
|
408
|
-
export type ZonalStatistics =
|
|
409
|
-
(typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
410
316
|
export interface ZonalStatisticsConfigInput {
|
|
411
317
|
ZoneS3Path: string | undefined;
|
|
412
318
|
Statistics: ZonalStatistics[] | undefined;
|
|
@@ -562,18 +468,6 @@ export interface OutputBand {
|
|
|
562
468
|
BandName: string | undefined;
|
|
563
469
|
OutputDataType: OutputType | undefined;
|
|
564
470
|
}
|
|
565
|
-
export declare const EarthObservationJobStatus: {
|
|
566
|
-
readonly COMPLETED: "COMPLETED";
|
|
567
|
-
readonly DELETED: "DELETED";
|
|
568
|
-
readonly DELETING: "DELETING";
|
|
569
|
-
readonly FAILED: "FAILED";
|
|
570
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
571
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
572
|
-
readonly STOPPED: "STOPPED";
|
|
573
|
-
readonly STOPPING: "STOPPING";
|
|
574
|
-
};
|
|
575
|
-
export type EarthObservationJobStatus =
|
|
576
|
-
(typeof EarthObservationJobStatus)[keyof typeof EarthObservationJobStatus];
|
|
577
471
|
export interface GetEarthObservationJobOutput {
|
|
578
472
|
Arn: string | undefined;
|
|
579
473
|
Name: string | undefined;
|
|
@@ -590,11 +484,6 @@ export interface GetEarthObservationJobOutput {
|
|
|
590
484
|
ExportErrorDetails?: ExportErrorDetails | undefined;
|
|
591
485
|
Tags?: Record<string, string> | undefined;
|
|
592
486
|
}
|
|
593
|
-
export declare const TargetOptions: {
|
|
594
|
-
readonly INPUT: "INPUT";
|
|
595
|
-
readonly OUTPUT: "OUTPUT";
|
|
596
|
-
};
|
|
597
|
-
export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
|
|
598
487
|
export interface GetTileInput {
|
|
599
488
|
x: number | undefined;
|
|
600
489
|
y: number | undefined;
|
|
@@ -612,11 +501,6 @@ export interface GetTileInput {
|
|
|
612
501
|
export interface GetTileOutput {
|
|
613
502
|
BinaryFile?: StreamingBlobTypes | undefined;
|
|
614
503
|
}
|
|
615
|
-
export declare const SortOrder: {
|
|
616
|
-
readonly ASCENDING: "ASCENDING";
|
|
617
|
-
readonly DESCENDING: "DESCENDING";
|
|
618
|
-
};
|
|
619
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
620
504
|
export interface ListEarthObservationJobInput {
|
|
621
505
|
StatusEquals?: EarthObservationJobStatus | undefined;
|
|
622
506
|
SortOrder?: SortOrder | undefined;
|
|
@@ -691,13 +575,6 @@ export interface ExportVectorEnrichmentJobInput {
|
|
|
691
575
|
ExecutionRoleArn: string | undefined;
|
|
692
576
|
OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
|
|
693
577
|
}
|
|
694
|
-
export declare const VectorEnrichmentJobExportStatus: {
|
|
695
|
-
readonly FAILED: "FAILED";
|
|
696
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
697
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
698
|
-
};
|
|
699
|
-
export type VectorEnrichmentJobExportStatus =
|
|
700
|
-
(typeof VectorEnrichmentJobExportStatus)[keyof typeof VectorEnrichmentJobExportStatus];
|
|
701
578
|
export interface ExportVectorEnrichmentJobOutput {
|
|
702
579
|
Arn: string | undefined;
|
|
703
580
|
CreationTime: Date | undefined;
|
|
@@ -725,22 +602,10 @@ export interface GetRasterDataCollectionOutput {
|
|
|
725
602
|
export interface GetVectorEnrichmentJobInput {
|
|
726
603
|
Arn: string | undefined;
|
|
727
604
|
}
|
|
728
|
-
export declare const VectorEnrichmentJobErrorType: {
|
|
729
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
730
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
731
|
-
};
|
|
732
|
-
export type VectorEnrichmentJobErrorType =
|
|
733
|
-
(typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
734
605
|
export interface VectorEnrichmentJobErrorDetails {
|
|
735
606
|
ErrorType?: VectorEnrichmentJobErrorType | undefined;
|
|
736
607
|
ErrorMessage?: string | undefined;
|
|
737
608
|
}
|
|
738
|
-
export declare const VectorEnrichmentJobExportErrorType: {
|
|
739
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
740
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
741
|
-
};
|
|
742
|
-
export type VectorEnrichmentJobExportErrorType =
|
|
743
|
-
(typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
744
609
|
export interface VectorEnrichmentJobExportErrorDetails {
|
|
745
610
|
Type?: VectorEnrichmentJobExportErrorType | undefined;
|
|
746
611
|
Message?: string | undefined;
|
|
@@ -762,11 +627,6 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
762
627
|
_: (name: string, value: any) => T;
|
|
763
628
|
}
|
|
764
629
|
}
|
|
765
|
-
export declare const VectorEnrichmentJobDocumentType: {
|
|
766
|
-
readonly CSV: "CSV";
|
|
767
|
-
};
|
|
768
|
-
export type VectorEnrichmentJobDocumentType =
|
|
769
|
-
(typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
770
630
|
export interface VectorEnrichmentJobInputConfig {
|
|
771
631
|
DocumentType: VectorEnrichmentJobDocumentType | undefined;
|
|
772
632
|
DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
|
|
@@ -807,24 +667,6 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
807
667
|
_: (name: string, value: any) => T;
|
|
808
668
|
}
|
|
809
669
|
}
|
|
810
|
-
export declare const VectorEnrichmentJobStatus: {
|
|
811
|
-
readonly COMPLETED: "COMPLETED";
|
|
812
|
-
readonly DELETED: "DELETED";
|
|
813
|
-
readonly DELETING: "DELETING";
|
|
814
|
-
readonly FAILED: "FAILED";
|
|
815
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
816
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
817
|
-
readonly STOPPED: "STOPPED";
|
|
818
|
-
readonly STOPPING: "STOPPING";
|
|
819
|
-
};
|
|
820
|
-
export type VectorEnrichmentJobStatus =
|
|
821
|
-
(typeof VectorEnrichmentJobStatus)[keyof typeof VectorEnrichmentJobStatus];
|
|
822
|
-
export declare const VectorEnrichmentJobType: {
|
|
823
|
-
readonly MAP_MATCHING: "MAP_MATCHING";
|
|
824
|
-
readonly REVERSE_GEOCODING: "REVERSE_GEOCODING";
|
|
825
|
-
};
|
|
826
|
-
export type VectorEnrichmentJobType =
|
|
827
|
-
(typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
828
670
|
export interface GetVectorEnrichmentJobOutput {
|
|
829
671
|
Arn: string | undefined;
|
|
830
672
|
Type: VectorEnrichmentJobType | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-geospatial",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Geospatial Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker-geospatial",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|