@aws-sdk/client-sagemaker-geospatial 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +166 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +141 -0
- package/dist-es/models/models_0.js +1 -141
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/models_0.d.ts +1 -564
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +184 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -184
- package/package.json +2 -2
|
@@ -1,150 +1,5 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
|
|
3
|
-
* @public
|
|
4
|
-
* @enum
|
|
5
|
-
*/
|
|
6
|
-
export declare const AlgorithmNameCloudRemoval: {
|
|
7
|
-
/**
|
|
8
|
-
* INTERPOLATION
|
|
9
|
-
*/
|
|
10
|
-
readonly INTERPOLATION: "INTERPOLATION";
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* @public
|
|
14
|
-
*/
|
|
15
|
-
export type AlgorithmNameCloudRemoval = (typeof AlgorithmNameCloudRemoval)[keyof typeof AlgorithmNameCloudRemoval];
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
* @enum
|
|
19
|
-
*/
|
|
20
|
-
export declare const AlgorithmNameGeoMosaic: {
|
|
21
|
-
/**
|
|
22
|
-
* AVERAGE
|
|
23
|
-
*/
|
|
24
|
-
readonly AVERAGE: "AVERAGE";
|
|
25
|
-
/**
|
|
26
|
-
* BILINEAR
|
|
27
|
-
*/
|
|
28
|
-
readonly BILINEAR: "BILINEAR";
|
|
29
|
-
/**
|
|
30
|
-
* CUBIC
|
|
31
|
-
*/
|
|
32
|
-
readonly CUBIC: "CUBIC";
|
|
33
|
-
/**
|
|
34
|
-
* CUBICSPLINE
|
|
35
|
-
*/
|
|
36
|
-
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
37
|
-
/**
|
|
38
|
-
* LANCZOS
|
|
39
|
-
*/
|
|
40
|
-
readonly LANCZOS: "LANCZOS";
|
|
41
|
-
/**
|
|
42
|
-
* MAX
|
|
43
|
-
*/
|
|
44
|
-
readonly MAX: "MAX";
|
|
45
|
-
/**
|
|
46
|
-
* MED
|
|
47
|
-
*/
|
|
48
|
-
readonly MED: "MED";
|
|
49
|
-
/**
|
|
50
|
-
* MIN
|
|
51
|
-
*/
|
|
52
|
-
readonly MIN: "MIN";
|
|
53
|
-
/**
|
|
54
|
-
* MODE
|
|
55
|
-
*/
|
|
56
|
-
readonly MODE: "MODE";
|
|
57
|
-
/**
|
|
58
|
-
* NEAR
|
|
59
|
-
*/
|
|
60
|
-
readonly NEAR: "NEAR";
|
|
61
|
-
/**
|
|
62
|
-
* Q1
|
|
63
|
-
*/
|
|
64
|
-
readonly Q1: "Q1";
|
|
65
|
-
/**
|
|
66
|
-
* Q3
|
|
67
|
-
*/
|
|
68
|
-
readonly Q3: "Q3";
|
|
69
|
-
/**
|
|
70
|
-
* RMS
|
|
71
|
-
*/
|
|
72
|
-
readonly RMS: "RMS";
|
|
73
|
-
/**
|
|
74
|
-
* SUM
|
|
75
|
-
*/
|
|
76
|
-
readonly SUM: "SUM";
|
|
77
|
-
};
|
|
78
|
-
/**
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
export type AlgorithmNameGeoMosaic = (typeof AlgorithmNameGeoMosaic)[keyof typeof AlgorithmNameGeoMosaic];
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
* @enum
|
|
85
|
-
*/
|
|
86
|
-
export declare const AlgorithmNameResampling: {
|
|
87
|
-
/**
|
|
88
|
-
* AVERAGE
|
|
89
|
-
*/
|
|
90
|
-
readonly AVERAGE: "AVERAGE";
|
|
91
|
-
/**
|
|
92
|
-
* BILINEAR
|
|
93
|
-
*/
|
|
94
|
-
readonly BILINEAR: "BILINEAR";
|
|
95
|
-
/**
|
|
96
|
-
* CUBIC
|
|
97
|
-
*/
|
|
98
|
-
readonly CUBIC: "CUBIC";
|
|
99
|
-
/**
|
|
100
|
-
* CUBICSPLINE
|
|
101
|
-
*/
|
|
102
|
-
readonly CUBICSPLINE: "CUBICSPLINE";
|
|
103
|
-
/**
|
|
104
|
-
* LANCZOS
|
|
105
|
-
*/
|
|
106
|
-
readonly LANCZOS: "LANCZOS";
|
|
107
|
-
/**
|
|
108
|
-
* MAX
|
|
109
|
-
*/
|
|
110
|
-
readonly MAX: "MAX";
|
|
111
|
-
/**
|
|
112
|
-
* MED
|
|
113
|
-
*/
|
|
114
|
-
readonly MED: "MED";
|
|
115
|
-
/**
|
|
116
|
-
* MIN
|
|
117
|
-
*/
|
|
118
|
-
readonly MIN: "MIN";
|
|
119
|
-
/**
|
|
120
|
-
* MODE
|
|
121
|
-
*/
|
|
122
|
-
readonly MODE: "MODE";
|
|
123
|
-
/**
|
|
124
|
-
* NEAR
|
|
125
|
-
*/
|
|
126
|
-
readonly NEAR: "NEAR";
|
|
127
|
-
/**
|
|
128
|
-
* Q1
|
|
129
|
-
*/
|
|
130
|
-
readonly Q1: "Q1";
|
|
131
|
-
/**
|
|
132
|
-
* Q3
|
|
133
|
-
*/
|
|
134
|
-
readonly Q3: "Q3";
|
|
135
|
-
/**
|
|
136
|
-
* RMS
|
|
137
|
-
*/
|
|
138
|
-
readonly RMS: "RMS";
|
|
139
|
-
/**
|
|
140
|
-
* SUM
|
|
141
|
-
*/
|
|
142
|
-
readonly SUM: "SUM";
|
|
143
|
-
};
|
|
144
|
-
/**
|
|
145
|
-
* @public
|
|
146
|
-
*/
|
|
147
|
-
export type AlgorithmNameResampling = (typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
|
|
2
|
+
import { AlgorithmNameCloudRemoval, AlgorithmNameGeoMosaic, AlgorithmNameResampling, ComparisonOperator, DataCollectionType, EarthObservationJobErrorType, EarthObservationJobExportStatus, EarthObservationJobStatus, ExportErrorType, GroupBy, LogicalOperator, OutputType, PredefinedResolution, SortOrder, TargetOptions, TemporalStatistics, Unit, VectorEnrichmentJobDocumentType, VectorEnrichmentJobErrorType, VectorEnrichmentJobExportErrorType, VectorEnrichmentJobExportStatus, VectorEnrichmentJobStatus, VectorEnrichmentJobType, ZonalStatistics } from "./enums";
|
|
148
3
|
/**
|
|
149
4
|
* <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>
|
|
150
5
|
* @public
|
|
@@ -256,36 +111,6 @@ export interface AssetValue {
|
|
|
256
111
|
*/
|
|
257
112
|
Href?: string | undefined;
|
|
258
113
|
}
|
|
259
|
-
/**
|
|
260
|
-
* @public
|
|
261
|
-
* @enum
|
|
262
|
-
*/
|
|
263
|
-
export declare const OutputType: {
|
|
264
|
-
/**
|
|
265
|
-
* FLOAT32
|
|
266
|
-
*/
|
|
267
|
-
readonly FLOAT32: "FLOAT32";
|
|
268
|
-
/**
|
|
269
|
-
* FLOAT64
|
|
270
|
-
*/
|
|
271
|
-
readonly FLOAT64: "FLOAT64";
|
|
272
|
-
/**
|
|
273
|
-
* INT16
|
|
274
|
-
*/
|
|
275
|
-
readonly INT16: "INT16";
|
|
276
|
-
/**
|
|
277
|
-
* INT32
|
|
278
|
-
*/
|
|
279
|
-
readonly INT32: "INT32";
|
|
280
|
-
/**
|
|
281
|
-
* UINT16
|
|
282
|
-
*/
|
|
283
|
-
readonly UINT16: "UINT16";
|
|
284
|
-
};
|
|
285
|
-
/**
|
|
286
|
-
* @public
|
|
287
|
-
*/
|
|
288
|
-
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
289
114
|
/**
|
|
290
115
|
* <p>Represents an arithmetic operation to compute spectral index.</p>
|
|
291
116
|
* @public
|
|
@@ -364,28 +189,6 @@ export interface CloudRemovalConfigInput {
|
|
|
364
189
|
*/
|
|
365
190
|
TargetBands?: string[] | undefined;
|
|
366
191
|
}
|
|
367
|
-
/**
|
|
368
|
-
* @public
|
|
369
|
-
* @enum
|
|
370
|
-
*/
|
|
371
|
-
export declare const ComparisonOperator: {
|
|
372
|
-
/**
|
|
373
|
-
* EQUALS
|
|
374
|
-
*/
|
|
375
|
-
readonly EQUALS: "EQUALS";
|
|
376
|
-
/**
|
|
377
|
-
* NOT_EQUALS
|
|
378
|
-
*/
|
|
379
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
380
|
-
/**
|
|
381
|
-
* STARTS_WITH
|
|
382
|
-
*/
|
|
383
|
-
readonly STARTS_WITH: "STARTS_WITH";
|
|
384
|
-
};
|
|
385
|
-
/**
|
|
386
|
-
* @public
|
|
387
|
-
*/
|
|
388
|
-
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
389
192
|
/**
|
|
390
193
|
* <p>The structure representing the filters supported by a RasterDataCollection.</p>
|
|
391
194
|
* @public
|
|
@@ -412,28 +215,6 @@ export interface Filter {
|
|
|
412
215
|
*/
|
|
413
216
|
Maximum?: number | undefined;
|
|
414
217
|
}
|
|
415
|
-
/**
|
|
416
|
-
* @public
|
|
417
|
-
* @enum
|
|
418
|
-
*/
|
|
419
|
-
export declare const DataCollectionType: {
|
|
420
|
-
/**
|
|
421
|
-
* PREMIUM
|
|
422
|
-
*/
|
|
423
|
-
readonly PREMIUM: "PREMIUM";
|
|
424
|
-
/**
|
|
425
|
-
* PUBLIC
|
|
426
|
-
*/
|
|
427
|
-
readonly PUBLIC: "PUBLIC";
|
|
428
|
-
/**
|
|
429
|
-
* USER
|
|
430
|
-
*/
|
|
431
|
-
readonly USER: "USER";
|
|
432
|
-
};
|
|
433
|
-
/**
|
|
434
|
-
* @public
|
|
435
|
-
*/
|
|
436
|
-
export type DataCollectionType = (typeof DataCollectionType)[keyof typeof DataCollectionType];
|
|
437
218
|
/**
|
|
438
219
|
* <p>Response object containing details for a specific RasterDataCollection.</p>
|
|
439
220
|
* @public
|
|
@@ -562,28 +343,6 @@ export interface ExportEarthObservationJobInput {
|
|
|
562
343
|
*/
|
|
563
344
|
ExportSourceImages?: boolean | undefined;
|
|
564
345
|
}
|
|
565
|
-
/**
|
|
566
|
-
* @public
|
|
567
|
-
* @enum
|
|
568
|
-
*/
|
|
569
|
-
export declare const EarthObservationJobExportStatus: {
|
|
570
|
-
/**
|
|
571
|
-
* FAILED
|
|
572
|
-
*/
|
|
573
|
-
readonly FAILED: "FAILED";
|
|
574
|
-
/**
|
|
575
|
-
* IN_PROGRESS
|
|
576
|
-
*/
|
|
577
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
578
|
-
/**
|
|
579
|
-
* SUCCEEDED
|
|
580
|
-
*/
|
|
581
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
582
|
-
};
|
|
583
|
-
/**
|
|
584
|
-
* @public
|
|
585
|
-
*/
|
|
586
|
-
export type EarthObservationJobExportStatus = (typeof EarthObservationJobExportStatus)[keyof typeof EarthObservationJobExportStatus];
|
|
587
346
|
/**
|
|
588
347
|
* @public
|
|
589
348
|
*/
|
|
@@ -629,24 +388,6 @@ export interface GetEarthObservationJobInput {
|
|
|
629
388
|
*/
|
|
630
389
|
Arn: string | undefined;
|
|
631
390
|
}
|
|
632
|
-
/**
|
|
633
|
-
* @public
|
|
634
|
-
* @enum
|
|
635
|
-
*/
|
|
636
|
-
export declare const EarthObservationJobErrorType: {
|
|
637
|
-
/**
|
|
638
|
-
* CLIENT_ERROR
|
|
639
|
-
*/
|
|
640
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
641
|
-
/**
|
|
642
|
-
* SERVER_ERROR
|
|
643
|
-
*/
|
|
644
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
645
|
-
};
|
|
646
|
-
/**
|
|
647
|
-
* @public
|
|
648
|
-
*/
|
|
649
|
-
export type EarthObservationJobErrorType = (typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
650
391
|
/**
|
|
651
392
|
* <p>The structure representing the errors in an EarthObservationJob.</p>
|
|
652
393
|
* @public
|
|
@@ -663,24 +404,6 @@ export interface EarthObservationJobErrorDetails {
|
|
|
663
404
|
*/
|
|
664
405
|
Message?: string | undefined;
|
|
665
406
|
}
|
|
666
|
-
/**
|
|
667
|
-
* @public
|
|
668
|
-
* @enum
|
|
669
|
-
*/
|
|
670
|
-
export declare const ExportErrorType: {
|
|
671
|
-
/**
|
|
672
|
-
* CLIENT_ERROR
|
|
673
|
-
*/
|
|
674
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
675
|
-
/**
|
|
676
|
-
* SERVER_ERROR
|
|
677
|
-
*/
|
|
678
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
679
|
-
};
|
|
680
|
-
/**
|
|
681
|
-
* @public
|
|
682
|
-
*/
|
|
683
|
-
export type ExportErrorType = (typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
684
407
|
/**
|
|
685
408
|
* <p>The structure representing the errors in an export EarthObservationJob operation.</p>
|
|
686
409
|
* @public
|
|
@@ -714,20 +437,6 @@ export interface ExportErrorDetails {
|
|
|
714
437
|
*/
|
|
715
438
|
ExportSourceImages?: ExportErrorDetailsOutput | undefined;
|
|
716
439
|
}
|
|
717
|
-
/**
|
|
718
|
-
* @public
|
|
719
|
-
* @enum
|
|
720
|
-
*/
|
|
721
|
-
export declare const LogicalOperator: {
|
|
722
|
-
/**
|
|
723
|
-
* AND
|
|
724
|
-
*/
|
|
725
|
-
readonly AND: "AND";
|
|
726
|
-
};
|
|
727
|
-
/**
|
|
728
|
-
* @public
|
|
729
|
-
*/
|
|
730
|
-
export type LogicalOperator = (typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
731
440
|
/**
|
|
732
441
|
* <p>The structure representing the EoCloudCover filter.</p>
|
|
733
442
|
* @public
|
|
@@ -1066,20 +775,6 @@ export interface GeoMosaicConfigInput {
|
|
|
1066
775
|
*/
|
|
1067
776
|
export interface LandCoverSegmentationConfigInput {
|
|
1068
777
|
}
|
|
1069
|
-
/**
|
|
1070
|
-
* @public
|
|
1071
|
-
* @enum
|
|
1072
|
-
*/
|
|
1073
|
-
export declare const Unit: {
|
|
1074
|
-
/**
|
|
1075
|
-
* METERS
|
|
1076
|
-
*/
|
|
1077
|
-
readonly METERS: "METERS";
|
|
1078
|
-
};
|
|
1079
|
-
/**
|
|
1080
|
-
* @public
|
|
1081
|
-
*/
|
|
1082
|
-
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
1083
778
|
/**
|
|
1084
779
|
* <p>The output resolution (in target georeferenced units)
|
|
1085
780
|
* of the result of the operation</p>
|
|
@@ -1132,28 +827,6 @@ export interface ResamplingConfigInput {
|
|
|
1132
827
|
*/
|
|
1133
828
|
TargetBands?: string[] | undefined;
|
|
1134
829
|
}
|
|
1135
|
-
/**
|
|
1136
|
-
* @public
|
|
1137
|
-
* @enum
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const PredefinedResolution: {
|
|
1140
|
-
/**
|
|
1141
|
-
* AVERAGE
|
|
1142
|
-
*/
|
|
1143
|
-
readonly AVERAGE: "AVERAGE";
|
|
1144
|
-
/**
|
|
1145
|
-
* HIGHEST
|
|
1146
|
-
*/
|
|
1147
|
-
readonly HIGHEST: "HIGHEST";
|
|
1148
|
-
/**
|
|
1149
|
-
* LOWEST
|
|
1150
|
-
*/
|
|
1151
|
-
readonly LOWEST: "LOWEST";
|
|
1152
|
-
};
|
|
1153
|
-
/**
|
|
1154
|
-
* @public
|
|
1155
|
-
*/
|
|
1156
|
-
export type PredefinedResolution = (typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
1157
830
|
/**
|
|
1158
831
|
* <p>The input structure representing Output Resolution for Stacking Operation.</p>
|
|
1159
832
|
* @public
|
|
@@ -1188,46 +861,6 @@ export interface StackConfigInput {
|
|
|
1188
861
|
*/
|
|
1189
862
|
TargetBands?: string[] | undefined;
|
|
1190
863
|
}
|
|
1191
|
-
/**
|
|
1192
|
-
* @public
|
|
1193
|
-
* @enum
|
|
1194
|
-
*/
|
|
1195
|
-
export declare const GroupBy: {
|
|
1196
|
-
/**
|
|
1197
|
-
* ALL
|
|
1198
|
-
*/
|
|
1199
|
-
readonly ALL: "ALL";
|
|
1200
|
-
/**
|
|
1201
|
-
* YEARLY
|
|
1202
|
-
*/
|
|
1203
|
-
readonly YEARLY: "YEARLY";
|
|
1204
|
-
};
|
|
1205
|
-
/**
|
|
1206
|
-
* @public
|
|
1207
|
-
*/
|
|
1208
|
-
export type GroupBy = (typeof GroupBy)[keyof typeof GroupBy];
|
|
1209
|
-
/**
|
|
1210
|
-
* @public
|
|
1211
|
-
* @enum
|
|
1212
|
-
*/
|
|
1213
|
-
export declare const TemporalStatistics: {
|
|
1214
|
-
/**
|
|
1215
|
-
* MEAN
|
|
1216
|
-
*/
|
|
1217
|
-
readonly MEAN: "MEAN";
|
|
1218
|
-
/**
|
|
1219
|
-
* MEDIAN
|
|
1220
|
-
*/
|
|
1221
|
-
readonly MEDIAN: "MEDIAN";
|
|
1222
|
-
/**
|
|
1223
|
-
* STANDARD_DEVIATION
|
|
1224
|
-
*/
|
|
1225
|
-
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
1226
|
-
};
|
|
1227
|
-
/**
|
|
1228
|
-
* @public
|
|
1229
|
-
*/
|
|
1230
|
-
export type TemporalStatistics = (typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
1231
864
|
/**
|
|
1232
865
|
* <p>The structure representing the configuration for Temporal Statistics operation.</p>
|
|
1233
866
|
* @public
|
|
@@ -1249,40 +882,6 @@ export interface TemporalStatisticsConfigInput {
|
|
|
1249
882
|
*/
|
|
1250
883
|
TargetBands?: string[] | undefined;
|
|
1251
884
|
}
|
|
1252
|
-
/**
|
|
1253
|
-
* @public
|
|
1254
|
-
* @enum
|
|
1255
|
-
*/
|
|
1256
|
-
export declare const ZonalStatistics: {
|
|
1257
|
-
/**
|
|
1258
|
-
* MAX
|
|
1259
|
-
*/
|
|
1260
|
-
readonly MAX: "MAX";
|
|
1261
|
-
/**
|
|
1262
|
-
* MEAN
|
|
1263
|
-
*/
|
|
1264
|
-
readonly MEAN: "MEAN";
|
|
1265
|
-
/**
|
|
1266
|
-
* MEDIAN
|
|
1267
|
-
*/
|
|
1268
|
-
readonly MEDIAN: "MEDIAN";
|
|
1269
|
-
/**
|
|
1270
|
-
* MIN
|
|
1271
|
-
*/
|
|
1272
|
-
readonly MIN: "MIN";
|
|
1273
|
-
/**
|
|
1274
|
-
* STANDARD_DEVIATION
|
|
1275
|
-
*/
|
|
1276
|
-
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
1277
|
-
/**
|
|
1278
|
-
* SUM
|
|
1279
|
-
*/
|
|
1280
|
-
readonly SUM: "SUM";
|
|
1281
|
-
};
|
|
1282
|
-
/**
|
|
1283
|
-
* @public
|
|
1284
|
-
*/
|
|
1285
|
-
export type ZonalStatistics = (typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
1286
885
|
/**
|
|
1287
886
|
* <p>The structure representing input configuration of ZonalStatistics operation.</p>
|
|
1288
887
|
* @public
|
|
@@ -1530,48 +1129,6 @@ export interface OutputBand {
|
|
|
1530
1129
|
*/
|
|
1531
1130
|
OutputDataType: OutputType | undefined;
|
|
1532
1131
|
}
|
|
1533
|
-
/**
|
|
1534
|
-
* @public
|
|
1535
|
-
* @enum
|
|
1536
|
-
*/
|
|
1537
|
-
export declare const EarthObservationJobStatus: {
|
|
1538
|
-
/**
|
|
1539
|
-
* COMPLETED
|
|
1540
|
-
*/
|
|
1541
|
-
readonly COMPLETED: "COMPLETED";
|
|
1542
|
-
/**
|
|
1543
|
-
* DELETED
|
|
1544
|
-
*/
|
|
1545
|
-
readonly DELETED: "DELETED";
|
|
1546
|
-
/**
|
|
1547
|
-
* DELETING
|
|
1548
|
-
*/
|
|
1549
|
-
readonly DELETING: "DELETING";
|
|
1550
|
-
/**
|
|
1551
|
-
* FAILED
|
|
1552
|
-
*/
|
|
1553
|
-
readonly FAILED: "FAILED";
|
|
1554
|
-
/**
|
|
1555
|
-
* INITIALIZING
|
|
1556
|
-
*/
|
|
1557
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
1558
|
-
/**
|
|
1559
|
-
* IN_PROGRESS
|
|
1560
|
-
*/
|
|
1561
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1562
|
-
/**
|
|
1563
|
-
* STOPPED
|
|
1564
|
-
*/
|
|
1565
|
-
readonly STOPPED: "STOPPED";
|
|
1566
|
-
/**
|
|
1567
|
-
* STOPPING
|
|
1568
|
-
*/
|
|
1569
|
-
readonly STOPPING: "STOPPING";
|
|
1570
|
-
};
|
|
1571
|
-
/**
|
|
1572
|
-
* @public
|
|
1573
|
-
*/
|
|
1574
|
-
export type EarthObservationJobStatus = (typeof EarthObservationJobStatus)[keyof typeof EarthObservationJobStatus];
|
|
1575
1132
|
/**
|
|
1576
1133
|
* @public
|
|
1577
1134
|
*/
|
|
@@ -1647,24 +1204,6 @@ export interface GetEarthObservationJobOutput {
|
|
|
1647
1204
|
*/
|
|
1648
1205
|
Tags?: Record<string, string> | undefined;
|
|
1649
1206
|
}
|
|
1650
|
-
/**
|
|
1651
|
-
* @public
|
|
1652
|
-
* @enum
|
|
1653
|
-
*/
|
|
1654
|
-
export declare const TargetOptions: {
|
|
1655
|
-
/**
|
|
1656
|
-
* INPUT
|
|
1657
|
-
*/
|
|
1658
|
-
readonly INPUT: "INPUT";
|
|
1659
|
-
/**
|
|
1660
|
-
* OUTPUT
|
|
1661
|
-
*/
|
|
1662
|
-
readonly OUTPUT: "OUTPUT";
|
|
1663
|
-
};
|
|
1664
|
-
/**
|
|
1665
|
-
* @public
|
|
1666
|
-
*/
|
|
1667
|
-
export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
|
|
1668
1207
|
/**
|
|
1669
1208
|
* @public
|
|
1670
1209
|
*/
|
|
@@ -1740,24 +1279,6 @@ export interface GetTileOutput {
|
|
|
1740
1279
|
*/
|
|
1741
1280
|
BinaryFile?: StreamingBlobTypes | undefined;
|
|
1742
1281
|
}
|
|
1743
|
-
/**
|
|
1744
|
-
* @public
|
|
1745
|
-
* @enum
|
|
1746
|
-
*/
|
|
1747
|
-
export declare const SortOrder: {
|
|
1748
|
-
/**
|
|
1749
|
-
* ASCENDING
|
|
1750
|
-
*/
|
|
1751
|
-
readonly ASCENDING: "ASCENDING";
|
|
1752
|
-
/**
|
|
1753
|
-
* DESCENDING
|
|
1754
|
-
*/
|
|
1755
|
-
readonly DESCENDING: "DESCENDING";
|
|
1756
|
-
};
|
|
1757
|
-
/**
|
|
1758
|
-
* @public
|
|
1759
|
-
*/
|
|
1760
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1761
1282
|
/**
|
|
1762
1283
|
* @public
|
|
1763
1284
|
*/
|
|
@@ -2068,19 +1589,6 @@ export interface ExportVectorEnrichmentJobInput {
|
|
|
2068
1589
|
*/
|
|
2069
1590
|
OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
|
|
2070
1591
|
}
|
|
2071
|
-
/**
|
|
2072
|
-
* @public
|
|
2073
|
-
* @enum
|
|
2074
|
-
*/
|
|
2075
|
-
export declare const VectorEnrichmentJobExportStatus: {
|
|
2076
|
-
readonly FAILED: "FAILED";
|
|
2077
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2078
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
2079
|
-
};
|
|
2080
|
-
/**
|
|
2081
|
-
* @public
|
|
2082
|
-
*/
|
|
2083
|
-
export type VectorEnrichmentJobExportStatus = (typeof VectorEnrichmentJobExportStatus)[keyof typeof VectorEnrichmentJobExportStatus];
|
|
2084
1592
|
/**
|
|
2085
1593
|
* @public
|
|
2086
1594
|
*/
|
|
@@ -2194,24 +1702,6 @@ export interface GetVectorEnrichmentJobInput {
|
|
|
2194
1702
|
*/
|
|
2195
1703
|
Arn: string | undefined;
|
|
2196
1704
|
}
|
|
2197
|
-
/**
|
|
2198
|
-
* @public
|
|
2199
|
-
* @enum
|
|
2200
|
-
*/
|
|
2201
|
-
export declare const VectorEnrichmentJobErrorType: {
|
|
2202
|
-
/**
|
|
2203
|
-
* CLIENT_ERROR
|
|
2204
|
-
*/
|
|
2205
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
2206
|
-
/**
|
|
2207
|
-
* SERVER_ERROR
|
|
2208
|
-
*/
|
|
2209
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
2210
|
-
};
|
|
2211
|
-
/**
|
|
2212
|
-
* @public
|
|
2213
|
-
*/
|
|
2214
|
-
export type VectorEnrichmentJobErrorType = (typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
2215
1705
|
/**
|
|
2216
1706
|
* <p>VectorEnrichmentJob error details in response from GetVectorEnrichmentJob.</p>
|
|
2217
1707
|
* @public
|
|
@@ -2229,18 +1719,6 @@ export interface VectorEnrichmentJobErrorDetails {
|
|
|
2229
1719
|
*/
|
|
2230
1720
|
ErrorMessage?: string | undefined;
|
|
2231
1721
|
}
|
|
2232
|
-
/**
|
|
2233
|
-
* @public
|
|
2234
|
-
* @enum
|
|
2235
|
-
*/
|
|
2236
|
-
export declare const VectorEnrichmentJobExportErrorType: {
|
|
2237
|
-
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
2238
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
2239
|
-
};
|
|
2240
|
-
/**
|
|
2241
|
-
* @public
|
|
2242
|
-
*/
|
|
2243
|
-
export type VectorEnrichmentJobExportErrorType = (typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
2244
1722
|
/**
|
|
2245
1723
|
* <p>VectorEnrichmentJob export error details in response from GetVectorEnrichmentJob.</p>
|
|
2246
1724
|
* @public
|
|
@@ -2290,17 +1768,6 @@ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
|
|
|
2290
1768
|
_: (name: string, value: any) => T;
|
|
2291
1769
|
}
|
|
2292
1770
|
}
|
|
2293
|
-
/**
|
|
2294
|
-
* @public
|
|
2295
|
-
* @enum
|
|
2296
|
-
*/
|
|
2297
|
-
export declare const VectorEnrichmentJobDocumentType: {
|
|
2298
|
-
readonly CSV: "CSV";
|
|
2299
|
-
};
|
|
2300
|
-
/**
|
|
2301
|
-
* @public
|
|
2302
|
-
*/
|
|
2303
|
-
export type VectorEnrichmentJobDocumentType = (typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
2304
1771
|
/**
|
|
2305
1772
|
* <p>The input structure for the InputConfig in a VectorEnrichmentJob.</p>
|
|
2306
1773
|
* @public
|
|
@@ -2404,36 +1871,6 @@ export declare namespace VectorEnrichmentJobConfig {
|
|
|
2404
1871
|
_: (name: string, value: any) => T;
|
|
2405
1872
|
}
|
|
2406
1873
|
}
|
|
2407
|
-
/**
|
|
2408
|
-
* @public
|
|
2409
|
-
* @enum
|
|
2410
|
-
*/
|
|
2411
|
-
export declare const VectorEnrichmentJobStatus: {
|
|
2412
|
-
readonly COMPLETED: "COMPLETED";
|
|
2413
|
-
readonly DELETED: "DELETED";
|
|
2414
|
-
readonly DELETING: "DELETING";
|
|
2415
|
-
readonly FAILED: "FAILED";
|
|
2416
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
2417
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2418
|
-
readonly STOPPED: "STOPPED";
|
|
2419
|
-
readonly STOPPING: "STOPPING";
|
|
2420
|
-
};
|
|
2421
|
-
/**
|
|
2422
|
-
* @public
|
|
2423
|
-
*/
|
|
2424
|
-
export type VectorEnrichmentJobStatus = (typeof VectorEnrichmentJobStatus)[keyof typeof VectorEnrichmentJobStatus];
|
|
2425
|
-
/**
|
|
2426
|
-
* @public
|
|
2427
|
-
* @enum
|
|
2428
|
-
*/
|
|
2429
|
-
export declare const VectorEnrichmentJobType: {
|
|
2430
|
-
readonly MAP_MATCHING: "MAP_MATCHING";
|
|
2431
|
-
readonly REVERSE_GEOCODING: "REVERSE_GEOCODING";
|
|
2432
|
-
};
|
|
2433
|
-
/**
|
|
2434
|
-
* @public
|
|
2435
|
-
*/
|
|
2436
|
-
export type VectorEnrichmentJobType = (typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
2437
1874
|
/**
|
|
2438
1875
|
* @public
|
|
2439
1876
|
*/
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SageMakerGeospatialExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { SageMakerGeospatialServiceException } from "./models/SageMakerGeospatialServiceException";
|