@aws-sdk/client-sagemaker-geospatial 3.301.0 → 3.303.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/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +152 -173
- package/dist-cjs/protocols/Aws_restJson1.js +17 -16
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +148 -170
- package/dist-es/protocols/Aws_restJson1.js +18 -17
- package/dist-types/SageMakerGeospatial.d.ts +2 -2
- package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +2 -2
- package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +4 -3
- package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +4 -3
- package/dist-types/commands/GetEarthObservationJobCommand.d.ts +1 -1
- package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +1 -1
- package/dist-types/commands/GetTileCommand.d.ts +2 -1
- package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +1 -1
- package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +1 -1
- package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +1 -1
- package/dist-types/commands/StartEarthObservationJobCommand.d.ts +3 -2
- package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +2 -2
- package/dist-types/commands/StopEarthObservationJobCommand.d.ts +2 -2
- package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +519 -302
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +210 -154
- package/package.json +36 -36
|
@@ -17,138 +17,153 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* @public
|
|
20
|
+
* @enum
|
|
20
21
|
*/
|
|
21
|
-
export declare
|
|
22
|
+
export declare const AlgorithmNameCloudRemoval: {
|
|
22
23
|
/**
|
|
23
24
|
* INTERPOLATION
|
|
24
25
|
*/
|
|
25
|
-
INTERPOLATION
|
|
26
|
-
}
|
|
26
|
+
readonly INTERPOLATION: "INTERPOLATION";
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export type AlgorithmNameCloudRemoval = (typeof AlgorithmNameCloudRemoval)[keyof typeof AlgorithmNameCloudRemoval];
|
|
27
32
|
/**
|
|
28
33
|
* @public
|
|
34
|
+
* @enum
|
|
29
35
|
*/
|
|
30
|
-
export declare
|
|
36
|
+
export declare const AlgorithmNameGeoMosaic: {
|
|
31
37
|
/**
|
|
32
38
|
* AVERAGE
|
|
33
39
|
*/
|
|
34
|
-
AVERAGE
|
|
40
|
+
readonly AVERAGE: "AVERAGE";
|
|
35
41
|
/**
|
|
36
42
|
* BILINEAR
|
|
37
43
|
*/
|
|
38
|
-
BILINEAR
|
|
44
|
+
readonly BILINEAR: "BILINEAR";
|
|
39
45
|
/**
|
|
40
46
|
* CUBIC
|
|
41
47
|
*/
|
|
42
|
-
CUBIC
|
|
48
|
+
readonly CUBIC: "CUBIC";
|
|
43
49
|
/**
|
|
44
50
|
* CUBICSPLINE
|
|
45
51
|
*/
|
|
46
|
-
CUBICSPLINE
|
|
52
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
47
53
|
/**
|
|
48
54
|
* LANCZOS
|
|
49
55
|
*/
|
|
50
|
-
LANCZOS
|
|
56
|
+
readonly LANCZOS: "LANCZOS";
|
|
51
57
|
/**
|
|
52
58
|
* MAX
|
|
53
59
|
*/
|
|
54
|
-
MAX
|
|
60
|
+
readonly MAX: "MAX";
|
|
55
61
|
/**
|
|
56
62
|
* MED
|
|
57
63
|
*/
|
|
58
|
-
MED
|
|
64
|
+
readonly MED: "MED";
|
|
59
65
|
/**
|
|
60
66
|
* MIN
|
|
61
67
|
*/
|
|
62
|
-
MIN
|
|
68
|
+
readonly MIN: "MIN";
|
|
63
69
|
/**
|
|
64
70
|
* MODE
|
|
65
71
|
*/
|
|
66
|
-
MODE
|
|
72
|
+
readonly MODE: "MODE";
|
|
67
73
|
/**
|
|
68
74
|
* NEAR
|
|
69
75
|
*/
|
|
70
|
-
NEAR
|
|
76
|
+
readonly NEAR: "NEAR";
|
|
71
77
|
/**
|
|
72
78
|
* Q1
|
|
73
79
|
*/
|
|
74
|
-
Q1
|
|
80
|
+
readonly Q1: "Q1";
|
|
75
81
|
/**
|
|
76
82
|
* Q3
|
|
77
83
|
*/
|
|
78
|
-
Q3
|
|
84
|
+
readonly Q3: "Q3";
|
|
79
85
|
/**
|
|
80
86
|
* RMS
|
|
81
87
|
*/
|
|
82
|
-
RMS
|
|
88
|
+
readonly RMS: "RMS";
|
|
83
89
|
/**
|
|
84
90
|
* SUM
|
|
85
91
|
*/
|
|
86
|
-
SUM
|
|
87
|
-
}
|
|
92
|
+
readonly SUM: "SUM";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type AlgorithmNameGeoMosaic = (typeof AlgorithmNameGeoMosaic)[keyof typeof AlgorithmNameGeoMosaic];
|
|
88
98
|
/**
|
|
89
99
|
* @public
|
|
100
|
+
* @enum
|
|
90
101
|
*/
|
|
91
|
-
export declare
|
|
102
|
+
export declare const AlgorithmNameResampling: {
|
|
92
103
|
/**
|
|
93
104
|
* AVERAGE
|
|
94
105
|
*/
|
|
95
|
-
AVERAGE
|
|
106
|
+
readonly AVERAGE: "AVERAGE";
|
|
96
107
|
/**
|
|
97
108
|
* BILINEAR
|
|
98
109
|
*/
|
|
99
|
-
BILINEAR
|
|
110
|
+
readonly BILINEAR: "BILINEAR";
|
|
100
111
|
/**
|
|
101
112
|
* CUBIC
|
|
102
113
|
*/
|
|
103
|
-
CUBIC
|
|
114
|
+
readonly CUBIC: "CUBIC";
|
|
104
115
|
/**
|
|
105
116
|
* CUBICSPLINE
|
|
106
117
|
*/
|
|
107
|
-
CUBICSPLINE
|
|
118
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
108
119
|
/**
|
|
109
120
|
* LANCZOS
|
|
110
121
|
*/
|
|
111
|
-
LANCZOS
|
|
122
|
+
readonly LANCZOS: "LANCZOS";
|
|
112
123
|
/**
|
|
113
124
|
* MAX
|
|
114
125
|
*/
|
|
115
|
-
MAX
|
|
126
|
+
readonly MAX: "MAX";
|
|
116
127
|
/**
|
|
117
128
|
* MED
|
|
118
129
|
*/
|
|
119
|
-
MED
|
|
130
|
+
readonly MED: "MED";
|
|
120
131
|
/**
|
|
121
132
|
* MIN
|
|
122
133
|
*/
|
|
123
|
-
MIN
|
|
134
|
+
readonly MIN: "MIN";
|
|
124
135
|
/**
|
|
125
136
|
* MODE
|
|
126
137
|
*/
|
|
127
|
-
MODE
|
|
138
|
+
readonly MODE: "MODE";
|
|
128
139
|
/**
|
|
129
140
|
* NEAR
|
|
130
141
|
*/
|
|
131
|
-
NEAR
|
|
142
|
+
readonly NEAR: "NEAR";
|
|
132
143
|
/**
|
|
133
144
|
* Q1
|
|
134
145
|
*/
|
|
135
|
-
Q1
|
|
146
|
+
readonly Q1: "Q1";
|
|
136
147
|
/**
|
|
137
148
|
* Q3
|
|
138
149
|
*/
|
|
139
|
-
Q3
|
|
150
|
+
readonly Q3: "Q3";
|
|
140
151
|
/**
|
|
141
152
|
* RMS
|
|
142
153
|
*/
|
|
143
|
-
RMS
|
|
154
|
+
readonly RMS: "RMS";
|
|
144
155
|
/**
|
|
145
156
|
* SUM
|
|
146
157
|
*/
|
|
147
|
-
SUM
|
|
148
|
-
}
|
|
158
|
+
readonly SUM: "SUM";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type AlgorithmNameResampling = (typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
|
|
149
164
|
/**
|
|
150
165
|
* @public
|
|
151
|
-
* <p
|
|
166
|
+
* <p>The structure representing Polygon Geometry based on the <a href="https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6">GeoJson spec</a>.</p>
|
|
152
167
|
*/
|
|
153
168
|
export interface MultiPolygonGeometryInput {
|
|
154
169
|
/**
|
|
@@ -158,17 +173,17 @@ export interface MultiPolygonGeometryInput {
|
|
|
158
173
|
}
|
|
159
174
|
/**
|
|
160
175
|
* @public
|
|
161
|
-
* <p
|
|
176
|
+
* <p>The structure representing Polygon Geometry based on the <a href="https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6">GeoJson spec</a>.</p>
|
|
162
177
|
*/
|
|
163
178
|
export interface PolygonGeometryInput {
|
|
164
179
|
/**
|
|
165
|
-
* <p
|
|
180
|
+
* <p>Coordinates representing a Polygon based on the <a href="https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6">GeoJson spec</a>.</p>
|
|
166
181
|
*/
|
|
167
182
|
Coordinates: number[][][] | undefined;
|
|
168
183
|
}
|
|
169
184
|
/**
|
|
170
185
|
* @public
|
|
171
|
-
* <p
|
|
186
|
+
* <p>A GeoJSON object representing the geographic extent in the coordinate space.</p>
|
|
172
187
|
*/
|
|
173
188
|
export type AreaOfInterestGeometry = AreaOfInterestGeometry.MultiPolygonGeometryMember | AreaOfInterestGeometry.PolygonGeometryMember | AreaOfInterestGeometry.$UnknownMember;
|
|
174
189
|
/**
|
|
@@ -176,7 +191,7 @@ export type AreaOfInterestGeometry = AreaOfInterestGeometry.MultiPolygonGeometry
|
|
|
176
191
|
*/
|
|
177
192
|
export declare namespace AreaOfInterestGeometry {
|
|
178
193
|
/**
|
|
179
|
-
* <p
|
|
194
|
+
* <p>The structure representing Polygon Geometry.</p>
|
|
180
195
|
*/
|
|
181
196
|
interface PolygonGeometryMember {
|
|
182
197
|
PolygonGeometry: PolygonGeometryInput;
|
|
@@ -184,7 +199,7 @@ export declare namespace AreaOfInterestGeometry {
|
|
|
184
199
|
$unknown?: never;
|
|
185
200
|
}
|
|
186
201
|
/**
|
|
187
|
-
* <p
|
|
202
|
+
* <p>The structure representing the MultiPolygon Geometry.</p>
|
|
188
203
|
*/
|
|
189
204
|
interface MultiPolygonGeometryMember {
|
|
190
205
|
PolygonGeometry?: never;
|
|
@@ -205,7 +220,7 @@ export declare namespace AreaOfInterestGeometry {
|
|
|
205
220
|
}
|
|
206
221
|
/**
|
|
207
222
|
* @public
|
|
208
|
-
* <p
|
|
223
|
+
* <p>The geographic extent of the Earth Observation job.</p>
|
|
209
224
|
*/
|
|
210
225
|
export type AreaOfInterest = AreaOfInterest.AreaOfInterestGeometryMember | AreaOfInterest.$UnknownMember;
|
|
211
226
|
/**
|
|
@@ -213,7 +228,7 @@ export type AreaOfInterest = AreaOfInterest.AreaOfInterestGeometryMember | AreaO
|
|
|
213
228
|
*/
|
|
214
229
|
export declare namespace AreaOfInterest {
|
|
215
230
|
/**
|
|
216
|
-
* <p
|
|
231
|
+
* <p>A GeoJSON object representing the geographic extent in the coordinate space.</p>
|
|
217
232
|
*/
|
|
218
233
|
interface AreaOfInterestGeometryMember {
|
|
219
234
|
AreaOfInterestGeometry: AreaOfInterestGeometry;
|
|
@@ -231,42 +246,47 @@ export declare namespace AreaOfInterest {
|
|
|
231
246
|
}
|
|
232
247
|
/**
|
|
233
248
|
* @public
|
|
234
|
-
* <p
|
|
249
|
+
* <p>The structure containing the asset properties.</p>
|
|
235
250
|
*/
|
|
236
251
|
export interface AssetValue {
|
|
237
252
|
/**
|
|
238
|
-
* <p
|
|
253
|
+
* <p>Link to the asset object.</p>
|
|
239
254
|
*/
|
|
240
255
|
Href?: string;
|
|
241
256
|
}
|
|
242
257
|
/**
|
|
243
258
|
* @public
|
|
259
|
+
* @enum
|
|
244
260
|
*/
|
|
245
|
-
export declare
|
|
261
|
+
export declare const OutputType: {
|
|
246
262
|
/**
|
|
247
263
|
* FLOAT32
|
|
248
264
|
*/
|
|
249
|
-
FLOAT32
|
|
265
|
+
readonly FLOAT32: "FLOAT32";
|
|
250
266
|
/**
|
|
251
267
|
* FLOAT64
|
|
252
268
|
*/
|
|
253
|
-
FLOAT64
|
|
269
|
+
readonly FLOAT64: "FLOAT64";
|
|
254
270
|
/**
|
|
255
271
|
* INT16
|
|
256
272
|
*/
|
|
257
|
-
INT16
|
|
273
|
+
readonly INT16: "INT16";
|
|
258
274
|
/**
|
|
259
275
|
* INT32
|
|
260
276
|
*/
|
|
261
|
-
INT32
|
|
277
|
+
readonly INT32: "INT32";
|
|
262
278
|
/**
|
|
263
279
|
* UINT16
|
|
264
280
|
*/
|
|
265
|
-
UINT16
|
|
266
|
-
}
|
|
281
|
+
readonly UINT16: "UINT16";
|
|
282
|
+
};
|
|
283
|
+
/**
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
267
287
|
/**
|
|
268
288
|
* @public
|
|
269
|
-
* <p
|
|
289
|
+
* <p>Represents an arithmetic operation to compute spectral index.</p>
|
|
270
290
|
*/
|
|
271
291
|
export interface Operation {
|
|
272
292
|
/**
|
|
@@ -274,7 +294,7 @@ export interface Operation {
|
|
|
274
294
|
*/
|
|
275
295
|
Name: string | undefined;
|
|
276
296
|
/**
|
|
277
|
-
* <p
|
|
297
|
+
* <p>Textual representation of the math operation; Equation used to compute the spectral index.</p>
|
|
278
298
|
*/
|
|
279
299
|
Equation: string | undefined;
|
|
280
300
|
/**
|
|
@@ -284,37 +304,40 @@ export interface Operation {
|
|
|
284
304
|
}
|
|
285
305
|
/**
|
|
286
306
|
* @public
|
|
287
|
-
* <p
|
|
307
|
+
* <p>Input object defining the custom BandMath indices to compute.</p>
|
|
288
308
|
*/
|
|
289
309
|
export interface CustomIndicesInput {
|
|
290
310
|
/**
|
|
291
|
-
* <p
|
|
311
|
+
* <p>A list of BandMath indices to compute.</p>
|
|
292
312
|
*/
|
|
293
313
|
Operations?: Operation[];
|
|
294
314
|
}
|
|
295
315
|
/**
|
|
296
316
|
* @public
|
|
297
|
-
* <p
|
|
317
|
+
* <p>Input structure for the BandMath operation type.
|
|
318
|
+
* Defines Predefined and CustomIndices to be computed using BandMath.</p>
|
|
298
319
|
*/
|
|
299
320
|
export interface BandMathConfigInput {
|
|
300
321
|
/**
|
|
301
|
-
* <p
|
|
322
|
+
* <p>One or many of the supported predefined indices to compute.
|
|
323
|
+
* Allowed values: <code>NDVI</code>, <code>EVI2</code>, <code>MSAVI</code>,
|
|
324
|
+
* <code>NDWI</code>, <code>NDMI</code>, <code>NDSI</code>, and <code>WDRVI</code>.</p>
|
|
302
325
|
*/
|
|
303
326
|
PredefinedIndices?: string[];
|
|
304
327
|
/**
|
|
305
|
-
* <p
|
|
328
|
+
* <p>CustomIndices that are computed.</p>
|
|
306
329
|
*/
|
|
307
330
|
CustomIndices?: CustomIndicesInput;
|
|
308
331
|
}
|
|
309
332
|
/**
|
|
310
333
|
* @public
|
|
311
|
-
* <p
|
|
334
|
+
* <p>Input structure for CloudMasking operation type.</p>
|
|
312
335
|
*/
|
|
313
336
|
export interface CloudMaskingConfigInput {
|
|
314
337
|
}
|
|
315
338
|
/**
|
|
316
339
|
* @public
|
|
317
|
-
* <p
|
|
340
|
+
* <p>Input structure for Cloud Removal Operation type</p>
|
|
318
341
|
*/
|
|
319
342
|
export interface CloudRemovalConfigInput {
|
|
320
343
|
/**
|
|
@@ -326,39 +349,44 @@ export interface CloudRemovalConfigInput {
|
|
|
326
349
|
*/
|
|
327
350
|
InterpolationValue?: string;
|
|
328
351
|
/**
|
|
329
|
-
* <p
|
|
352
|
+
* <p>TargetBands to be returned in the output of CloudRemoval operation.</p>
|
|
330
353
|
*/
|
|
331
354
|
TargetBands?: string[];
|
|
332
355
|
}
|
|
333
356
|
/**
|
|
334
357
|
* @public
|
|
358
|
+
* @enum
|
|
335
359
|
*/
|
|
336
|
-
export declare
|
|
360
|
+
export declare const ComparisonOperator: {
|
|
337
361
|
/**
|
|
338
362
|
* EQUALS
|
|
339
363
|
*/
|
|
340
|
-
EQUALS
|
|
364
|
+
readonly EQUALS: "EQUALS";
|
|
341
365
|
/**
|
|
342
366
|
* NOT_EQUALS
|
|
343
367
|
*/
|
|
344
|
-
NOT_EQUALS
|
|
368
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
345
369
|
/**
|
|
346
370
|
* STARTS_WITH
|
|
347
371
|
*/
|
|
348
|
-
STARTS_WITH
|
|
349
|
-
}
|
|
372
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
350
378
|
/**
|
|
351
379
|
* @public
|
|
352
|
-
* <p
|
|
380
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
353
381
|
*/
|
|
354
382
|
export declare class ConflictException extends __BaseException {
|
|
355
383
|
readonly name: "ConflictException";
|
|
356
384
|
readonly $fault: "client";
|
|
357
385
|
Message: string | undefined;
|
|
358
386
|
/**
|
|
359
|
-
* <p
|
|
387
|
+
* <p>Identifier of the resource affected.</p>
|
|
360
388
|
*/
|
|
361
|
-
ResourceId
|
|
389
|
+
ResourceId?: string;
|
|
362
390
|
/**
|
|
363
391
|
* @internal
|
|
364
392
|
*/
|
|
@@ -388,21 +416,26 @@ export interface Filter {
|
|
|
388
416
|
}
|
|
389
417
|
/**
|
|
390
418
|
* @public
|
|
419
|
+
* @enum
|
|
391
420
|
*/
|
|
392
|
-
export declare
|
|
421
|
+
export declare const DataCollectionType: {
|
|
393
422
|
/**
|
|
394
423
|
* PREMIUM
|
|
395
424
|
*/
|
|
396
|
-
PREMIUM
|
|
425
|
+
readonly PREMIUM: "PREMIUM";
|
|
397
426
|
/**
|
|
398
427
|
* PUBLIC
|
|
399
428
|
*/
|
|
400
|
-
PUBLIC
|
|
429
|
+
readonly PUBLIC: "PUBLIC";
|
|
401
430
|
/**
|
|
402
431
|
* USER
|
|
403
432
|
*/
|
|
404
|
-
USER
|
|
405
|
-
}
|
|
433
|
+
readonly USER: "USER";
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
export type DataCollectionType = (typeof DataCollectionType)[keyof typeof DataCollectionType];
|
|
406
439
|
/**
|
|
407
440
|
* @public
|
|
408
441
|
* <p>Response object containing details for a specific RasterDataCollection.</p>
|
|
@@ -429,7 +462,7 @@ export interface RasterDataCollectionMetadata {
|
|
|
429
462
|
*/
|
|
430
463
|
DescriptionPageUrl?: string;
|
|
431
464
|
/**
|
|
432
|
-
* <p
|
|
465
|
+
* <p>The list of filters supported by the raster data collection.</p>
|
|
433
466
|
*/
|
|
434
467
|
SupportedFilters: Filter[] | undefined;
|
|
435
468
|
/**
|
|
@@ -462,7 +495,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
462
495
|
/**
|
|
463
496
|
* <p/>
|
|
464
497
|
*/
|
|
465
|
-
ResourceId
|
|
498
|
+
ResourceId?: string;
|
|
466
499
|
/**
|
|
467
500
|
* @internal
|
|
468
501
|
*/
|
|
@@ -470,16 +503,16 @@ export declare class InternalServerException extends __BaseException {
|
|
|
470
503
|
}
|
|
471
504
|
/**
|
|
472
505
|
* @public
|
|
473
|
-
* <p
|
|
506
|
+
* <p>The request references a resource which does not exist.</p>
|
|
474
507
|
*/
|
|
475
508
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
476
509
|
readonly name: "ResourceNotFoundException";
|
|
477
510
|
readonly $fault: "client";
|
|
478
511
|
Message: string | undefined;
|
|
479
512
|
/**
|
|
480
|
-
* <p
|
|
513
|
+
* <p>Identifier of the resource that was not found.</p>
|
|
481
514
|
*/
|
|
482
|
-
ResourceId
|
|
515
|
+
ResourceId?: string;
|
|
483
516
|
/**
|
|
484
517
|
* @internal
|
|
485
518
|
*/
|
|
@@ -496,7 +529,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
496
529
|
/**
|
|
497
530
|
* <p/>
|
|
498
531
|
*/
|
|
499
|
-
ResourceId
|
|
532
|
+
ResourceId?: string;
|
|
500
533
|
/**
|
|
501
534
|
* @internal
|
|
502
535
|
*/
|
|
@@ -513,7 +546,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
513
546
|
/**
|
|
514
547
|
* <p/>
|
|
515
548
|
*/
|
|
516
|
-
ResourceId
|
|
549
|
+
ResourceId?: string;
|
|
517
550
|
/**
|
|
518
551
|
* @internal
|
|
519
552
|
*/
|
|
@@ -535,7 +568,7 @@ export interface DeleteVectorEnrichmentJobOutput {
|
|
|
535
568
|
}
|
|
536
569
|
/**
|
|
537
570
|
* @public
|
|
538
|
-
* <p
|
|
571
|
+
* <p>The structure containing the Amazon S3 path to export the Earth Observation job output.</p>
|
|
539
572
|
*/
|
|
540
573
|
export interface ExportS3DataInput {
|
|
541
574
|
/**
|
|
@@ -543,7 +576,7 @@ export interface ExportS3DataInput {
|
|
|
543
576
|
*/
|
|
544
577
|
S3Uri: string | undefined;
|
|
545
578
|
/**
|
|
546
|
-
* <p>The
|
|
579
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
547
580
|
*/
|
|
548
581
|
KmsKeyId?: string;
|
|
549
582
|
}
|
|
@@ -565,6 +598,10 @@ export interface ExportEarthObservationJobInput {
|
|
|
565
598
|
* <p>The input Amazon Resource Name (ARN) of the Earth Observation job being exported.</p>
|
|
566
599
|
*/
|
|
567
600
|
Arn: string | undefined;
|
|
601
|
+
/**
|
|
602
|
+
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
603
|
+
*/
|
|
604
|
+
ClientToken?: string;
|
|
568
605
|
/**
|
|
569
606
|
* <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
|
|
570
607
|
*/
|
|
@@ -580,21 +617,26 @@ export interface ExportEarthObservationJobInput {
|
|
|
580
617
|
}
|
|
581
618
|
/**
|
|
582
619
|
* @public
|
|
620
|
+
* @enum
|
|
583
621
|
*/
|
|
584
|
-
export declare
|
|
622
|
+
export declare const EarthObservationJobExportStatus: {
|
|
585
623
|
/**
|
|
586
624
|
* FAILED
|
|
587
625
|
*/
|
|
588
|
-
FAILED
|
|
626
|
+
readonly FAILED: "FAILED";
|
|
589
627
|
/**
|
|
590
628
|
* IN_PROGRESS
|
|
591
629
|
*/
|
|
592
|
-
IN_PROGRESS
|
|
630
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
593
631
|
/**
|
|
594
632
|
* SUCCEEDED
|
|
595
633
|
*/
|
|
596
|
-
SUCCEEDED
|
|
597
|
-
}
|
|
634
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
635
|
+
};
|
|
636
|
+
/**
|
|
637
|
+
* @public
|
|
638
|
+
*/
|
|
639
|
+
export type EarthObservationJobExportStatus = (typeof EarthObservationJobExportStatus)[keyof typeof EarthObservationJobExportStatus];
|
|
598
640
|
/**
|
|
599
641
|
* @public
|
|
600
642
|
*/
|
|
@@ -633,9 +675,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
633
675
|
readonly $fault: "client";
|
|
634
676
|
Message: string | undefined;
|
|
635
677
|
/**
|
|
636
|
-
* <p
|
|
678
|
+
* <p>Identifier of the resource affected.</p>
|
|
637
679
|
*/
|
|
638
|
-
ResourceId
|
|
680
|
+
ResourceId?: string;
|
|
639
681
|
/**
|
|
640
682
|
* @internal
|
|
641
683
|
*/
|
|
@@ -652,55 +694,65 @@ export interface GetEarthObservationJobInput {
|
|
|
652
694
|
}
|
|
653
695
|
/**
|
|
654
696
|
* @public
|
|
697
|
+
* @enum
|
|
655
698
|
*/
|
|
656
|
-
export declare
|
|
699
|
+
export declare const EarthObservationJobErrorType: {
|
|
657
700
|
/**
|
|
658
701
|
* CLIENT_ERROR
|
|
659
702
|
*/
|
|
660
|
-
CLIENT_ERROR
|
|
703
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
661
704
|
/**
|
|
662
705
|
* SERVER_ERROR
|
|
663
706
|
*/
|
|
664
|
-
SERVER_ERROR
|
|
665
|
-
}
|
|
707
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
708
|
+
};
|
|
709
|
+
/**
|
|
710
|
+
* @public
|
|
711
|
+
*/
|
|
712
|
+
export type EarthObservationJobErrorType = (typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
666
713
|
/**
|
|
667
714
|
* @public
|
|
668
715
|
* <p>The structure representing the errors in an EarthObservationJob.</p>
|
|
669
716
|
*/
|
|
670
717
|
export interface EarthObservationJobErrorDetails {
|
|
671
718
|
/**
|
|
672
|
-
* <p
|
|
719
|
+
* <p>The type of error in an Earth Observation job.</p>
|
|
673
720
|
*/
|
|
674
721
|
Type?: EarthObservationJobErrorType | string;
|
|
675
722
|
/**
|
|
676
|
-
* <p
|
|
723
|
+
* <p>A detailed message describing the error in an Earth Observation job.</p>
|
|
677
724
|
*/
|
|
678
725
|
Message?: string;
|
|
679
726
|
}
|
|
680
727
|
/**
|
|
681
728
|
* @public
|
|
729
|
+
* @enum
|
|
682
730
|
*/
|
|
683
|
-
export declare
|
|
731
|
+
export declare const ExportErrorType: {
|
|
684
732
|
/**
|
|
685
733
|
* CLIENT_ERROR
|
|
686
734
|
*/
|
|
687
|
-
CLIENT_ERROR
|
|
735
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
688
736
|
/**
|
|
689
737
|
* SERVER_ERROR
|
|
690
738
|
*/
|
|
691
|
-
SERVER_ERROR
|
|
692
|
-
}
|
|
739
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
740
|
+
};
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
744
|
+
export type ExportErrorType = (typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
693
745
|
/**
|
|
694
746
|
* @public
|
|
695
|
-
* <p
|
|
747
|
+
* <p>The structure representing the errors in an export EarthObservationJob operation.</p>
|
|
696
748
|
*/
|
|
697
749
|
export interface ExportErrorDetailsOutput {
|
|
698
750
|
/**
|
|
699
|
-
* <p
|
|
751
|
+
* <p>The type of error in an export EarthObservationJob operation.</p>
|
|
700
752
|
*/
|
|
701
753
|
Type?: ExportErrorType | string;
|
|
702
754
|
/**
|
|
703
|
-
* <p
|
|
755
|
+
* <p>A detailed message describing the error in an export EarthObservationJob operation.</p>
|
|
704
756
|
*/
|
|
705
757
|
Message?: string;
|
|
706
758
|
}
|
|
@@ -710,23 +762,29 @@ export interface ExportErrorDetailsOutput {
|
|
|
710
762
|
*/
|
|
711
763
|
export interface ExportErrorDetails {
|
|
712
764
|
/**
|
|
713
|
-
* <p
|
|
765
|
+
* <p>The structure for returning the export error details while exporting results of an Earth Observation job.</p>
|
|
714
766
|
*/
|
|
715
767
|
ExportResults?: ExportErrorDetailsOutput;
|
|
716
768
|
/**
|
|
717
|
-
* <p
|
|
769
|
+
* <p>The structure for returning the export error details
|
|
770
|
+
* while exporting the source images of an Earth Observation job.</p>
|
|
718
771
|
*/
|
|
719
772
|
ExportSourceImages?: ExportErrorDetailsOutput;
|
|
720
773
|
}
|
|
721
774
|
/**
|
|
722
775
|
* @public
|
|
776
|
+
* @enum
|
|
723
777
|
*/
|
|
724
|
-
export declare
|
|
778
|
+
export declare const MetadataProvider: {
|
|
725
779
|
/**
|
|
726
780
|
* PLANET_ORDER
|
|
727
781
|
*/
|
|
728
|
-
PLANET_ORDER
|
|
729
|
-
}
|
|
782
|
+
readonly PLANET_ORDER: "PLANET_ORDER";
|
|
783
|
+
};
|
|
784
|
+
/**
|
|
785
|
+
* @public
|
|
786
|
+
*/
|
|
787
|
+
export type MetadataProvider = (typeof MetadataProvider)[keyof typeof MetadataProvider];
|
|
730
788
|
/**
|
|
731
789
|
* @public
|
|
732
790
|
* <p>Path to Amazon S3 storage location for input data.</p>
|
|
@@ -737,17 +795,18 @@ export interface S3DataInput {
|
|
|
737
795
|
*/
|
|
738
796
|
S3Uri: string | undefined;
|
|
739
797
|
/**
|
|
740
|
-
* <p
|
|
798
|
+
* <p>Metadata provider from whom the Amazon S3 data has been acquired.</p>
|
|
741
799
|
*/
|
|
742
800
|
MetadataProvider: MetadataProvider | string | undefined;
|
|
743
801
|
/**
|
|
744
|
-
* <p>The
|
|
802
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
745
803
|
*/
|
|
746
804
|
KmsKeyId?: string;
|
|
747
805
|
}
|
|
748
806
|
/**
|
|
749
807
|
* @public
|
|
750
|
-
* <p
|
|
808
|
+
* <p>Union representing different data sources to be
|
|
809
|
+
* used as input for an Earth Observation job.</p>
|
|
751
810
|
*/
|
|
752
811
|
export type EojDataSourceConfigInput = EojDataSourceConfigInput.S3DataMember | EojDataSourceConfigInput.$UnknownMember;
|
|
753
812
|
/**
|
|
@@ -755,7 +814,8 @@ export type EojDataSourceConfigInput = EojDataSourceConfigInput.S3DataMember | E
|
|
|
755
814
|
*/
|
|
756
815
|
export declare namespace EojDataSourceConfigInput {
|
|
757
816
|
/**
|
|
758
|
-
* <p
|
|
817
|
+
* <p>The input structure for S3Data; representing the
|
|
818
|
+
* Amazon S3 location of the input data objects.</p>
|
|
759
819
|
*/
|
|
760
820
|
interface S3DataMember {
|
|
761
821
|
S3Data: S3DataInput;
|
|
@@ -773,44 +833,53 @@ export declare namespace EojDataSourceConfigInput {
|
|
|
773
833
|
}
|
|
774
834
|
/**
|
|
775
835
|
* @public
|
|
836
|
+
* @enum
|
|
776
837
|
*/
|
|
777
|
-
export declare
|
|
838
|
+
export declare const LogicalOperator: {
|
|
778
839
|
/**
|
|
779
840
|
* AND
|
|
780
841
|
*/
|
|
781
|
-
AND
|
|
782
|
-
}
|
|
842
|
+
readonly AND: "AND";
|
|
843
|
+
};
|
|
783
844
|
/**
|
|
784
845
|
* @public
|
|
785
|
-
|
|
846
|
+
*/
|
|
847
|
+
export type LogicalOperator = (typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
848
|
+
/**
|
|
849
|
+
* @public
|
|
850
|
+
* <p>The structure representing the EoCloudCover filter.</p>
|
|
786
851
|
*/
|
|
787
852
|
export interface EoCloudCoverInput {
|
|
788
853
|
/**
|
|
789
|
-
* <p
|
|
854
|
+
* <p>Lower bound for EoCloudCover.</p>
|
|
790
855
|
*/
|
|
791
856
|
LowerBound: number | undefined;
|
|
792
857
|
/**
|
|
793
|
-
* <p
|
|
858
|
+
* <p>Upper bound for EoCloudCover.</p>
|
|
794
859
|
*/
|
|
795
860
|
UpperBound: number | undefined;
|
|
796
861
|
}
|
|
797
862
|
/**
|
|
798
863
|
* @public
|
|
799
|
-
* <p
|
|
864
|
+
* <p>The structure representing Land Cloud Cover property for Landsat data collection.</p>
|
|
800
865
|
*/
|
|
801
866
|
export interface LandsatCloudCoverLandInput {
|
|
802
867
|
/**
|
|
803
|
-
* <p
|
|
868
|
+
* <p>The minimum value for Land Cloud Cover property filter. This will filter items
|
|
869
|
+
* having Land Cloud Cover greater than or equal to this value.</p>
|
|
804
870
|
*/
|
|
805
871
|
LowerBound: number | undefined;
|
|
806
872
|
/**
|
|
807
|
-
* <p
|
|
873
|
+
* <p>The maximum value for Land Cloud Cover property filter.
|
|
874
|
+
* This will filter items having Land Cloud Cover less than or equal to this value.</p>
|
|
808
875
|
*/
|
|
809
876
|
UpperBound: number | undefined;
|
|
810
877
|
}
|
|
811
878
|
/**
|
|
812
879
|
* @public
|
|
813
|
-
* <p
|
|
880
|
+
* <p>The input structure for specifying Platform.
|
|
881
|
+
* Platform refers to the unique name of the specific platform the
|
|
882
|
+
* instrument is attached to. For satellites it is the name of the satellite, eg. landsat-8 (Landsat-8), sentinel-2a.</p>
|
|
814
883
|
*/
|
|
815
884
|
export interface PlatformInput {
|
|
816
885
|
/**
|
|
@@ -818,41 +887,51 @@ export interface PlatformInput {
|
|
|
818
887
|
*/
|
|
819
888
|
Value: string | undefined;
|
|
820
889
|
/**
|
|
821
|
-
* <p
|
|
890
|
+
* <p>The ComparisonOperator to use with PlatformInput.</p>
|
|
822
891
|
*/
|
|
823
892
|
ComparisonOperator?: ComparisonOperator | string;
|
|
824
893
|
}
|
|
825
894
|
/**
|
|
826
895
|
* @public
|
|
827
|
-
* <p
|
|
896
|
+
* <p>The input structure for specifying ViewOffNadir property filter.
|
|
897
|
+
* ViewOffNadir refers to the angle from the sensor between
|
|
898
|
+
* nadir (straight down) and the scene center. Measured in degrees (0-90).</p>
|
|
828
899
|
*/
|
|
829
900
|
export interface ViewOffNadirInput {
|
|
830
901
|
/**
|
|
831
|
-
* <p
|
|
902
|
+
* <p>The minimum value for ViewOffNadir property filter.
|
|
903
|
+
* This filters items having ViewOffNadir greater than or equal to this value. </p>
|
|
832
904
|
*/
|
|
833
905
|
LowerBound: number | undefined;
|
|
834
906
|
/**
|
|
835
|
-
* <p
|
|
907
|
+
* <p>The maximum value for ViewOffNadir property filter.
|
|
908
|
+
* This filters items having ViewOffNadir lesser than or equal to this value.</p>
|
|
836
909
|
*/
|
|
837
910
|
UpperBound: number | undefined;
|
|
838
911
|
}
|
|
839
912
|
/**
|
|
840
913
|
* @public
|
|
841
|
-
* <p
|
|
914
|
+
* <p>The input structure for specifying ViewSunAzimuth property filter.
|
|
915
|
+
* ViewSunAzimuth refers to the Sun azimuth angle.
|
|
916
|
+
* From the scene center point on the ground,
|
|
917
|
+
* this is the angle between truth north and the sun.
|
|
918
|
+
* Measured clockwise in degrees (0-360).</p>
|
|
842
919
|
*/
|
|
843
920
|
export interface ViewSunAzimuthInput {
|
|
844
921
|
/**
|
|
845
|
-
* <p
|
|
922
|
+
* <p>The minimum value for ViewSunAzimuth property filter.
|
|
923
|
+
* This filters items having ViewSunAzimuth greater than or equal to this value.</p>
|
|
846
924
|
*/
|
|
847
925
|
LowerBound: number | undefined;
|
|
848
926
|
/**
|
|
849
|
-
* <p
|
|
927
|
+
* <p>The maximum value for ViewSunAzimuth property filter.
|
|
928
|
+
* This filters items having ViewSunAzimuth lesser than or equal to this value.</p>
|
|
850
929
|
*/
|
|
851
930
|
UpperBound: number | undefined;
|
|
852
931
|
}
|
|
853
932
|
/**
|
|
854
933
|
* @public
|
|
855
|
-
* <p
|
|
934
|
+
* <p>The input structure for specifying ViewSunElevation angle property filter. </p>
|
|
856
935
|
*/
|
|
857
936
|
export interface ViewSunElevationInput {
|
|
858
937
|
/**
|
|
@@ -866,7 +945,7 @@ export interface ViewSunElevationInput {
|
|
|
866
945
|
}
|
|
867
946
|
/**
|
|
868
947
|
* @public
|
|
869
|
-
* <p
|
|
948
|
+
* <p>Represents a single searchable property to search on.</p>
|
|
870
949
|
*/
|
|
871
950
|
export type Property = Property.EoCloudCoverMember | Property.LandsatCloudCoverLandMember | Property.PlatformMember | Property.ViewOffNadirMember | Property.ViewSunAzimuthMember | Property.ViewSunElevationMember | Property.$UnknownMember;
|
|
872
951
|
/**
|
|
@@ -874,7 +953,7 @@ export type Property = Property.EoCloudCoverMember | Property.LandsatCloudCoverL
|
|
|
874
953
|
*/
|
|
875
954
|
export declare namespace Property {
|
|
876
955
|
/**
|
|
877
|
-
* <p
|
|
956
|
+
* <p>The structure representing EoCloudCover property filter containing a lower bound and upper bound.</p>
|
|
878
957
|
*/
|
|
879
958
|
interface EoCloudCoverMember {
|
|
880
959
|
EoCloudCover: EoCloudCoverInput;
|
|
@@ -886,7 +965,7 @@ export declare namespace Property {
|
|
|
886
965
|
$unknown?: never;
|
|
887
966
|
}
|
|
888
967
|
/**
|
|
889
|
-
* <p
|
|
968
|
+
* <p>The structure representing ViewOffNadir property filter containing a lower bound and upper bound.</p>
|
|
890
969
|
*/
|
|
891
970
|
interface ViewOffNadirMember {
|
|
892
971
|
EoCloudCover?: never;
|
|
@@ -898,7 +977,7 @@ export declare namespace Property {
|
|
|
898
977
|
$unknown?: never;
|
|
899
978
|
}
|
|
900
979
|
/**
|
|
901
|
-
* <p
|
|
980
|
+
* <p>The structure representing ViewSunAzimuth property filter containing a lower bound and upper bound.</p>
|
|
902
981
|
*/
|
|
903
982
|
interface ViewSunAzimuthMember {
|
|
904
983
|
EoCloudCover?: never;
|
|
@@ -910,7 +989,7 @@ export declare namespace Property {
|
|
|
910
989
|
$unknown?: never;
|
|
911
990
|
}
|
|
912
991
|
/**
|
|
913
|
-
* <p
|
|
992
|
+
* <p>The structure representing ViewSunElevation property filter containing a lower bound and upper bound.</p>
|
|
914
993
|
*/
|
|
915
994
|
interface ViewSunElevationMember {
|
|
916
995
|
EoCloudCover?: never;
|
|
@@ -922,7 +1001,7 @@ export declare namespace Property {
|
|
|
922
1001
|
$unknown?: never;
|
|
923
1002
|
}
|
|
924
1003
|
/**
|
|
925
|
-
* <p
|
|
1004
|
+
* <p>The structure representing Platform property filter consisting of value and comparison operator.</p>
|
|
926
1005
|
*/
|
|
927
1006
|
interface PlatformMember {
|
|
928
1007
|
EoCloudCover?: never;
|
|
@@ -934,7 +1013,8 @@ export declare namespace Property {
|
|
|
934
1013
|
$unknown?: never;
|
|
935
1014
|
}
|
|
936
1015
|
/**
|
|
937
|
-
* <p
|
|
1016
|
+
* <p>The structure representing Land Cloud Cover property filter
|
|
1017
|
+
* for Landsat collection containing a lower bound and upper bound.</p>
|
|
938
1018
|
*/
|
|
939
1019
|
interface LandsatCloudCoverLandMember {
|
|
940
1020
|
EoCloudCover?: never;
|
|
@@ -967,49 +1047,50 @@ export declare namespace Property {
|
|
|
967
1047
|
}
|
|
968
1048
|
/**
|
|
969
1049
|
* @public
|
|
970
|
-
* <p
|
|
1050
|
+
* <p>The structure representing a single PropertyFilter.</p>
|
|
971
1051
|
*/
|
|
972
1052
|
export interface PropertyFilter {
|
|
973
1053
|
/**
|
|
974
|
-
* <p
|
|
1054
|
+
* <p>Represents a single property to match with when searching a raster data collection.</p>
|
|
975
1055
|
*/
|
|
976
1056
|
Property: Property | undefined;
|
|
977
1057
|
}
|
|
978
1058
|
/**
|
|
979
1059
|
* @public
|
|
980
|
-
* <p
|
|
1060
|
+
* <p>A list of PropertyFilter objects.</p>
|
|
981
1061
|
*/
|
|
982
1062
|
export interface PropertyFilters {
|
|
983
1063
|
/**
|
|
984
|
-
* <p
|
|
1064
|
+
* <p>A list of Property Filters.</p>
|
|
985
1065
|
*/
|
|
986
1066
|
Properties?: PropertyFilter[];
|
|
987
1067
|
/**
|
|
988
|
-
* <p
|
|
1068
|
+
* <p>The Logical Operator used to combine the Property Filters.</p>
|
|
989
1069
|
*/
|
|
990
1070
|
LogicalOperator?: LogicalOperator | string;
|
|
991
1071
|
}
|
|
992
1072
|
/**
|
|
993
1073
|
* @public
|
|
994
|
-
* <p>The
|
|
1074
|
+
* <p>The output structure of the time range filter.</p>
|
|
995
1075
|
*/
|
|
996
|
-
export interface
|
|
1076
|
+
export interface TimeRangeFilterOutput {
|
|
997
1077
|
/**
|
|
998
|
-
* <p>The
|
|
1078
|
+
* <p>The starting time for the time range filter.</p>
|
|
999
1079
|
*/
|
|
1000
1080
|
StartTime: Date | undefined;
|
|
1001
1081
|
/**
|
|
1002
|
-
* <p>The
|
|
1082
|
+
* <p>The ending time for the time range filter.</p>
|
|
1003
1083
|
*/
|
|
1004
1084
|
EndTime: Date | undefined;
|
|
1005
1085
|
}
|
|
1006
1086
|
/**
|
|
1007
1087
|
* @public
|
|
1008
|
-
* <p
|
|
1088
|
+
* <p>The output structure contains the Raster Data Collection Query
|
|
1089
|
+
* input along with some additional metadata.</p>
|
|
1009
1090
|
*/
|
|
1010
1091
|
export interface RasterDataCollectionQueryOutput {
|
|
1011
1092
|
/**
|
|
1012
|
-
* <p
|
|
1093
|
+
* <p>The ARN of the Raster Data Collection against which the search is done.</p>
|
|
1013
1094
|
*/
|
|
1014
1095
|
RasterDataCollectionArn: string | undefined;
|
|
1015
1096
|
/**
|
|
@@ -1017,15 +1098,15 @@ export interface RasterDataCollectionQueryOutput {
|
|
|
1017
1098
|
*/
|
|
1018
1099
|
RasterDataCollectionName: string | undefined;
|
|
1019
1100
|
/**
|
|
1020
|
-
* <p
|
|
1101
|
+
* <p>The TimeRange filter used in the search.</p>
|
|
1021
1102
|
*/
|
|
1022
|
-
TimeRangeFilter:
|
|
1103
|
+
TimeRangeFilter: TimeRangeFilterOutput | undefined;
|
|
1023
1104
|
/**
|
|
1024
|
-
* <p
|
|
1105
|
+
* <p>The Area of Interest used in the search.</p>
|
|
1025
1106
|
*/
|
|
1026
1107
|
AreaOfInterest?: AreaOfInterest;
|
|
1027
1108
|
/**
|
|
1028
|
-
* <p
|
|
1109
|
+
* <p>Property filters used in the search.</p>
|
|
1029
1110
|
*/
|
|
1030
1111
|
PropertyFilters?: PropertyFilters;
|
|
1031
1112
|
}
|
|
@@ -1043,7 +1124,8 @@ export interface InputConfigOutput {
|
|
|
1043
1124
|
*/
|
|
1044
1125
|
DataSourceConfig?: EojDataSourceConfigInput;
|
|
1045
1126
|
/**
|
|
1046
|
-
* <p
|
|
1127
|
+
* <p>The structure representing the RasterDataCollection Query consisting of the Area of Interest,
|
|
1128
|
+
* RasterDataCollectionArn, RasterDataCollectionName, TimeRange, and Property Filters.</p>
|
|
1047
1129
|
*/
|
|
1048
1130
|
RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
|
|
1049
1131
|
}
|
|
@@ -1063,50 +1145,59 @@ export interface GeoMosaicConfigInput {
|
|
|
1063
1145
|
}
|
|
1064
1146
|
/**
|
|
1065
1147
|
* @public
|
|
1066
|
-
* <p
|
|
1148
|
+
* <p>The input structure for Land Cover Operation type.</p>
|
|
1067
1149
|
*/
|
|
1068
1150
|
export interface LandCoverSegmentationConfigInput {
|
|
1069
1151
|
}
|
|
1070
1152
|
/**
|
|
1071
1153
|
* @public
|
|
1154
|
+
* @enum
|
|
1072
1155
|
*/
|
|
1073
|
-
export declare
|
|
1156
|
+
export declare const Unit: {
|
|
1074
1157
|
/**
|
|
1075
1158
|
* METERS
|
|
1076
1159
|
*/
|
|
1077
|
-
METERS
|
|
1078
|
-
}
|
|
1160
|
+
readonly METERS: "METERS";
|
|
1161
|
+
};
|
|
1079
1162
|
/**
|
|
1080
1163
|
* @public
|
|
1081
|
-
|
|
1164
|
+
*/
|
|
1165
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
1166
|
+
/**
|
|
1167
|
+
* @public
|
|
1168
|
+
* <p>The output resolution (in target georeferenced units)
|
|
1169
|
+
* of the result of the operation</p>
|
|
1082
1170
|
*/
|
|
1083
1171
|
export interface UserDefined {
|
|
1084
1172
|
/**
|
|
1085
|
-
* <p
|
|
1173
|
+
* <p>The value for output resolution of the result.</p>
|
|
1086
1174
|
*/
|
|
1087
1175
|
Value: number | undefined;
|
|
1088
1176
|
/**
|
|
1089
|
-
* <p
|
|
1177
|
+
* <p>The units for output resolution of the result.</p>
|
|
1090
1178
|
*/
|
|
1091
1179
|
Unit: Unit | string | undefined;
|
|
1092
1180
|
}
|
|
1093
1181
|
/**
|
|
1094
1182
|
* @public
|
|
1095
|
-
* <p
|
|
1183
|
+
* <p>OutputResolution Configuration indicating
|
|
1184
|
+
* the target resolution for the output of Resampling operation.</p>
|
|
1096
1185
|
*/
|
|
1097
1186
|
export interface OutputResolutionResamplingInput {
|
|
1098
1187
|
/**
|
|
1099
|
-
* <p
|
|
1188
|
+
* <p>User Defined Resolution for the output
|
|
1189
|
+
* of Resampling operation defined by value and unit.</p>
|
|
1100
1190
|
*/
|
|
1101
1191
|
UserDefined: UserDefined | undefined;
|
|
1102
1192
|
}
|
|
1103
1193
|
/**
|
|
1104
1194
|
* @public
|
|
1105
|
-
* <p
|
|
1195
|
+
* <p>The structure representing input for resampling operation.</p>
|
|
1106
1196
|
*/
|
|
1107
1197
|
export interface ResamplingConfigInput {
|
|
1108
1198
|
/**
|
|
1109
|
-
* <p
|
|
1199
|
+
* <p>The structure representing output
|
|
1200
|
+
* resolution (in target georeferenced units) of the result of resampling operation.</p>
|
|
1110
1201
|
*/
|
|
1111
1202
|
OutputResolution: OutputResolutionResamplingInput | undefined;
|
|
1112
1203
|
/**
|
|
@@ -1114,149 +1205,195 @@ export interface ResamplingConfigInput {
|
|
|
1114
1205
|
*/
|
|
1115
1206
|
AlgorithmName?: AlgorithmNameResampling | string;
|
|
1116
1207
|
/**
|
|
1117
|
-
* <p
|
|
1208
|
+
* <p>Bands used in the operation. If no target bands are specified, it uses all bands available in the input.</p>
|
|
1118
1209
|
*/
|
|
1119
1210
|
TargetBands?: string[];
|
|
1120
1211
|
}
|
|
1121
1212
|
/**
|
|
1122
1213
|
* @public
|
|
1214
|
+
* @enum
|
|
1123
1215
|
*/
|
|
1124
|
-
export declare
|
|
1216
|
+
export declare const PredefinedResolution: {
|
|
1125
1217
|
/**
|
|
1126
1218
|
* AVERAGE
|
|
1127
1219
|
*/
|
|
1128
|
-
AVERAGE
|
|
1220
|
+
readonly AVERAGE: "AVERAGE";
|
|
1129
1221
|
/**
|
|
1130
1222
|
* HIGHEST
|
|
1131
1223
|
*/
|
|
1132
|
-
HIGHEST
|
|
1224
|
+
readonly HIGHEST: "HIGHEST";
|
|
1133
1225
|
/**
|
|
1134
1226
|
* LOWEST
|
|
1135
1227
|
*/
|
|
1136
|
-
LOWEST
|
|
1137
|
-
}
|
|
1228
|
+
readonly LOWEST: "LOWEST";
|
|
1229
|
+
};
|
|
1230
|
+
/**
|
|
1231
|
+
* @public
|
|
1232
|
+
*/
|
|
1233
|
+
export type PredefinedResolution = (typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
1138
1234
|
/**
|
|
1139
1235
|
* @public
|
|
1140
|
-
* <p
|
|
1236
|
+
* <p>The input structure representing Output Resolution for Stacking Operation.</p>
|
|
1141
1237
|
*/
|
|
1142
1238
|
export interface OutputResolutionStackInput {
|
|
1143
1239
|
/**
|
|
1144
|
-
* <p
|
|
1240
|
+
* <p>A string value representing Predefined Output Resolution for a stacking operation. Allowed values are <code>HIGHEST</code>, <code>LOWEST</code>, and <code>AVERAGE</code>.</p>
|
|
1145
1241
|
*/
|
|
1146
1242
|
Predefined?: PredefinedResolution | string;
|
|
1147
1243
|
/**
|
|
1148
|
-
* <p
|
|
1244
|
+
* <p>The structure representing User Output Resolution for a Stacking operation defined as a value and unit.</p>
|
|
1149
1245
|
*/
|
|
1150
1246
|
UserDefined?: UserDefined;
|
|
1151
1247
|
}
|
|
1152
1248
|
/**
|
|
1153
1249
|
* @public
|
|
1154
|
-
* <p
|
|
1250
|
+
* <p>The input structure for Stacking Operation.</p>
|
|
1155
1251
|
*/
|
|
1156
1252
|
export interface StackConfigInput {
|
|
1157
1253
|
/**
|
|
1158
|
-
* <p
|
|
1254
|
+
* <p>The structure representing output
|
|
1255
|
+
* resolution (in target georeferenced units) of the
|
|
1256
|
+
* result of stacking operation.</p>
|
|
1159
1257
|
*/
|
|
1160
1258
|
OutputResolution?: OutputResolutionStackInput;
|
|
1161
1259
|
/**
|
|
1162
|
-
* <p
|
|
1260
|
+
* <p>A list of bands to be stacked in the specified order. When the parameter is not provided, all the available bands in the data collection are stacked in the alphabetical order of their asset names.</p>
|
|
1163
1261
|
*/
|
|
1164
1262
|
TargetBands?: string[];
|
|
1165
1263
|
}
|
|
1166
1264
|
/**
|
|
1167
1265
|
* @public
|
|
1266
|
+
* @enum
|
|
1168
1267
|
*/
|
|
1169
|
-
export declare
|
|
1268
|
+
export declare const GroupBy: {
|
|
1170
1269
|
/**
|
|
1171
1270
|
* ALL
|
|
1172
1271
|
*/
|
|
1173
|
-
ALL
|
|
1272
|
+
readonly ALL: "ALL";
|
|
1174
1273
|
/**
|
|
1175
1274
|
* YEARLY
|
|
1176
1275
|
*/
|
|
1177
|
-
YEARLY
|
|
1178
|
-
}
|
|
1276
|
+
readonly YEARLY: "YEARLY";
|
|
1277
|
+
};
|
|
1179
1278
|
/**
|
|
1180
1279
|
* @public
|
|
1181
1280
|
*/
|
|
1182
|
-
export
|
|
1281
|
+
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
1282
|
+
/**
|
|
1283
|
+
* @public
|
|
1284
|
+
* @enum
|
|
1285
|
+
*/
|
|
1286
|
+
export declare const TemporalStatistics: {
|
|
1183
1287
|
/**
|
|
1184
1288
|
* MEAN
|
|
1185
1289
|
*/
|
|
1186
|
-
MEAN
|
|
1290
|
+
readonly MEAN: "MEAN";
|
|
1187
1291
|
/**
|
|
1188
1292
|
* MEDIAN
|
|
1189
1293
|
*/
|
|
1190
|
-
MEDIAN
|
|
1294
|
+
readonly MEDIAN: "MEDIAN";
|
|
1191
1295
|
/**
|
|
1192
1296
|
* STANDARD_DEVIATION
|
|
1193
1297
|
*/
|
|
1194
|
-
STANDARD_DEVIATION
|
|
1195
|
-
}
|
|
1298
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
1299
|
+
};
|
|
1300
|
+
/**
|
|
1301
|
+
* @public
|
|
1302
|
+
*/
|
|
1303
|
+
export type TemporalStatistics = (typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
1196
1304
|
/**
|
|
1197
1305
|
* @public
|
|
1198
|
-
* <p
|
|
1306
|
+
* <p>The structure representing the configuration for Temporal Statistics operation.</p>
|
|
1199
1307
|
*/
|
|
1200
1308
|
export interface TemporalStatisticsConfigInput {
|
|
1201
1309
|
/**
|
|
1202
|
-
* <p
|
|
1310
|
+
* <p>The input for the temporal statistics grouping by time frequency option.</p>
|
|
1203
1311
|
*/
|
|
1204
1312
|
GroupBy?: GroupBy | string;
|
|
1205
1313
|
/**
|
|
1206
|
-
* <p
|
|
1314
|
+
* <p>The list of the statistics method options.</p>
|
|
1207
1315
|
*/
|
|
1208
1316
|
Statistics: (TemporalStatistics | string)[] | undefined;
|
|
1209
1317
|
/**
|
|
1210
|
-
* <p
|
|
1318
|
+
* <p>The list of target band names for the temporal statistic to calculate.</p>
|
|
1211
1319
|
*/
|
|
1212
1320
|
TargetBands?: string[];
|
|
1213
1321
|
}
|
|
1214
1322
|
/**
|
|
1215
1323
|
* @public
|
|
1324
|
+
* @enum
|
|
1216
1325
|
*/
|
|
1217
|
-
export declare
|
|
1326
|
+
export declare const ZonalStatistics: {
|
|
1218
1327
|
/**
|
|
1219
1328
|
* MAX
|
|
1220
1329
|
*/
|
|
1221
|
-
MAX
|
|
1330
|
+
readonly MAX: "MAX";
|
|
1222
1331
|
/**
|
|
1223
1332
|
* MEAN
|
|
1224
1333
|
*/
|
|
1225
|
-
MEAN
|
|
1334
|
+
readonly MEAN: "MEAN";
|
|
1226
1335
|
/**
|
|
1227
1336
|
* MEDIAN
|
|
1228
1337
|
*/
|
|
1229
|
-
MEDIAN
|
|
1338
|
+
readonly MEDIAN: "MEDIAN";
|
|
1230
1339
|
/**
|
|
1231
1340
|
* MIN
|
|
1232
1341
|
*/
|
|
1233
|
-
MIN
|
|
1342
|
+
readonly MIN: "MIN";
|
|
1234
1343
|
/**
|
|
1235
1344
|
* STANDARD_DEVIATION
|
|
1236
1345
|
*/
|
|
1237
|
-
STANDARD_DEVIATION
|
|
1346
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
1238
1347
|
/**
|
|
1239
1348
|
* SUM
|
|
1240
1349
|
*/
|
|
1241
|
-
SUM
|
|
1242
|
-
}
|
|
1350
|
+
readonly SUM: "SUM";
|
|
1351
|
+
};
|
|
1243
1352
|
/**
|
|
1244
1353
|
* @public
|
|
1245
|
-
|
|
1354
|
+
*/
|
|
1355
|
+
export type ZonalStatistics = (typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
1356
|
+
/**
|
|
1357
|
+
* @public
|
|
1358
|
+
* <p>The structure representing input configuration of ZonalStatistics operation.</p>
|
|
1246
1359
|
*/
|
|
1247
1360
|
export interface ZonalStatisticsConfigInput {
|
|
1248
1361
|
/**
|
|
1249
|
-
* <p
|
|
1362
|
+
* <p>The Amazon S3 path pointing to the GeoJSON containing the polygonal zones.</p>
|
|
1250
1363
|
*/
|
|
1251
1364
|
ZoneS3Path: string | undefined;
|
|
1252
1365
|
/**
|
|
1253
|
-
* <p
|
|
1366
|
+
* <p>List of zonal statistics to compute.</p>
|
|
1254
1367
|
*/
|
|
1255
1368
|
Statistics: (ZonalStatistics | string)[] | undefined;
|
|
1256
1369
|
/**
|
|
1257
|
-
* <p
|
|
1370
|
+
* <p>Bands used in the operation.
|
|
1371
|
+
* If no target bands are specified, it uses all bands available input.</p>
|
|
1258
1372
|
*/
|
|
1259
1373
|
TargetBands?: string[];
|
|
1374
|
+
/**
|
|
1375
|
+
* <p>The Amazon Resource Name (ARN) or an ID of a Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to decrypt your output artifacts with Amazon S3 server-side encryption.
|
|
1376
|
+
* The SageMaker execution role must have <code>kms:GenerateDataKey</code> permission.</p>
|
|
1377
|
+
* <p>The <code>KmsKeyId</code> can be any of the following formats:</p>
|
|
1378
|
+
* <ul>
|
|
1379
|
+
* <li>
|
|
1380
|
+
* <p>// KMS Key ID</p>
|
|
1381
|
+
* <p>
|
|
1382
|
+
* <code>"1234abcd-12ab-34cd-56ef-1234567890ab"</code>
|
|
1383
|
+
* </p>
|
|
1384
|
+
* </li>
|
|
1385
|
+
* <li>
|
|
1386
|
+
* <p>// Amazon Resource Name (ARN) of a KMS Key</p>
|
|
1387
|
+
* <p>
|
|
1388
|
+
* <code>"arn:aws:kms:<region>:<account>:key/<key-id-12ab-34cd-56ef-1234567890ab>"</code>
|
|
1389
|
+
* </p>
|
|
1390
|
+
* </li>
|
|
1391
|
+
* </ul>
|
|
1392
|
+
* <p>For more information about key identifiers, see
|
|
1393
|
+
* <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-id">Key identifiers (KeyID)</a> in the
|
|
1394
|
+
* Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.</p>
|
|
1395
|
+
*/
|
|
1396
|
+
ZoneS3PathKmsKeyId?: string;
|
|
1260
1397
|
}
|
|
1261
1398
|
/**
|
|
1262
1399
|
* @public
|
|
@@ -1268,7 +1405,7 @@ export type JobConfigInput = JobConfigInput.BandMathConfigMember | JobConfigInpu
|
|
|
1268
1405
|
*/
|
|
1269
1406
|
export declare namespace JobConfigInput {
|
|
1270
1407
|
/**
|
|
1271
|
-
* <p
|
|
1408
|
+
* <p>An object containing information about the job configuration for BandMath.</p>
|
|
1272
1409
|
*/
|
|
1273
1410
|
interface BandMathConfigMember {
|
|
1274
1411
|
BandMathConfig: BandMathConfigInput;
|
|
@@ -1358,7 +1495,7 @@ export declare namespace JobConfigInput {
|
|
|
1358
1495
|
$unknown?: never;
|
|
1359
1496
|
}
|
|
1360
1497
|
/**
|
|
1361
|
-
* <p
|
|
1498
|
+
* <p>An object containing information about the job configuration for a Stacking Earth Observation job.</p>
|
|
1362
1499
|
*/
|
|
1363
1500
|
interface StackConfigMember {
|
|
1364
1501
|
BandMathConfig?: never;
|
|
@@ -1444,41 +1581,46 @@ export interface OutputBand {
|
|
|
1444
1581
|
}
|
|
1445
1582
|
/**
|
|
1446
1583
|
* @public
|
|
1584
|
+
* @enum
|
|
1447
1585
|
*/
|
|
1448
|
-
export declare
|
|
1586
|
+
export declare const EarthObservationJobStatus: {
|
|
1449
1587
|
/**
|
|
1450
1588
|
* COMPLETED
|
|
1451
1589
|
*/
|
|
1452
|
-
COMPLETED
|
|
1590
|
+
readonly COMPLETED: "COMPLETED";
|
|
1453
1591
|
/**
|
|
1454
1592
|
* DELETED
|
|
1455
1593
|
*/
|
|
1456
|
-
DELETED
|
|
1594
|
+
readonly DELETED: "DELETED";
|
|
1457
1595
|
/**
|
|
1458
1596
|
* DELETING
|
|
1459
1597
|
*/
|
|
1460
|
-
DELETING
|
|
1598
|
+
readonly DELETING: "DELETING";
|
|
1461
1599
|
/**
|
|
1462
1600
|
* FAILED
|
|
1463
1601
|
*/
|
|
1464
|
-
FAILED
|
|
1602
|
+
readonly FAILED: "FAILED";
|
|
1465
1603
|
/**
|
|
1466
1604
|
* INITIALIZING
|
|
1467
1605
|
*/
|
|
1468
|
-
INITIALIZING
|
|
1606
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
1469
1607
|
/**
|
|
1470
1608
|
* IN_PROGRESS
|
|
1471
1609
|
*/
|
|
1472
|
-
IN_PROGRESS
|
|
1610
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1473
1611
|
/**
|
|
1474
1612
|
* STOPPED
|
|
1475
1613
|
*/
|
|
1476
|
-
STOPPED
|
|
1614
|
+
readonly STOPPED: "STOPPED";
|
|
1477
1615
|
/**
|
|
1478
1616
|
* STOPPING
|
|
1479
1617
|
*/
|
|
1480
|
-
STOPPING
|
|
1481
|
-
}
|
|
1618
|
+
readonly STOPPING: "STOPPING";
|
|
1619
|
+
};
|
|
1620
|
+
/**
|
|
1621
|
+
* @public
|
|
1622
|
+
*/
|
|
1623
|
+
export type EarthObservationJobStatus = (typeof EarthObservationJobStatus)[keyof typeof EarthObservationJobStatus];
|
|
1482
1624
|
/**
|
|
1483
1625
|
* @public
|
|
1484
1626
|
*/
|
|
@@ -1504,7 +1646,7 @@ export interface GetEarthObservationJobOutput {
|
|
|
1504
1646
|
*/
|
|
1505
1647
|
Status: EarthObservationJobStatus | string | undefined;
|
|
1506
1648
|
/**
|
|
1507
|
-
* <p>The
|
|
1649
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
1508
1650
|
*/
|
|
1509
1651
|
KmsKeyId?: string;
|
|
1510
1652
|
/**
|
|
@@ -1516,7 +1658,7 @@ export interface GetEarthObservationJobOutput {
|
|
|
1516
1658
|
*/
|
|
1517
1659
|
JobConfig: JobConfigInput | undefined;
|
|
1518
1660
|
/**
|
|
1519
|
-
* <p
|
|
1661
|
+
* <p>Bands available in the output of an operation.</p>
|
|
1520
1662
|
*/
|
|
1521
1663
|
OutputBands?: OutputBand[];
|
|
1522
1664
|
/**
|
|
@@ -1542,17 +1684,22 @@ export interface GetEarthObservationJobOutput {
|
|
|
1542
1684
|
}
|
|
1543
1685
|
/**
|
|
1544
1686
|
* @public
|
|
1687
|
+
* @enum
|
|
1545
1688
|
*/
|
|
1546
|
-
export declare
|
|
1689
|
+
export declare const TargetOptions: {
|
|
1547
1690
|
/**
|
|
1548
1691
|
* INPUT
|
|
1549
1692
|
*/
|
|
1550
|
-
INPUT
|
|
1693
|
+
readonly INPUT: "INPUT";
|
|
1551
1694
|
/**
|
|
1552
1695
|
* OUTPUT
|
|
1553
1696
|
*/
|
|
1554
|
-
OUTPUT
|
|
1555
|
-
}
|
|
1697
|
+
readonly OUTPUT: "OUTPUT";
|
|
1698
|
+
};
|
|
1699
|
+
/**
|
|
1700
|
+
* @public
|
|
1701
|
+
*/
|
|
1702
|
+
export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
|
|
1556
1703
|
/**
|
|
1557
1704
|
* @public
|
|
1558
1705
|
*/
|
|
@@ -1601,6 +1748,10 @@ export interface GetTileInput {
|
|
|
1601
1748
|
* <p>The output data type of the tile operation.</p>
|
|
1602
1749
|
*/
|
|
1603
1750
|
OutputDataType?: OutputType | string;
|
|
1751
|
+
/**
|
|
1752
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that you specify.</p>
|
|
1753
|
+
*/
|
|
1754
|
+
ExecutionRoleArn?: string;
|
|
1604
1755
|
}
|
|
1605
1756
|
/**
|
|
1606
1757
|
* @public
|
|
@@ -1613,17 +1764,22 @@ export interface GetTileOutput {
|
|
|
1613
1764
|
}
|
|
1614
1765
|
/**
|
|
1615
1766
|
* @public
|
|
1767
|
+
* @enum
|
|
1616
1768
|
*/
|
|
1617
|
-
export declare
|
|
1769
|
+
export declare const SortOrder: {
|
|
1618
1770
|
/**
|
|
1619
1771
|
* ASCENDING
|
|
1620
1772
|
*/
|
|
1621
|
-
ASCENDING
|
|
1773
|
+
readonly ASCENDING: "ASCENDING";
|
|
1622
1774
|
/**
|
|
1623
1775
|
* DESCENDING
|
|
1624
1776
|
*/
|
|
1625
|
-
DESCENDING
|
|
1626
|
-
}
|
|
1777
|
+
readonly DESCENDING: "DESCENDING";
|
|
1778
|
+
};
|
|
1779
|
+
/**
|
|
1780
|
+
* @public
|
|
1781
|
+
*/
|
|
1782
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1627
1783
|
/**
|
|
1628
1784
|
* @public
|
|
1629
1785
|
*/
|
|
@@ -1676,7 +1832,7 @@ export interface ListEarthObservationJobOutputConfig {
|
|
|
1676
1832
|
*/
|
|
1677
1833
|
Status: EarthObservationJobStatus | string | undefined;
|
|
1678
1834
|
/**
|
|
1679
|
-
* <p
|
|
1835
|
+
* <p>The operation type for an Earth Observation job.</p>
|
|
1680
1836
|
*/
|
|
1681
1837
|
OperationType: string | undefined;
|
|
1682
1838
|
/**
|
|
@@ -1700,7 +1856,21 @@ export interface ListEarthObservationJobOutput {
|
|
|
1700
1856
|
}
|
|
1701
1857
|
/**
|
|
1702
1858
|
* @public
|
|
1703
|
-
* <p
|
|
1859
|
+
* <p>The input for the time-range filter.</p>
|
|
1860
|
+
*/
|
|
1861
|
+
export interface TimeRangeFilterInput {
|
|
1862
|
+
/**
|
|
1863
|
+
* <p>The start time for the time-range filter.</p>
|
|
1864
|
+
*/
|
|
1865
|
+
StartTime: Date | undefined;
|
|
1866
|
+
/**
|
|
1867
|
+
* <p>The end time for the time-range filter.</p>
|
|
1868
|
+
*/
|
|
1869
|
+
EndTime: Date | undefined;
|
|
1870
|
+
}
|
|
1871
|
+
/**
|
|
1872
|
+
* @public
|
|
1873
|
+
* <p>The input structure for Raster Data Collection Query containing the Area of Interest, TimeRange Filters, and Property Filters.</p>
|
|
1704
1874
|
*/
|
|
1705
1875
|
export interface RasterDataCollectionQueryInput {
|
|
1706
1876
|
/**
|
|
@@ -1708,7 +1878,7 @@ export interface RasterDataCollectionQueryInput {
|
|
|
1708
1878
|
*/
|
|
1709
1879
|
RasterDataCollectionArn: string | undefined;
|
|
1710
1880
|
/**
|
|
1711
|
-
* <p
|
|
1881
|
+
* <p>The TimeRange Filter used in the RasterDataCollection Query.</p>
|
|
1712
1882
|
*/
|
|
1713
1883
|
TimeRangeFilter: TimeRangeFilterInput | undefined;
|
|
1714
1884
|
/**
|
|
@@ -1716,7 +1886,7 @@ export interface RasterDataCollectionQueryInput {
|
|
|
1716
1886
|
*/
|
|
1717
1887
|
AreaOfInterest?: AreaOfInterest;
|
|
1718
1888
|
/**
|
|
1719
|
-
* <p
|
|
1889
|
+
* <p>The list of Property filters used in the Raster Data Collection Query.</p>
|
|
1720
1890
|
*/
|
|
1721
1891
|
PropertyFilters?: PropertyFilters;
|
|
1722
1892
|
}
|
|
@@ -1734,7 +1904,8 @@ export interface InputConfigInput {
|
|
|
1734
1904
|
*/
|
|
1735
1905
|
DataSourceConfig?: EojDataSourceConfigInput;
|
|
1736
1906
|
/**
|
|
1737
|
-
* <p
|
|
1907
|
+
* <p>The structure representing the RasterDataCollection Query consisting of
|
|
1908
|
+
* the Area of Interest, RasterDataCollectionArn,TimeRange and Property Filters.</p>
|
|
1738
1909
|
*/
|
|
1739
1910
|
RasterDataCollectionQuery?: RasterDataCollectionQueryInput;
|
|
1740
1911
|
}
|
|
@@ -1751,7 +1922,7 @@ export interface StartEarthObservationJobInput {
|
|
|
1751
1922
|
*/
|
|
1752
1923
|
ClientToken?: string;
|
|
1753
1924
|
/**
|
|
1754
|
-
* <p>The
|
|
1925
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
1755
1926
|
*/
|
|
1756
1927
|
KmsKeyId?: string;
|
|
1757
1928
|
/**
|
|
@@ -1796,7 +1967,7 @@ export interface StartEarthObservationJobOutput {
|
|
|
1796
1967
|
*/
|
|
1797
1968
|
Status: EarthObservationJobStatus | string | undefined;
|
|
1798
1969
|
/**
|
|
1799
|
-
* <p>The
|
|
1970
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
1800
1971
|
*/
|
|
1801
1972
|
KmsKeyId?: string;
|
|
1802
1973
|
/**
|
|
@@ -1840,7 +2011,7 @@ export interface VectorEnrichmentJobS3Data {
|
|
|
1840
2011
|
*/
|
|
1841
2012
|
S3Uri: string | undefined;
|
|
1842
2013
|
/**
|
|
1843
|
-
* <p>The
|
|
2014
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
1844
2015
|
*/
|
|
1845
2016
|
KmsKeyId?: string;
|
|
1846
2017
|
}
|
|
@@ -1850,7 +2021,7 @@ export interface VectorEnrichmentJobS3Data {
|
|
|
1850
2021
|
*/
|
|
1851
2022
|
export interface ExportVectorEnrichmentJobOutputConfig {
|
|
1852
2023
|
/**
|
|
1853
|
-
* <p
|
|
2024
|
+
* <p>The input structure for Amazon S3 data; representing the Amazon S3 location of the input data objects.</p>
|
|
1854
2025
|
*/
|
|
1855
2026
|
S3Data: VectorEnrichmentJobS3Data | undefined;
|
|
1856
2027
|
}
|
|
@@ -1862,6 +2033,10 @@ export interface ExportVectorEnrichmentJobInput {
|
|
|
1862
2033
|
* <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
|
|
1863
2034
|
*/
|
|
1864
2035
|
Arn: string | undefined;
|
|
2036
|
+
/**
|
|
2037
|
+
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
2038
|
+
*/
|
|
2039
|
+
ClientToken?: string;
|
|
1865
2040
|
/**
|
|
1866
2041
|
* <p>The Amazon Resource Name (ARN) of the IAM rolewith permission to upload to the location in OutputConfig.</p>
|
|
1867
2042
|
*/
|
|
@@ -1874,12 +2049,17 @@ export interface ExportVectorEnrichmentJobInput {
|
|
|
1874
2049
|
}
|
|
1875
2050
|
/**
|
|
1876
2051
|
* @public
|
|
2052
|
+
* @enum
|
|
1877
2053
|
*/
|
|
1878
|
-
export declare
|
|
1879
|
-
FAILED
|
|
1880
|
-
IN_PROGRESS
|
|
1881
|
-
SUCCEEDED
|
|
1882
|
-
}
|
|
2054
|
+
export declare const VectorEnrichmentJobExportStatus: {
|
|
2055
|
+
readonly FAILED: "FAILED";
|
|
2056
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2057
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2058
|
+
};
|
|
2059
|
+
/**
|
|
2060
|
+
* @public
|
|
2061
|
+
*/
|
|
2062
|
+
export type VectorEnrichmentJobExportStatus = (typeof VectorEnrichmentJobExportStatus)[keyof typeof VectorEnrichmentJobExportStatus];
|
|
1883
2063
|
/**
|
|
1884
2064
|
* @public
|
|
1885
2065
|
*/
|
|
@@ -1908,15 +2088,16 @@ export interface ExportVectorEnrichmentJobOutput {
|
|
|
1908
2088
|
}
|
|
1909
2089
|
/**
|
|
1910
2090
|
* @public
|
|
1911
|
-
* <p
|
|
2091
|
+
* <p>The structure representing a Geometry in
|
|
2092
|
+
* terms of Type and Coordinates as per GeoJson spec.</p>
|
|
1912
2093
|
*/
|
|
1913
2094
|
export interface Geometry {
|
|
1914
2095
|
/**
|
|
1915
|
-
* <p
|
|
2096
|
+
* <p>GeoJson Geometry types like Polygon and MultiPolygon.</p>
|
|
1916
2097
|
*/
|
|
1917
2098
|
Type: string | undefined;
|
|
1918
2099
|
/**
|
|
1919
|
-
* <p
|
|
2100
|
+
* <p>The coordinates of the GeoJson Geometry.</p>
|
|
1920
2101
|
*/
|
|
1921
2102
|
Coordinates: number[][][] | undefined;
|
|
1922
2103
|
}
|
|
@@ -1958,7 +2139,7 @@ export interface GetRasterDataCollectionOutput {
|
|
|
1958
2139
|
*/
|
|
1959
2140
|
SupportedFilters: Filter[] | undefined;
|
|
1960
2141
|
/**
|
|
1961
|
-
* <p
|
|
2142
|
+
* <p>The list of image source bands in the raster data collection.</p>
|
|
1962
2143
|
*/
|
|
1963
2144
|
ImageSourceBands: string[] | undefined;
|
|
1964
2145
|
/**
|
|
@@ -1977,17 +2158,22 @@ export interface GetVectorEnrichmentJobInput {
|
|
|
1977
2158
|
}
|
|
1978
2159
|
/**
|
|
1979
2160
|
* @public
|
|
2161
|
+
* @enum
|
|
1980
2162
|
*/
|
|
1981
|
-
export declare
|
|
2163
|
+
export declare const VectorEnrichmentJobErrorType: {
|
|
1982
2164
|
/**
|
|
1983
2165
|
* CLIENT_ERROR
|
|
1984
2166
|
*/
|
|
1985
|
-
CLIENT_ERROR
|
|
2167
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
1986
2168
|
/**
|
|
1987
2169
|
* SERVER_ERROR
|
|
1988
2170
|
*/
|
|
1989
|
-
SERVER_ERROR
|
|
1990
|
-
}
|
|
2171
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
2172
|
+
};
|
|
2173
|
+
/**
|
|
2174
|
+
* @public
|
|
2175
|
+
*/
|
|
2176
|
+
export type VectorEnrichmentJobErrorType = (typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
1991
2177
|
/**
|
|
1992
2178
|
* @public
|
|
1993
2179
|
* <p>VectorEnrichmentJob error details in response from GetVectorEnrichmentJob.</p>
|
|
@@ -2005,18 +2191,23 @@ export interface VectorEnrichmentJobErrorDetails {
|
|
|
2005
2191
|
}
|
|
2006
2192
|
/**
|
|
2007
2193
|
* @public
|
|
2194
|
+
* @enum
|
|
2008
2195
|
*/
|
|
2009
|
-
export declare
|
|
2010
|
-
CLIENT_ERROR
|
|
2011
|
-
SERVER_ERROR
|
|
2012
|
-
}
|
|
2196
|
+
export declare const VectorEnrichmentJobExportErrorType: {
|
|
2197
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
2198
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
2199
|
+
};
|
|
2200
|
+
/**
|
|
2201
|
+
* @public
|
|
2202
|
+
*/
|
|
2203
|
+
export type VectorEnrichmentJobExportErrorType = (typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
2013
2204
|
/**
|
|
2014
2205
|
* @public
|
|
2015
2206
|
* <p>VectorEnrichmentJob export error details in response from GetVectorEnrichmentJob.</p>
|
|
2016
2207
|
*/
|
|
2017
2208
|
export interface VectorEnrichmentJobExportErrorDetails {
|
|
2018
2209
|
/**
|
|
2019
|
-
* <p
|
|
2210
|
+
* <p>The output error details for an Export operation on a Vector Enrichment job.</p>
|
|
2020
2211
|
*/
|
|
2021
2212
|
Type?: VectorEnrichmentJobExportErrorType | string;
|
|
2022
2213
|
/**
|
|
@@ -2026,7 +2217,7 @@ export interface VectorEnrichmentJobExportErrorDetails {
|
|
|
2026
2217
|
}
|
|
2027
2218
|
/**
|
|
2028
2219
|
* @public
|
|
2029
|
-
* <p
|
|
2220
|
+
* <p>The input structure for the data source that represents the storage type of the input data objects.</p>
|
|
2030
2221
|
*/
|
|
2031
2222
|
export type VectorEnrichmentJobDataSourceConfigInput = VectorEnrichmentJobDataSourceConfigInput.S3DataMember | VectorEnrichmentJobDataSourceConfigInput.$UnknownMember;
|
|
2032
2223
|
/**
|
|
@@ -2034,7 +2225,7 @@ export type VectorEnrichmentJobDataSourceConfigInput = VectorEnrichmentJobDataSo
|
|
|
2034
2225
|
*/
|
|
2035
2226
|
export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
2036
2227
|
/**
|
|
2037
|
-
* <p
|
|
2228
|
+
* <p>The input structure for the Amazon S3 data that represents the Amazon S3 location of the input data objects.</p>
|
|
2038
2229
|
*/
|
|
2039
2230
|
interface S3DataMember {
|
|
2040
2231
|
S3Data: VectorEnrichmentJobS3Data;
|
|
@@ -2052,31 +2243,36 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
2052
2243
|
}
|
|
2053
2244
|
/**
|
|
2054
2245
|
* @public
|
|
2246
|
+
* @enum
|
|
2055
2247
|
*/
|
|
2056
|
-
export declare
|
|
2057
|
-
CSV
|
|
2058
|
-
}
|
|
2248
|
+
export declare const VectorEnrichmentJobDocumentType: {
|
|
2249
|
+
readonly CSV: "CSV";
|
|
2250
|
+
};
|
|
2251
|
+
/**
|
|
2252
|
+
* @public
|
|
2253
|
+
*/
|
|
2254
|
+
export type VectorEnrichmentJobDocumentType = (typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
2059
2255
|
/**
|
|
2060
2256
|
* @public
|
|
2061
2257
|
* <p>The input structure for the InputConfig in a VectorEnrichmentJob.</p>
|
|
2062
2258
|
*/
|
|
2063
2259
|
export interface VectorEnrichmentJobInputConfig {
|
|
2064
2260
|
/**
|
|
2065
|
-
* <p
|
|
2261
|
+
* <p>The input structure that defines the data source file type.</p>
|
|
2066
2262
|
*/
|
|
2067
2263
|
DocumentType: VectorEnrichmentJobDocumentType | string | undefined;
|
|
2068
2264
|
/**
|
|
2069
|
-
* <p
|
|
2265
|
+
* <p>The input structure for the data source that represents the storage type of the input data objects.</p>
|
|
2070
2266
|
*/
|
|
2071
2267
|
DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
|
|
2072
2268
|
}
|
|
2073
2269
|
/**
|
|
2074
2270
|
* @public
|
|
2075
|
-
* <p
|
|
2271
|
+
* <p>The input structure for Map Matching operation type.</p>
|
|
2076
2272
|
*/
|
|
2077
2273
|
export interface MapMatchingConfig {
|
|
2078
2274
|
/**
|
|
2079
|
-
* <p
|
|
2275
|
+
* <p>The field name for the data that describes the identifier representing a collection of GPS points belonging to an individual trace.</p>
|
|
2080
2276
|
*/
|
|
2081
2277
|
IdAttributeName: string | undefined;
|
|
2082
2278
|
/**
|
|
@@ -2094,15 +2290,15 @@ export interface MapMatchingConfig {
|
|
|
2094
2290
|
}
|
|
2095
2291
|
/**
|
|
2096
2292
|
* @public
|
|
2097
|
-
* <p
|
|
2293
|
+
* <p>The input structure for Reverse Geocoding operation type.</p>
|
|
2098
2294
|
*/
|
|
2099
2295
|
export interface ReverseGeocodingConfig {
|
|
2100
2296
|
/**
|
|
2101
|
-
* <p
|
|
2297
|
+
* <p>The field name for the data that describes y-axis coordinate, eg. latitude of a point.</p>
|
|
2102
2298
|
*/
|
|
2103
2299
|
YAttributeName: string | undefined;
|
|
2104
2300
|
/**
|
|
2105
|
-
* <p
|
|
2301
|
+
* <p>The field name for the data that describes x-axis coordinate, eg. longitude of a point.</p>
|
|
2106
2302
|
*/
|
|
2107
2303
|
XAttributeName: string | undefined;
|
|
2108
2304
|
}
|
|
@@ -2116,7 +2312,7 @@ export type VectorEnrichmentJobConfig = VectorEnrichmentJobConfig.MapMatchingCon
|
|
|
2116
2312
|
*/
|
|
2117
2313
|
export declare namespace VectorEnrichmentJobConfig {
|
|
2118
2314
|
/**
|
|
2119
|
-
* <p
|
|
2315
|
+
* <p>The input structure for Reverse Geocoding operation type.</p>
|
|
2120
2316
|
*/
|
|
2121
2317
|
interface ReverseGeocodingConfigMember {
|
|
2122
2318
|
ReverseGeocodingConfig: ReverseGeocodingConfig;
|
|
@@ -2124,7 +2320,7 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
2124
2320
|
$unknown?: never;
|
|
2125
2321
|
}
|
|
2126
2322
|
/**
|
|
2127
|
-
* <p
|
|
2323
|
+
* <p>The input structure for Map Matching operation type.</p>
|
|
2128
2324
|
*/
|
|
2129
2325
|
interface MapMatchingConfigMember {
|
|
2130
2326
|
ReverseGeocodingConfig?: never;
|
|
@@ -2145,24 +2341,34 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
2145
2341
|
}
|
|
2146
2342
|
/**
|
|
2147
2343
|
* @public
|
|
2344
|
+
* @enum
|
|
2148
2345
|
*/
|
|
2149
|
-
export declare
|
|
2150
|
-
COMPLETED
|
|
2151
|
-
DELETED
|
|
2152
|
-
DELETING
|
|
2153
|
-
FAILED
|
|
2154
|
-
INITIALIZING
|
|
2155
|
-
IN_PROGRESS
|
|
2156
|
-
STOPPED
|
|
2157
|
-
STOPPING
|
|
2158
|
-
}
|
|
2346
|
+
export declare const VectorEnrichmentJobStatus: {
|
|
2347
|
+
readonly COMPLETED: "COMPLETED";
|
|
2348
|
+
readonly DELETED: "DELETED";
|
|
2349
|
+
readonly DELETING: "DELETING";
|
|
2350
|
+
readonly FAILED: "FAILED";
|
|
2351
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
2352
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2353
|
+
readonly STOPPED: "STOPPED";
|
|
2354
|
+
readonly STOPPING: "STOPPING";
|
|
2355
|
+
};
|
|
2159
2356
|
/**
|
|
2160
2357
|
* @public
|
|
2161
2358
|
*/
|
|
2162
|
-
export
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2359
|
+
export type VectorEnrichmentJobStatus = (typeof VectorEnrichmentJobStatus)[keyof typeof VectorEnrichmentJobStatus];
|
|
2360
|
+
/**
|
|
2361
|
+
* @public
|
|
2362
|
+
* @enum
|
|
2363
|
+
*/
|
|
2364
|
+
export declare const VectorEnrichmentJobType: {
|
|
2365
|
+
readonly MAP_MATCHING: "MAP_MATCHING";
|
|
2366
|
+
readonly REVERSE_GEOCODING: "REVERSE_GEOCODING";
|
|
2367
|
+
};
|
|
2368
|
+
/**
|
|
2369
|
+
* @public
|
|
2370
|
+
*/
|
|
2371
|
+
export type VectorEnrichmentJobType = (typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
2166
2372
|
/**
|
|
2167
2373
|
* @public
|
|
2168
2374
|
*/
|
|
@@ -2192,7 +2398,7 @@ export interface GetVectorEnrichmentJobOutput {
|
|
|
2192
2398
|
*/
|
|
2193
2399
|
Status: VectorEnrichmentJobStatus | string | undefined;
|
|
2194
2400
|
/**
|
|
2195
|
-
* <p>The
|
|
2401
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
2196
2402
|
*/
|
|
2197
2403
|
KmsKeyId?: string;
|
|
2198
2404
|
/**
|
|
@@ -2226,37 +2432,42 @@ export interface GetVectorEnrichmentJobOutput {
|
|
|
2226
2432
|
}
|
|
2227
2433
|
/**
|
|
2228
2434
|
* @public
|
|
2229
|
-
* <p
|
|
2435
|
+
* <p>Properties associated with the Item.</p>
|
|
2230
2436
|
*/
|
|
2231
2437
|
export interface Properties {
|
|
2232
2438
|
/**
|
|
2233
|
-
* <p
|
|
2439
|
+
* <p>Estimate of cloud cover.</p>
|
|
2234
2440
|
*/
|
|
2235
2441
|
EoCloudCover?: number;
|
|
2236
2442
|
/**
|
|
2237
|
-
* <p
|
|
2443
|
+
* <p>The angle from the sensor between nadir (straight down) and the scene center. Measured in degrees (0-90).</p>
|
|
2238
2444
|
*/
|
|
2239
2445
|
ViewOffNadir?: number;
|
|
2240
2446
|
/**
|
|
2241
|
-
* <p
|
|
2447
|
+
* <p>The sun azimuth angle. From the scene center point on the ground, this is the angle between truth north and the sun.
|
|
2448
|
+
* Measured clockwise in degrees (0-360).</p>
|
|
2242
2449
|
*/
|
|
2243
2450
|
ViewSunAzimuth?: number;
|
|
2244
2451
|
/**
|
|
2245
|
-
* <p
|
|
2452
|
+
* <p>The sun elevation angle. The angle from the tangent of the scene center point to the sun. Measured from the horizon in degrees (-90-90).
|
|
2453
|
+
* Negative values indicate the sun is below the horizon, e.g. sun elevation of -10° means the data was captured during <a href="https://www.timeanddate.com/astronomy/different-types-twilight.html">nautical twilight</a>.</p>
|
|
2246
2454
|
*/
|
|
2247
2455
|
ViewSunElevation?: number;
|
|
2248
2456
|
/**
|
|
2249
|
-
* <p
|
|
2457
|
+
* <p>Platform property. Platform refers to the unique name
|
|
2458
|
+
* of the specific platform the instrument is attached to.
|
|
2459
|
+
* For satellites it is the name of
|
|
2460
|
+
* the satellite, eg. landsat-8 (Landsat-8), sentinel-2a.</p>
|
|
2250
2461
|
*/
|
|
2251
2462
|
Platform?: string;
|
|
2252
2463
|
/**
|
|
2253
|
-
* <p
|
|
2464
|
+
* <p>Land cloud cover for Landsat Data Collection.</p>
|
|
2254
2465
|
*/
|
|
2255
2466
|
LandsatCloudCoverLand?: number;
|
|
2256
2467
|
}
|
|
2257
2468
|
/**
|
|
2258
2469
|
* @public
|
|
2259
|
-
* <p>
|
|
2470
|
+
* <p>The structure representing the items in the response for SearchRasterDataCollection.</p>
|
|
2260
2471
|
*/
|
|
2261
2472
|
export interface ItemSource {
|
|
2262
2473
|
/**
|
|
@@ -2264,19 +2475,20 @@ export interface ItemSource {
|
|
|
2264
2475
|
*/
|
|
2265
2476
|
Id: string | undefined;
|
|
2266
2477
|
/**
|
|
2267
|
-
* <p
|
|
2478
|
+
* <p>The item Geometry in GeoJson format.</p>
|
|
2268
2479
|
*/
|
|
2269
2480
|
Geometry: Geometry | undefined;
|
|
2270
2481
|
/**
|
|
2271
|
-
* <p
|
|
2482
|
+
* <p>This is a dictionary of Asset Objects data associated with the Item that
|
|
2483
|
+
* can be downloaded or streamed, each with a unique key.</p>
|
|
2272
2484
|
*/
|
|
2273
2485
|
Assets?: Record<string, AssetValue>;
|
|
2274
2486
|
/**
|
|
2275
|
-
* <p
|
|
2487
|
+
* <p>The searchable date and time of the item, in UTC.</p>
|
|
2276
2488
|
*/
|
|
2277
2489
|
DateTime: Date | undefined;
|
|
2278
2490
|
/**
|
|
2279
|
-
* <p
|
|
2491
|
+
* <p>This field contains additional properties of the item.</p>
|
|
2280
2492
|
*/
|
|
2281
2493
|
Properties?: Properties;
|
|
2282
2494
|
}
|
|
@@ -2406,19 +2618,19 @@ export interface ListVectorEnrichmentJobOutput {
|
|
|
2406
2618
|
*/
|
|
2407
2619
|
export interface RasterDataCollectionQueryWithBandFilterInput {
|
|
2408
2620
|
/**
|
|
2409
|
-
* <p
|
|
2621
|
+
* <p>The TimeRange Filter used in the search query.</p>
|
|
2410
2622
|
*/
|
|
2411
2623
|
TimeRangeFilter: TimeRangeFilterInput | undefined;
|
|
2412
2624
|
/**
|
|
2413
|
-
* <p
|
|
2625
|
+
* <p>The Area of interest to be used in the search query.</p>
|
|
2414
2626
|
*/
|
|
2415
2627
|
AreaOfInterest?: AreaOfInterest;
|
|
2416
2628
|
/**
|
|
2417
|
-
* <p
|
|
2629
|
+
* <p>The Property Filters used in the search query.</p>
|
|
2418
2630
|
*/
|
|
2419
2631
|
PropertyFilters?: PropertyFilters;
|
|
2420
2632
|
/**
|
|
2421
|
-
* <p
|
|
2633
|
+
* <p>The list of Bands to be displayed in the result for each item.</p>
|
|
2422
2634
|
*/
|
|
2423
2635
|
BandFilter?: string[];
|
|
2424
2636
|
}
|
|
@@ -2431,7 +2643,8 @@ export interface SearchRasterDataCollectionInput {
|
|
|
2431
2643
|
*/
|
|
2432
2644
|
Arn: string | undefined;
|
|
2433
2645
|
/**
|
|
2434
|
-
* <p
|
|
2646
|
+
* <p>RasterDataCollectionQuery consisting of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html">AreaOfInterest(AOI)</a>, <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html">PropertyFilters</a> and
|
|
2647
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html">TimeRangeFilterInput</a> used in <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html">SearchRasterDataCollection</a>.</p>
|
|
2435
2648
|
*/
|
|
2436
2649
|
RasterDataCollectionQuery: RasterDataCollectionQueryWithBandFilterInput | undefined;
|
|
2437
2650
|
/**
|
|
@@ -2445,7 +2658,7 @@ export interface SearchRasterDataCollectionInput {
|
|
|
2445
2658
|
*/
|
|
2446
2659
|
export interface SearchRasterDataCollectionOutput {
|
|
2447
2660
|
/**
|
|
2448
|
-
* <p
|
|
2661
|
+
* <p>Approximate number of results in the response.</p>
|
|
2449
2662
|
*/
|
|
2450
2663
|
ApproximateResultCount: number | undefined;
|
|
2451
2664
|
/**
|
|
@@ -2454,7 +2667,7 @@ export interface SearchRasterDataCollectionOutput {
|
|
|
2454
2667
|
*/
|
|
2455
2668
|
NextToken?: string;
|
|
2456
2669
|
/**
|
|
2457
|
-
* <p
|
|
2670
|
+
* <p>List of items matching the Raster DataCollectionQuery.</p>
|
|
2458
2671
|
*/
|
|
2459
2672
|
Items?: ItemSource[];
|
|
2460
2673
|
}
|
|
@@ -2507,7 +2720,7 @@ export interface StartVectorEnrichmentJobInput {
|
|
|
2507
2720
|
*/
|
|
2508
2721
|
ClientToken?: string;
|
|
2509
2722
|
/**
|
|
2510
|
-
* <p>The
|
|
2723
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
2511
2724
|
*/
|
|
2512
2725
|
KmsKeyId?: string;
|
|
2513
2726
|
/**
|
|
@@ -2556,7 +2769,7 @@ export interface StartVectorEnrichmentJobOutput {
|
|
|
2556
2769
|
*/
|
|
2557
2770
|
Status: VectorEnrichmentJobStatus | string | undefined;
|
|
2558
2771
|
/**
|
|
2559
|
-
* <p>The
|
|
2772
|
+
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
2560
2773
|
*/
|
|
2561
2774
|
KmsKeyId?: string;
|
|
2562
2775
|
/**
|
|
@@ -2609,7 +2822,7 @@ export declare const AreaOfInterestFilterSensitiveLog: (obj: AreaOfInterest) =>
|
|
|
2609
2822
|
/**
|
|
2610
2823
|
* @internal
|
|
2611
2824
|
*/
|
|
2612
|
-
export declare const
|
|
2825
|
+
export declare const TimeRangeFilterOutputFilterSensitiveLog: (obj: TimeRangeFilterOutput) => any;
|
|
2613
2826
|
/**
|
|
2614
2827
|
* @internal
|
|
2615
2828
|
*/
|
|
@@ -2634,6 +2847,10 @@ export declare const ListEarthObservationJobInputFilterSensitiveLog: (obj: ListE
|
|
|
2634
2847
|
* @internal
|
|
2635
2848
|
*/
|
|
2636
2849
|
export declare const ListEarthObservationJobOutputFilterSensitiveLog: (obj: ListEarthObservationJobOutput) => any;
|
|
2850
|
+
/**
|
|
2851
|
+
* @internal
|
|
2852
|
+
*/
|
|
2853
|
+
export declare const TimeRangeFilterInputFilterSensitiveLog: (obj: TimeRangeFilterInput) => any;
|
|
2637
2854
|
/**
|
|
2638
2855
|
* @internal
|
|
2639
2856
|
*/
|