@aws-sdk/client-sagemaker-geospatial 3.301.0 → 3.306.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
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|
|
@@ -9,41 +9,47 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
10
|
);
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
13
|
-
INTERPOLATION
|
|
14
|
-
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
12
|
+
export declare const AlgorithmNameCloudRemoval: {
|
|
13
|
+
readonly INTERPOLATION: "INTERPOLATION";
|
|
14
|
+
};
|
|
15
|
+
export type AlgorithmNameCloudRemoval =
|
|
16
|
+
(typeof AlgorithmNameCloudRemoval)[keyof typeof AlgorithmNameCloudRemoval];
|
|
17
|
+
export declare const AlgorithmNameGeoMosaic: {
|
|
18
|
+
readonly AVERAGE: "AVERAGE";
|
|
19
|
+
readonly BILINEAR: "BILINEAR";
|
|
20
|
+
readonly CUBIC: "CUBIC";
|
|
21
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
22
|
+
readonly LANCZOS: "LANCZOS";
|
|
23
|
+
readonly MAX: "MAX";
|
|
24
|
+
readonly MED: "MED";
|
|
25
|
+
readonly MIN: "MIN";
|
|
26
|
+
readonly MODE: "MODE";
|
|
27
|
+
readonly NEAR: "NEAR";
|
|
28
|
+
readonly Q1: "Q1";
|
|
29
|
+
readonly Q3: "Q3";
|
|
30
|
+
readonly RMS: "RMS";
|
|
31
|
+
readonly SUM: "SUM";
|
|
32
|
+
};
|
|
33
|
+
export type AlgorithmNameGeoMosaic =
|
|
34
|
+
(typeof AlgorithmNameGeoMosaic)[keyof typeof AlgorithmNameGeoMosaic];
|
|
35
|
+
export declare const AlgorithmNameResampling: {
|
|
36
|
+
readonly AVERAGE: "AVERAGE";
|
|
37
|
+
readonly BILINEAR: "BILINEAR";
|
|
38
|
+
readonly CUBIC: "CUBIC";
|
|
39
|
+
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
40
|
+
readonly LANCZOS: "LANCZOS";
|
|
41
|
+
readonly MAX: "MAX";
|
|
42
|
+
readonly MED: "MED";
|
|
43
|
+
readonly MIN: "MIN";
|
|
44
|
+
readonly MODE: "MODE";
|
|
45
|
+
readonly NEAR: "NEAR";
|
|
46
|
+
readonly Q1: "Q1";
|
|
47
|
+
readonly Q3: "Q3";
|
|
48
|
+
readonly RMS: "RMS";
|
|
49
|
+
readonly SUM: "SUM";
|
|
50
|
+
};
|
|
51
|
+
export type AlgorithmNameResampling =
|
|
52
|
+
(typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
|
|
47
53
|
export interface MultiPolygonGeometryInput {
|
|
48
54
|
Coordinates: number[][][][] | undefined;
|
|
49
55
|
}
|
|
@@ -98,13 +104,14 @@ export declare namespace AreaOfInterest {
|
|
|
98
104
|
export interface AssetValue {
|
|
99
105
|
Href?: string;
|
|
100
106
|
}
|
|
101
|
-
export declare
|
|
102
|
-
FLOAT32
|
|
103
|
-
FLOAT64
|
|
104
|
-
INT16
|
|
105
|
-
INT32
|
|
106
|
-
UINT16
|
|
107
|
-
}
|
|
107
|
+
export declare const OutputType: {
|
|
108
|
+
readonly FLOAT32: "FLOAT32";
|
|
109
|
+
readonly FLOAT64: "FLOAT64";
|
|
110
|
+
readonly INT16: "INT16";
|
|
111
|
+
readonly INT32: "INT32";
|
|
112
|
+
readonly UINT16: "UINT16";
|
|
113
|
+
};
|
|
114
|
+
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
108
115
|
export interface Operation {
|
|
109
116
|
Name: string | undefined;
|
|
110
117
|
Equation: string | undefined;
|
|
@@ -123,16 +130,18 @@ export interface CloudRemovalConfigInput {
|
|
|
123
130
|
InterpolationValue?: string;
|
|
124
131
|
TargetBands?: string[];
|
|
125
132
|
}
|
|
126
|
-
export declare
|
|
127
|
-
EQUALS
|
|
128
|
-
NOT_EQUALS
|
|
129
|
-
STARTS_WITH
|
|
130
|
-
}
|
|
133
|
+
export declare const ComparisonOperator: {
|
|
134
|
+
readonly EQUALS: "EQUALS";
|
|
135
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
136
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
137
|
+
};
|
|
138
|
+
export type ComparisonOperator =
|
|
139
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
131
140
|
export declare class ConflictException extends __BaseException {
|
|
132
141
|
readonly name: "ConflictException";
|
|
133
142
|
readonly $fault: "client";
|
|
134
143
|
Message: string | undefined;
|
|
135
|
-
ResourceId
|
|
144
|
+
ResourceId?: string;
|
|
136
145
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
137
146
|
}
|
|
138
147
|
export interface Filter {
|
|
@@ -141,11 +150,13 @@ export interface Filter {
|
|
|
141
150
|
Minimum?: number;
|
|
142
151
|
Maximum?: number;
|
|
143
152
|
}
|
|
144
|
-
export declare
|
|
145
|
-
PREMIUM
|
|
146
|
-
PUBLIC
|
|
147
|
-
USER
|
|
148
|
-
}
|
|
153
|
+
export declare const DataCollectionType: {
|
|
154
|
+
readonly PREMIUM: "PREMIUM";
|
|
155
|
+
readonly PUBLIC: "PUBLIC";
|
|
156
|
+
readonly USER: "USER";
|
|
157
|
+
};
|
|
158
|
+
export type DataCollectionType =
|
|
159
|
+
(typeof DataCollectionType)[keyof typeof DataCollectionType];
|
|
149
160
|
export interface RasterDataCollectionMetadata {
|
|
150
161
|
Name: string | undefined;
|
|
151
162
|
Arn: string | undefined;
|
|
@@ -163,7 +174,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
163
174
|
readonly name: "InternalServerException";
|
|
164
175
|
readonly $fault: "server";
|
|
165
176
|
Message: string | undefined;
|
|
166
|
-
ResourceId
|
|
177
|
+
ResourceId?: string;
|
|
167
178
|
constructor(
|
|
168
179
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
169
180
|
);
|
|
@@ -172,7 +183,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
172
183
|
readonly name: "ResourceNotFoundException";
|
|
173
184
|
readonly $fault: "client";
|
|
174
185
|
Message: string | undefined;
|
|
175
|
-
ResourceId
|
|
186
|
+
ResourceId?: string;
|
|
176
187
|
constructor(
|
|
177
188
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
178
189
|
);
|
|
@@ -181,7 +192,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
181
192
|
readonly name: "ThrottlingException";
|
|
182
193
|
readonly $fault: "client";
|
|
183
194
|
Message: string | undefined;
|
|
184
|
-
ResourceId
|
|
195
|
+
ResourceId?: string;
|
|
185
196
|
constructor(
|
|
186
197
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
187
198
|
);
|
|
@@ -190,7 +201,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
190
201
|
readonly name: "ValidationException";
|
|
191
202
|
readonly $fault: "client";
|
|
192
203
|
Message: string | undefined;
|
|
193
|
-
ResourceId
|
|
204
|
+
ResourceId?: string;
|
|
194
205
|
constructor(
|
|
195
206
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
196
207
|
);
|
|
@@ -208,15 +219,18 @@ export interface OutputConfigInput {
|
|
|
208
219
|
}
|
|
209
220
|
export interface ExportEarthObservationJobInput {
|
|
210
221
|
Arn: string | undefined;
|
|
222
|
+
ClientToken?: string;
|
|
211
223
|
ExecutionRoleArn: string | undefined;
|
|
212
224
|
OutputConfig: OutputConfigInput | undefined;
|
|
213
225
|
ExportSourceImages?: boolean;
|
|
214
226
|
}
|
|
215
|
-
export declare
|
|
216
|
-
FAILED
|
|
217
|
-
IN_PROGRESS
|
|
218
|
-
SUCCEEDED
|
|
219
|
-
}
|
|
227
|
+
export declare const EarthObservationJobExportStatus: {
|
|
228
|
+
readonly FAILED: "FAILED";
|
|
229
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
230
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
231
|
+
};
|
|
232
|
+
export type EarthObservationJobExportStatus =
|
|
233
|
+
(typeof EarthObservationJobExportStatus)[keyof typeof EarthObservationJobExportStatus];
|
|
220
234
|
export interface ExportEarthObservationJobOutput {
|
|
221
235
|
Arn: string | undefined;
|
|
222
236
|
CreationTime: Date | undefined;
|
|
@@ -229,7 +243,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
229
243
|
readonly name: "ServiceQuotaExceededException";
|
|
230
244
|
readonly $fault: "client";
|
|
231
245
|
Message: string | undefined;
|
|
232
|
-
ResourceId
|
|
246
|
+
ResourceId?: string;
|
|
233
247
|
constructor(
|
|
234
248
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
235
249
|
);
|
|
@@ -237,18 +251,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
237
251
|
export interface GetEarthObservationJobInput {
|
|
238
252
|
Arn: string | undefined;
|
|
239
253
|
}
|
|
240
|
-
export declare
|
|
241
|
-
CLIENT_ERROR
|
|
242
|
-
SERVER_ERROR
|
|
243
|
-
}
|
|
254
|
+
export declare const EarthObservationJobErrorType: {
|
|
255
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
256
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
257
|
+
};
|
|
258
|
+
export type EarthObservationJobErrorType =
|
|
259
|
+
(typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
244
260
|
export interface EarthObservationJobErrorDetails {
|
|
245
261
|
Type?: EarthObservationJobErrorType | string;
|
|
246
262
|
Message?: string;
|
|
247
263
|
}
|
|
248
|
-
export declare
|
|
249
|
-
CLIENT_ERROR
|
|
250
|
-
SERVER_ERROR
|
|
251
|
-
}
|
|
264
|
+
export declare const ExportErrorType: {
|
|
265
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
266
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
267
|
+
};
|
|
268
|
+
export type ExportErrorType =
|
|
269
|
+
(typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
252
270
|
export interface ExportErrorDetailsOutput {
|
|
253
271
|
Type?: ExportErrorType | string;
|
|
254
272
|
Message?: string;
|
|
@@ -257,9 +275,11 @@ export interface ExportErrorDetails {
|
|
|
257
275
|
ExportResults?: ExportErrorDetailsOutput;
|
|
258
276
|
ExportSourceImages?: ExportErrorDetailsOutput;
|
|
259
277
|
}
|
|
260
|
-
export declare
|
|
261
|
-
PLANET_ORDER
|
|
262
|
-
}
|
|
278
|
+
export declare const MetadataProvider: {
|
|
279
|
+
readonly PLANET_ORDER: "PLANET_ORDER";
|
|
280
|
+
};
|
|
281
|
+
export type MetadataProvider =
|
|
282
|
+
(typeof MetadataProvider)[keyof typeof MetadataProvider];
|
|
263
283
|
export interface S3DataInput {
|
|
264
284
|
S3Uri: string | undefined;
|
|
265
285
|
MetadataProvider: MetadataProvider | string | undefined;
|
|
@@ -283,9 +303,11 @@ export declare namespace EojDataSourceConfigInput {
|
|
|
283
303
|
}
|
|
284
304
|
const visit: <T>(value: EojDataSourceConfigInput, visitor: Visitor<T>) => T;
|
|
285
305
|
}
|
|
286
|
-
export declare
|
|
287
|
-
AND
|
|
288
|
-
}
|
|
306
|
+
export declare const LogicalOperator: {
|
|
307
|
+
readonly AND: "AND";
|
|
308
|
+
};
|
|
309
|
+
export type LogicalOperator =
|
|
310
|
+
(typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
289
311
|
export interface EoCloudCoverInput {
|
|
290
312
|
LowerBound: number | undefined;
|
|
291
313
|
UpperBound: number | undefined;
|
|
@@ -400,14 +422,14 @@ export interface PropertyFilters {
|
|
|
400
422
|
Properties?: PropertyFilter[];
|
|
401
423
|
LogicalOperator?: LogicalOperator | string;
|
|
402
424
|
}
|
|
403
|
-
export interface
|
|
425
|
+
export interface TimeRangeFilterOutput {
|
|
404
426
|
StartTime: Date | undefined;
|
|
405
427
|
EndTime: Date | undefined;
|
|
406
428
|
}
|
|
407
429
|
export interface RasterDataCollectionQueryOutput {
|
|
408
430
|
RasterDataCollectionArn: string | undefined;
|
|
409
431
|
RasterDataCollectionName: string | undefined;
|
|
410
|
-
TimeRangeFilter:
|
|
432
|
+
TimeRangeFilter: TimeRangeFilterOutput | undefined;
|
|
411
433
|
AreaOfInterest?: AreaOfInterest;
|
|
412
434
|
PropertyFilters?: PropertyFilters;
|
|
413
435
|
}
|
|
@@ -421,9 +443,10 @@ export interface GeoMosaicConfigInput {
|
|
|
421
443
|
TargetBands?: string[];
|
|
422
444
|
}
|
|
423
445
|
export interface LandCoverSegmentationConfigInput {}
|
|
424
|
-
export declare
|
|
425
|
-
METERS
|
|
426
|
-
}
|
|
446
|
+
export declare const Unit: {
|
|
447
|
+
readonly METERS: "METERS";
|
|
448
|
+
};
|
|
449
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
427
450
|
export interface UserDefined {
|
|
428
451
|
Value: number | undefined;
|
|
429
452
|
Unit: Unit | string | undefined;
|
|
@@ -436,11 +459,13 @@ export interface ResamplingConfigInput {
|
|
|
436
459
|
AlgorithmName?: AlgorithmNameResampling | string;
|
|
437
460
|
TargetBands?: string[];
|
|
438
461
|
}
|
|
439
|
-
export declare
|
|
440
|
-
AVERAGE
|
|
441
|
-
HIGHEST
|
|
442
|
-
LOWEST
|
|
443
|
-
}
|
|
462
|
+
export declare const PredefinedResolution: {
|
|
463
|
+
readonly AVERAGE: "AVERAGE";
|
|
464
|
+
readonly HIGHEST: "HIGHEST";
|
|
465
|
+
readonly LOWEST: "LOWEST";
|
|
466
|
+
};
|
|
467
|
+
export type PredefinedResolution =
|
|
468
|
+
(typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
444
469
|
export interface OutputResolutionStackInput {
|
|
445
470
|
Predefined?: PredefinedResolution | string;
|
|
446
471
|
UserDefined?: UserDefined;
|
|
@@ -449,32 +474,38 @@ export interface StackConfigInput {
|
|
|
449
474
|
OutputResolution?: OutputResolutionStackInput;
|
|
450
475
|
TargetBands?: string[];
|
|
451
476
|
}
|
|
452
|
-
export declare
|
|
453
|
-
ALL
|
|
454
|
-
YEARLY
|
|
455
|
-
}
|
|
456
|
-
export
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
477
|
+
export declare const GroupBy: {
|
|
478
|
+
readonly ALL: "ALL";
|
|
479
|
+
readonly YEARLY: "YEARLY";
|
|
480
|
+
};
|
|
481
|
+
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
482
|
+
export declare const TemporalStatistics: {
|
|
483
|
+
readonly MEAN: "MEAN";
|
|
484
|
+
readonly MEDIAN: "MEDIAN";
|
|
485
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
486
|
+
};
|
|
487
|
+
export type TemporalStatistics =
|
|
488
|
+
(typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
461
489
|
export interface TemporalStatisticsConfigInput {
|
|
462
490
|
GroupBy?: GroupBy | string;
|
|
463
491
|
Statistics: (TemporalStatistics | string)[] | undefined;
|
|
464
492
|
TargetBands?: string[];
|
|
465
493
|
}
|
|
466
|
-
export declare
|
|
467
|
-
MAX
|
|
468
|
-
MEAN
|
|
469
|
-
MEDIAN
|
|
470
|
-
MIN
|
|
471
|
-
STANDARD_DEVIATION
|
|
472
|
-
SUM
|
|
473
|
-
}
|
|
494
|
+
export declare const ZonalStatistics: {
|
|
495
|
+
readonly MAX: "MAX";
|
|
496
|
+
readonly MEAN: "MEAN";
|
|
497
|
+
readonly MEDIAN: "MEDIAN";
|
|
498
|
+
readonly MIN: "MIN";
|
|
499
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
500
|
+
readonly SUM: "SUM";
|
|
501
|
+
};
|
|
502
|
+
export type ZonalStatistics =
|
|
503
|
+
(typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
474
504
|
export interface ZonalStatisticsConfigInput {
|
|
475
505
|
ZoneS3Path: string | undefined;
|
|
476
506
|
Statistics: (ZonalStatistics | string)[] | undefined;
|
|
477
507
|
TargetBands?: string[];
|
|
508
|
+
ZoneS3PathKmsKeyId?: string;
|
|
478
509
|
}
|
|
479
510
|
export type JobConfigInput =
|
|
480
511
|
| JobConfigInput.BandMathConfigMember
|
|
@@ -626,16 +657,18 @@ export interface OutputBand {
|
|
|
626
657
|
BandName: string | undefined;
|
|
627
658
|
OutputDataType: OutputType | string | undefined;
|
|
628
659
|
}
|
|
629
|
-
export declare
|
|
630
|
-
COMPLETED
|
|
631
|
-
DELETED
|
|
632
|
-
DELETING
|
|
633
|
-
FAILED
|
|
634
|
-
INITIALIZING
|
|
635
|
-
IN_PROGRESS
|
|
636
|
-
STOPPED
|
|
637
|
-
STOPPING
|
|
638
|
-
}
|
|
660
|
+
export declare const EarthObservationJobStatus: {
|
|
661
|
+
readonly COMPLETED: "COMPLETED";
|
|
662
|
+
readonly DELETED: "DELETED";
|
|
663
|
+
readonly DELETING: "DELETING";
|
|
664
|
+
readonly FAILED: "FAILED";
|
|
665
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
666
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
667
|
+
readonly STOPPED: "STOPPED";
|
|
668
|
+
readonly STOPPING: "STOPPING";
|
|
669
|
+
};
|
|
670
|
+
export type EarthObservationJobStatus =
|
|
671
|
+
(typeof EarthObservationJobStatus)[keyof typeof EarthObservationJobStatus];
|
|
639
672
|
export interface GetEarthObservationJobOutput {
|
|
640
673
|
Arn: string | undefined;
|
|
641
674
|
Name: string | undefined;
|
|
@@ -652,10 +685,11 @@ export interface GetEarthObservationJobOutput {
|
|
|
652
685
|
ExportErrorDetails?: ExportErrorDetails;
|
|
653
686
|
Tags?: Record<string, string>;
|
|
654
687
|
}
|
|
655
|
-
export declare
|
|
656
|
-
INPUT
|
|
657
|
-
OUTPUT
|
|
658
|
-
}
|
|
688
|
+
export declare const TargetOptions: {
|
|
689
|
+
readonly INPUT: "INPUT";
|
|
690
|
+
readonly OUTPUT: "OUTPUT";
|
|
691
|
+
};
|
|
692
|
+
export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
|
|
659
693
|
export interface GetTileInput {
|
|
660
694
|
x: number | undefined;
|
|
661
695
|
y: number | undefined;
|
|
@@ -668,14 +702,16 @@ export interface GetTileInput {
|
|
|
668
702
|
TimeRangeFilter?: string;
|
|
669
703
|
PropertyFilters?: string;
|
|
670
704
|
OutputDataType?: OutputType | string;
|
|
705
|
+
ExecutionRoleArn?: string;
|
|
671
706
|
}
|
|
672
707
|
export interface GetTileOutput {
|
|
673
708
|
BinaryFile?: Readable | ReadableStream | Blob;
|
|
674
709
|
}
|
|
675
|
-
export declare
|
|
676
|
-
ASCENDING
|
|
677
|
-
DESCENDING
|
|
678
|
-
}
|
|
710
|
+
export declare const SortOrder: {
|
|
711
|
+
readonly ASCENDING: "ASCENDING";
|
|
712
|
+
readonly DESCENDING: "DESCENDING";
|
|
713
|
+
};
|
|
714
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
679
715
|
export interface ListEarthObservationJobInput {
|
|
680
716
|
StatusEquals?: EarthObservationJobStatus | string;
|
|
681
717
|
SortOrder?: SortOrder | string;
|
|
@@ -698,6 +734,10 @@ export interface ListEarthObservationJobOutput {
|
|
|
698
734
|
| undefined;
|
|
699
735
|
NextToken?: string;
|
|
700
736
|
}
|
|
737
|
+
export interface TimeRangeFilterInput {
|
|
738
|
+
StartTime: Date | undefined;
|
|
739
|
+
EndTime: Date | undefined;
|
|
740
|
+
}
|
|
701
741
|
export interface RasterDataCollectionQueryInput {
|
|
702
742
|
RasterDataCollectionArn: string | undefined;
|
|
703
743
|
TimeRangeFilter: TimeRangeFilterInput | undefined;
|
|
@@ -743,14 +783,17 @@ export interface ExportVectorEnrichmentJobOutputConfig {
|
|
|
743
783
|
}
|
|
744
784
|
export interface ExportVectorEnrichmentJobInput {
|
|
745
785
|
Arn: string | undefined;
|
|
786
|
+
ClientToken?: string;
|
|
746
787
|
ExecutionRoleArn: string | undefined;
|
|
747
788
|
OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
|
|
748
789
|
}
|
|
749
|
-
export declare
|
|
750
|
-
FAILED
|
|
751
|
-
IN_PROGRESS
|
|
752
|
-
SUCCEEDED
|
|
753
|
-
}
|
|
790
|
+
export declare const VectorEnrichmentJobExportStatus: {
|
|
791
|
+
readonly FAILED: "FAILED";
|
|
792
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
793
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
794
|
+
};
|
|
795
|
+
export type VectorEnrichmentJobExportStatus =
|
|
796
|
+
(typeof VectorEnrichmentJobExportStatus)[keyof typeof VectorEnrichmentJobExportStatus];
|
|
754
797
|
export interface ExportVectorEnrichmentJobOutput {
|
|
755
798
|
Arn: string | undefined;
|
|
756
799
|
CreationTime: Date | undefined;
|
|
@@ -778,18 +821,22 @@ export interface GetRasterDataCollectionOutput {
|
|
|
778
821
|
export interface GetVectorEnrichmentJobInput {
|
|
779
822
|
Arn: string | undefined;
|
|
780
823
|
}
|
|
781
|
-
export declare
|
|
782
|
-
CLIENT_ERROR
|
|
783
|
-
SERVER_ERROR
|
|
784
|
-
}
|
|
824
|
+
export declare const VectorEnrichmentJobErrorType: {
|
|
825
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
826
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
827
|
+
};
|
|
828
|
+
export type VectorEnrichmentJobErrorType =
|
|
829
|
+
(typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
785
830
|
export interface VectorEnrichmentJobErrorDetails {
|
|
786
831
|
ErrorType?: VectorEnrichmentJobErrorType | string;
|
|
787
832
|
ErrorMessage?: string;
|
|
788
833
|
}
|
|
789
|
-
export declare
|
|
790
|
-
CLIENT_ERROR
|
|
791
|
-
SERVER_ERROR
|
|
792
|
-
}
|
|
834
|
+
export declare const VectorEnrichmentJobExportErrorType: {
|
|
835
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
836
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
837
|
+
};
|
|
838
|
+
export type VectorEnrichmentJobExportErrorType =
|
|
839
|
+
(typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
793
840
|
export interface VectorEnrichmentJobExportErrorDetails {
|
|
794
841
|
Type?: VectorEnrichmentJobExportErrorType | string;
|
|
795
842
|
Message?: string;
|
|
@@ -815,9 +862,11 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
815
862
|
visitor: Visitor<T>
|
|
816
863
|
) => T;
|
|
817
864
|
}
|
|
818
|
-
export declare
|
|
819
|
-
CSV
|
|
820
|
-
}
|
|
865
|
+
export declare const VectorEnrichmentJobDocumentType: {
|
|
866
|
+
readonly CSV: "CSV";
|
|
867
|
+
};
|
|
868
|
+
export type VectorEnrichmentJobDocumentType =
|
|
869
|
+
(typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
821
870
|
export interface VectorEnrichmentJobInputConfig {
|
|
822
871
|
DocumentType: VectorEnrichmentJobDocumentType | string | undefined;
|
|
823
872
|
DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
|
|
@@ -859,20 +908,24 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
859
908
|
}
|
|
860
909
|
const visit: <T>(value: VectorEnrichmentJobConfig, visitor: Visitor<T>) => T;
|
|
861
910
|
}
|
|
862
|
-
export declare
|
|
863
|
-
COMPLETED
|
|
864
|
-
DELETED
|
|
865
|
-
DELETING
|
|
866
|
-
FAILED
|
|
867
|
-
INITIALIZING
|
|
868
|
-
IN_PROGRESS
|
|
869
|
-
STOPPED
|
|
870
|
-
STOPPING
|
|
871
|
-
}
|
|
872
|
-
export
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
911
|
+
export declare const VectorEnrichmentJobStatus: {
|
|
912
|
+
readonly COMPLETED: "COMPLETED";
|
|
913
|
+
readonly DELETED: "DELETED";
|
|
914
|
+
readonly DELETING: "DELETING";
|
|
915
|
+
readonly FAILED: "FAILED";
|
|
916
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
917
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
918
|
+
readonly STOPPED: "STOPPED";
|
|
919
|
+
readonly STOPPING: "STOPPING";
|
|
920
|
+
};
|
|
921
|
+
export type VectorEnrichmentJobStatus =
|
|
922
|
+
(typeof VectorEnrichmentJobStatus)[keyof typeof VectorEnrichmentJobStatus];
|
|
923
|
+
export declare const VectorEnrichmentJobType: {
|
|
924
|
+
readonly MAP_MATCHING: "MAP_MATCHING";
|
|
925
|
+
readonly REVERSE_GEOCODING: "REVERSE_GEOCODING";
|
|
926
|
+
};
|
|
927
|
+
export type VectorEnrichmentJobType =
|
|
928
|
+
(typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
876
929
|
export interface GetVectorEnrichmentJobOutput {
|
|
877
930
|
Arn: string | undefined;
|
|
878
931
|
Type: VectorEnrichmentJobType | string | undefined;
|
|
@@ -1006,8 +1059,8 @@ export declare const AreaOfInterestGeometryFilterSensitiveLog: (
|
|
|
1006
1059
|
export declare const AreaOfInterestFilterSensitiveLog: (
|
|
1007
1060
|
obj: AreaOfInterest
|
|
1008
1061
|
) => any;
|
|
1009
|
-
export declare const
|
|
1010
|
-
obj:
|
|
1062
|
+
export declare const TimeRangeFilterOutputFilterSensitiveLog: (
|
|
1063
|
+
obj: TimeRangeFilterOutput
|
|
1011
1064
|
) => any;
|
|
1012
1065
|
export declare const RasterDataCollectionQueryOutputFilterSensitiveLog: (
|
|
1013
1066
|
obj: RasterDataCollectionQueryOutput
|
|
@@ -1027,6 +1080,9 @@ export declare const ListEarthObservationJobInputFilterSensitiveLog: (
|
|
|
1027
1080
|
export declare const ListEarthObservationJobOutputFilterSensitiveLog: (
|
|
1028
1081
|
obj: ListEarthObservationJobOutput
|
|
1029
1082
|
) => any;
|
|
1083
|
+
export declare const TimeRangeFilterInputFilterSensitiveLog: (
|
|
1084
|
+
obj: TimeRangeFilterInput
|
|
1085
|
+
) => any;
|
|
1030
1086
|
export declare const RasterDataCollectionQueryInputFilterSensitiveLog: (
|
|
1031
1087
|
obj: RasterDataCollectionQueryInput
|
|
1032
1088
|
) => any;
|