@aws-sdk/client-sagemaker-geospatial 3.428.0 → 3.429.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.
|
@@ -314,7 +314,7 @@ export interface Operation {
|
|
|
314
314
|
* @public
|
|
315
315
|
* <p>The type of the operation.</p>
|
|
316
316
|
*/
|
|
317
|
-
OutputType?: OutputType
|
|
317
|
+
OutputType?: OutputType;
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
320
|
* @public
|
|
@@ -361,7 +361,7 @@ export interface CloudRemovalConfigInput {
|
|
|
361
361
|
* @public
|
|
362
362
|
* <p>The name of the algorithm used for cloud removal.</p>
|
|
363
363
|
*/
|
|
364
|
-
AlgorithmName?: AlgorithmNameCloudRemoval
|
|
364
|
+
AlgorithmName?: AlgorithmNameCloudRemoval;
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
367
367
|
* <p>The interpolation value you provide for cloud removal.</p>
|
|
@@ -480,7 +480,7 @@ export interface RasterDataCollectionMetadata {
|
|
|
480
480
|
* @public
|
|
481
481
|
* <p>The type of raster data collection.</p>
|
|
482
482
|
*/
|
|
483
|
-
Type: DataCollectionType |
|
|
483
|
+
Type: DataCollectionType | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* @public
|
|
486
486
|
* <p>A description of the raster data collection.</p>
|
|
@@ -701,7 +701,7 @@ export interface ExportEarthObservationJobOutput {
|
|
|
701
701
|
* @public
|
|
702
702
|
* <p>The status of the results of the Earth Observation job being exported.</p>
|
|
703
703
|
*/
|
|
704
|
-
ExportStatus: EarthObservationJobExportStatus |
|
|
704
|
+
ExportStatus: EarthObservationJobExportStatus | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* @public
|
|
707
707
|
* <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
|
|
@@ -773,7 +773,7 @@ export interface EarthObservationJobErrorDetails {
|
|
|
773
773
|
* @public
|
|
774
774
|
* <p>The type of error in an Earth Observation job.</p>
|
|
775
775
|
*/
|
|
776
|
-
Type?: EarthObservationJobErrorType
|
|
776
|
+
Type?: EarthObservationJobErrorType;
|
|
777
777
|
/**
|
|
778
778
|
* @public
|
|
779
779
|
* <p>A detailed message describing the error in an Earth Observation job.</p>
|
|
@@ -807,7 +807,7 @@ export interface ExportErrorDetailsOutput {
|
|
|
807
807
|
* @public
|
|
808
808
|
* <p>The type of error in an export EarthObservationJob operation.</p>
|
|
809
809
|
*/
|
|
810
|
-
Type?: ExportErrorType
|
|
810
|
+
Type?: ExportErrorType;
|
|
811
811
|
/**
|
|
812
812
|
* @public
|
|
813
813
|
* <p>A detailed message describing the error in an export EarthObservationJob operation.</p>
|
|
@@ -895,7 +895,7 @@ export interface PlatformInput {
|
|
|
895
895
|
* @public
|
|
896
896
|
* <p>The ComparisonOperator to use with PlatformInput.</p>
|
|
897
897
|
*/
|
|
898
|
-
ComparisonOperator?: ComparisonOperator
|
|
898
|
+
ComparisonOperator?: ComparisonOperator;
|
|
899
899
|
}
|
|
900
900
|
/**
|
|
901
901
|
* @public
|
|
@@ -1091,7 +1091,7 @@ export interface PropertyFilters {
|
|
|
1091
1091
|
* @public
|
|
1092
1092
|
* <p>The Logical Operator used to combine the Property Filters.</p>
|
|
1093
1093
|
*/
|
|
1094
|
-
LogicalOperator?: LogicalOperator
|
|
1094
|
+
LogicalOperator?: LogicalOperator;
|
|
1095
1095
|
}
|
|
1096
1096
|
/**
|
|
1097
1097
|
* @public
|
|
@@ -1167,7 +1167,7 @@ export interface GeoMosaicConfigInput {
|
|
|
1167
1167
|
* @public
|
|
1168
1168
|
* <p>The name of the algorithm being used for geomosaic.</p>
|
|
1169
1169
|
*/
|
|
1170
|
-
AlgorithmName?: AlgorithmNameGeoMosaic
|
|
1170
|
+
AlgorithmName?: AlgorithmNameGeoMosaic;
|
|
1171
1171
|
/**
|
|
1172
1172
|
* @public
|
|
1173
1173
|
* <p>The target bands for geomosaic.</p>
|
|
@@ -1209,7 +1209,7 @@ export interface UserDefined {
|
|
|
1209
1209
|
* @public
|
|
1210
1210
|
* <p>The units for output resolution of the result.</p>
|
|
1211
1211
|
*/
|
|
1212
|
-
Unit: Unit |
|
|
1212
|
+
Unit: Unit | undefined;
|
|
1213
1213
|
}
|
|
1214
1214
|
/**
|
|
1215
1215
|
* @public
|
|
@@ -1239,7 +1239,7 @@ export interface ResamplingConfigInput {
|
|
|
1239
1239
|
* @public
|
|
1240
1240
|
* <p>The name of the algorithm used for resampling.</p>
|
|
1241
1241
|
*/
|
|
1242
|
-
AlgorithmName?: AlgorithmNameResampling
|
|
1242
|
+
AlgorithmName?: AlgorithmNameResampling;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* @public
|
|
1245
1245
|
* <p>Bands used in the operation. If no target bands are specified, it uses all bands available in the input.</p>
|
|
@@ -1277,7 +1277,7 @@ export interface OutputResolutionStackInput {
|
|
|
1277
1277
|
* @public
|
|
1278
1278
|
* <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>
|
|
1279
1279
|
*/
|
|
1280
|
-
Predefined?: PredefinedResolution
|
|
1280
|
+
Predefined?: PredefinedResolution;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* @public
|
|
1283
1283
|
* <p>The structure representing User Output Resolution for a Stacking operation defined as a value and unit.</p>
|
|
@@ -1351,12 +1351,12 @@ export interface TemporalStatisticsConfigInput {
|
|
|
1351
1351
|
* @public
|
|
1352
1352
|
* <p>The input for the temporal statistics grouping by time frequency option.</p>
|
|
1353
1353
|
*/
|
|
1354
|
-
GroupBy?: GroupBy
|
|
1354
|
+
GroupBy?: GroupBy;
|
|
1355
1355
|
/**
|
|
1356
1356
|
* @public
|
|
1357
1357
|
* <p>The list of the statistics method options.</p>
|
|
1358
1358
|
*/
|
|
1359
|
-
Statistics:
|
|
1359
|
+
Statistics: TemporalStatistics[] | undefined;
|
|
1360
1360
|
/**
|
|
1361
1361
|
* @public
|
|
1362
1362
|
* <p>The list of target band names for the temporal statistic to calculate.</p>
|
|
@@ -1411,7 +1411,7 @@ export interface ZonalStatisticsConfigInput {
|
|
|
1411
1411
|
* @public
|
|
1412
1412
|
* <p>List of zonal statistics to compute.</p>
|
|
1413
1413
|
*/
|
|
1414
|
-
Statistics:
|
|
1414
|
+
Statistics: ZonalStatistics[] | undefined;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* @public
|
|
1417
1417
|
* <p>Bands used in the operation.
|
|
@@ -1639,7 +1639,7 @@ export interface OutputBand {
|
|
|
1639
1639
|
* @public
|
|
1640
1640
|
* <p>The datatype of the output band.</p>
|
|
1641
1641
|
*/
|
|
1642
|
-
OutputDataType: OutputType |
|
|
1642
|
+
OutputDataType: OutputType | undefined;
|
|
1643
1643
|
}
|
|
1644
1644
|
/**
|
|
1645
1645
|
* @public
|
|
@@ -1711,7 +1711,7 @@ export interface GetEarthObservationJobOutput {
|
|
|
1711
1711
|
* @public
|
|
1712
1712
|
* <p>The status of a previously initiated Earth Observation job.</p>
|
|
1713
1713
|
*/
|
|
1714
|
-
Status: EarthObservationJobStatus |
|
|
1714
|
+
Status: EarthObservationJobStatus | undefined;
|
|
1715
1715
|
/**
|
|
1716
1716
|
* @public
|
|
1717
1717
|
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
@@ -1746,7 +1746,7 @@ export interface GetEarthObservationJobOutput {
|
|
|
1746
1746
|
* @public
|
|
1747
1747
|
* <p>The status of the Earth Observation job.</p>
|
|
1748
1748
|
*/
|
|
1749
|
-
ExportStatus?: EarthObservationJobExportStatus
|
|
1749
|
+
ExportStatus?: EarthObservationJobExportStatus;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* @public
|
|
1752
1752
|
* <p>Details about the errors generated during ExportEarthObservationJob.</p>
|
|
@@ -1804,7 +1804,7 @@ export interface GetTileInput {
|
|
|
1804
1804
|
* @public
|
|
1805
1805
|
* <p>Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.</p>
|
|
1806
1806
|
*/
|
|
1807
|
-
Target: TargetOptions |
|
|
1807
|
+
Target: TargetOptions | undefined;
|
|
1808
1808
|
/**
|
|
1809
1809
|
* @public
|
|
1810
1810
|
* <p>The Amazon Resource Name (ARN) of the tile operation.</p>
|
|
@@ -1834,7 +1834,7 @@ export interface GetTileInput {
|
|
|
1834
1834
|
* @public
|
|
1835
1835
|
* <p>The output data type of the tile operation.</p>
|
|
1836
1836
|
*/
|
|
1837
|
-
OutputDataType?: OutputType
|
|
1837
|
+
OutputDataType?: OutputType;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* @public
|
|
1840
1840
|
* <p>The Amazon Resource Name (ARN) of the IAM role that you specify.</p>
|
|
@@ -1877,12 +1877,12 @@ export interface ListEarthObservationJobInput {
|
|
|
1877
1877
|
* @public
|
|
1878
1878
|
* <p>A filter that retrieves only jobs with a specific status.</p>
|
|
1879
1879
|
*/
|
|
1880
|
-
StatusEquals?: EarthObservationJobStatus
|
|
1880
|
+
StatusEquals?: EarthObservationJobStatus;
|
|
1881
1881
|
/**
|
|
1882
1882
|
* @public
|
|
1883
1883
|
* <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
|
|
1884
1884
|
*/
|
|
1885
|
-
SortOrder?: SortOrder
|
|
1885
|
+
SortOrder?: SortOrder;
|
|
1886
1886
|
/**
|
|
1887
1887
|
* @public
|
|
1888
1888
|
* <p>The parameter by which to sort the results.</p>
|
|
@@ -1929,7 +1929,7 @@ export interface ListEarthObservationJobOutputConfig {
|
|
|
1929
1929
|
* @public
|
|
1930
1930
|
* <p>The status of the list of the Earth Observation jobs.</p>
|
|
1931
1931
|
*/
|
|
1932
|
-
Status: EarthObservationJobStatus |
|
|
1932
|
+
Status: EarthObservationJobStatus | undefined;
|
|
1933
1933
|
/**
|
|
1934
1934
|
* @public
|
|
1935
1935
|
* <p>The operation type for an Earth Observation job.</p>
|
|
@@ -2084,7 +2084,7 @@ export interface StartEarthObservationJobOutput {
|
|
|
2084
2084
|
* @public
|
|
2085
2085
|
* <p>The status of the Earth Observation job.</p>
|
|
2086
2086
|
*/
|
|
2087
|
-
Status: EarthObservationJobStatus |
|
|
2087
|
+
Status: EarthObservationJobStatus | undefined;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* @public
|
|
2090
2090
|
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
@@ -2215,7 +2215,7 @@ export interface ExportVectorEnrichmentJobOutput {
|
|
|
2215
2215
|
* @public
|
|
2216
2216
|
* <p>The status of the results the Vector Enrichment job being exported.</p>
|
|
2217
2217
|
*/
|
|
2218
|
-
ExportStatus: VectorEnrichmentJobExportStatus |
|
|
2218
|
+
ExportStatus: VectorEnrichmentJobExportStatus | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* @public
|
|
2221
2221
|
* <p>Output location information for exporting Vector Enrichment Job results.
|
|
@@ -2268,7 +2268,7 @@ export interface GetRasterDataCollectionOutput {
|
|
|
2268
2268
|
* @public
|
|
2269
2269
|
* <p>The raster data collection type.</p>
|
|
2270
2270
|
*/
|
|
2271
|
-
Type: DataCollectionType |
|
|
2271
|
+
Type: DataCollectionType | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* @public
|
|
2274
2274
|
* <p>A description of the raster data collection.</p>
|
|
@@ -2332,7 +2332,7 @@ export interface VectorEnrichmentJobErrorDetails {
|
|
|
2332
2332
|
* @public
|
|
2333
2333
|
* <p>The type of error generated during the Vector Enrichment job.</p>
|
|
2334
2334
|
*/
|
|
2335
|
-
ErrorType?: VectorEnrichmentJobErrorType
|
|
2335
|
+
ErrorType?: VectorEnrichmentJobErrorType;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* @public
|
|
2338
2338
|
* <p>A message that you define and then is processed and rendered by
|
|
@@ -2361,7 +2361,7 @@ export interface VectorEnrichmentJobExportErrorDetails {
|
|
|
2361
2361
|
* @public
|
|
2362
2362
|
* <p>The output error details for an Export operation on a Vector Enrichment job.</p>
|
|
2363
2363
|
*/
|
|
2364
|
-
Type?: VectorEnrichmentJobExportErrorType
|
|
2364
|
+
Type?: VectorEnrichmentJobExportErrorType;
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @public
|
|
2367
2367
|
* <p>The message providing details about the errors generated during the Vector Enrichment job.</p>
|
|
@@ -2418,7 +2418,7 @@ export interface VectorEnrichmentJobInputConfig {
|
|
|
2418
2418
|
* @public
|
|
2419
2419
|
* <p>The input structure that defines the data source file type.</p>
|
|
2420
2420
|
*/
|
|
2421
|
-
DocumentType: VectorEnrichmentJobDocumentType |
|
|
2421
|
+
DocumentType: VectorEnrichmentJobDocumentType | undefined;
|
|
2422
2422
|
/**
|
|
2423
2423
|
* @public
|
|
2424
2424
|
* <p>The input structure for the data source that represents the storage type of the input data objects.</p>
|
|
@@ -2552,7 +2552,7 @@ export interface GetVectorEnrichmentJobOutput {
|
|
|
2552
2552
|
* @public
|
|
2553
2553
|
* <p>The type of the Vector Enrichment job being initiated.</p>
|
|
2554
2554
|
*/
|
|
2555
|
-
Type: VectorEnrichmentJobType |
|
|
2555
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
2556
2556
|
/**
|
|
2557
2557
|
* @public
|
|
2558
2558
|
* <p>The name of the Vector Enrichment job.</p>
|
|
@@ -2572,7 +2572,7 @@ export interface GetVectorEnrichmentJobOutput {
|
|
|
2572
2572
|
* @public
|
|
2573
2573
|
* <p>The status of the initiated Vector Enrichment job.</p>
|
|
2574
2574
|
*/
|
|
2575
|
-
Status: VectorEnrichmentJobStatus |
|
|
2575
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* @public
|
|
2578
2578
|
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
@@ -2602,7 +2602,7 @@ export interface GetVectorEnrichmentJobOutput {
|
|
|
2602
2602
|
* @public
|
|
2603
2603
|
* <p>The export status of the Vector Enrichment job being initiated.</p>
|
|
2604
2604
|
*/
|
|
2605
|
-
ExportStatus?: VectorEnrichmentJobExportStatus
|
|
2605
|
+
ExportStatus?: VectorEnrichmentJobExportStatus;
|
|
2606
2606
|
/**
|
|
2607
2607
|
* @public
|
|
2608
2608
|
* <p>Details about the errors generated during the ExportVectorEnrichmentJob.</p>
|
|
@@ -2752,7 +2752,7 @@ export interface ListVectorEnrichmentJobInput {
|
|
|
2752
2752
|
* @public
|
|
2753
2753
|
* <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
|
|
2754
2754
|
*/
|
|
2755
|
-
SortOrder?: SortOrder
|
|
2755
|
+
SortOrder?: SortOrder;
|
|
2756
2756
|
/**
|
|
2757
2757
|
* @public
|
|
2758
2758
|
* <p>The parameter by which to sort the results.</p>
|
|
@@ -2789,7 +2789,7 @@ export interface ListVectorEnrichmentJobOutputConfig {
|
|
|
2789
2789
|
* @public
|
|
2790
2790
|
* <p>The type of the list of Vector Enrichment jobs.</p>
|
|
2791
2791
|
*/
|
|
2792
|
-
Type: VectorEnrichmentJobType |
|
|
2792
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
2795
2795
|
* <p>The creation time.</p>
|
|
@@ -2804,7 +2804,7 @@ export interface ListVectorEnrichmentJobOutputConfig {
|
|
|
2804
2804
|
* @public
|
|
2805
2805
|
* <p>The status of the Vector Enrichment jobs list. </p>
|
|
2806
2806
|
*/
|
|
2807
|
-
Status: VectorEnrichmentJobStatus |
|
|
2807
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
2808
2808
|
/**
|
|
2809
2809
|
* @public
|
|
2810
2810
|
* <p>Each tag consists of a key and a value.</p>
|
|
@@ -2994,7 +2994,7 @@ export interface StartVectorEnrichmentJobOutput {
|
|
|
2994
2994
|
* @public
|
|
2995
2995
|
* <p>The type of the Vector Enrichment job.</p>
|
|
2996
2996
|
*/
|
|
2997
|
-
Type: VectorEnrichmentJobType |
|
|
2997
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
2998
2998
|
/**
|
|
2999
2999
|
* @public
|
|
3000
3000
|
* <p>The creation time.</p>
|
|
@@ -3009,7 +3009,7 @@ export interface StartVectorEnrichmentJobOutput {
|
|
|
3009
3009
|
* @public
|
|
3010
3010
|
* <p>The status of the Vector Enrichment job being started.</p>
|
|
3011
3011
|
*/
|
|
3012
|
-
Status: VectorEnrichmentJobStatus |
|
|
3012
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
3013
3013
|
/**
|
|
3014
3014
|
* @public
|
|
3015
3015
|
* <p>The Key Management Service key ID for server-side encryption.</p>
|
|
@@ -115,7 +115,7 @@ export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
|
115
115
|
export interface Operation {
|
|
116
116
|
Name: string | undefined;
|
|
117
117
|
Equation: string | undefined;
|
|
118
|
-
OutputType?: OutputType
|
|
118
|
+
OutputType?: OutputType;
|
|
119
119
|
}
|
|
120
120
|
export interface CustomIndicesInput {
|
|
121
121
|
Operations?: Operation[];
|
|
@@ -126,7 +126,7 @@ export interface BandMathConfigInput {
|
|
|
126
126
|
}
|
|
127
127
|
export interface CloudMaskingConfigInput {}
|
|
128
128
|
export interface CloudRemovalConfigInput {
|
|
129
|
-
AlgorithmName?: AlgorithmNameCloudRemoval
|
|
129
|
+
AlgorithmName?: AlgorithmNameCloudRemoval;
|
|
130
130
|
InterpolationValue?: string;
|
|
131
131
|
TargetBands?: string[];
|
|
132
132
|
}
|
|
@@ -160,7 +160,7 @@ export type DataCollectionType =
|
|
|
160
160
|
export interface RasterDataCollectionMetadata {
|
|
161
161
|
Name: string | undefined;
|
|
162
162
|
Arn: string | undefined;
|
|
163
|
-
Type: DataCollectionType |
|
|
163
|
+
Type: DataCollectionType | undefined;
|
|
164
164
|
Description: string | undefined;
|
|
165
165
|
DescriptionPageUrl?: string;
|
|
166
166
|
SupportedFilters: Filter[] | undefined;
|
|
@@ -234,7 +234,7 @@ export type EarthObservationJobExportStatus =
|
|
|
234
234
|
export interface ExportEarthObservationJobOutput {
|
|
235
235
|
Arn: string | undefined;
|
|
236
236
|
CreationTime: Date | undefined;
|
|
237
|
-
ExportStatus: EarthObservationJobExportStatus |
|
|
237
|
+
ExportStatus: EarthObservationJobExportStatus | undefined;
|
|
238
238
|
ExecutionRoleArn: string | undefined;
|
|
239
239
|
OutputConfig: OutputConfigInput | undefined;
|
|
240
240
|
ExportSourceImages?: boolean;
|
|
@@ -258,7 +258,7 @@ export declare const EarthObservationJobErrorType: {
|
|
|
258
258
|
export type EarthObservationJobErrorType =
|
|
259
259
|
(typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
|
|
260
260
|
export interface EarthObservationJobErrorDetails {
|
|
261
|
-
Type?: EarthObservationJobErrorType
|
|
261
|
+
Type?: EarthObservationJobErrorType;
|
|
262
262
|
Message?: string;
|
|
263
263
|
}
|
|
264
264
|
export declare const ExportErrorType: {
|
|
@@ -268,7 +268,7 @@ export declare const ExportErrorType: {
|
|
|
268
268
|
export type ExportErrorType =
|
|
269
269
|
(typeof ExportErrorType)[keyof typeof ExportErrorType];
|
|
270
270
|
export interface ExportErrorDetailsOutput {
|
|
271
|
-
Type?: ExportErrorType
|
|
271
|
+
Type?: ExportErrorType;
|
|
272
272
|
Message?: string;
|
|
273
273
|
}
|
|
274
274
|
export interface ExportErrorDetails {
|
|
@@ -290,7 +290,7 @@ export interface LandsatCloudCoverLandInput {
|
|
|
290
290
|
}
|
|
291
291
|
export interface PlatformInput {
|
|
292
292
|
Value: string | undefined;
|
|
293
|
-
ComparisonOperator?: ComparisonOperator
|
|
293
|
+
ComparisonOperator?: ComparisonOperator;
|
|
294
294
|
}
|
|
295
295
|
export interface ViewOffNadirInput {
|
|
296
296
|
LowerBound: number | undefined;
|
|
@@ -392,7 +392,7 @@ export interface PropertyFilter {
|
|
|
392
392
|
}
|
|
393
393
|
export interface PropertyFilters {
|
|
394
394
|
Properties?: PropertyFilter[];
|
|
395
|
-
LogicalOperator?: LogicalOperator
|
|
395
|
+
LogicalOperator?: LogicalOperator;
|
|
396
396
|
}
|
|
397
397
|
export interface TimeRangeFilterOutput {
|
|
398
398
|
StartTime: Date | undefined;
|
|
@@ -410,7 +410,7 @@ export interface InputConfigOutput {
|
|
|
410
410
|
RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
|
|
411
411
|
}
|
|
412
412
|
export interface GeoMosaicConfigInput {
|
|
413
|
-
AlgorithmName?: AlgorithmNameGeoMosaic
|
|
413
|
+
AlgorithmName?: AlgorithmNameGeoMosaic;
|
|
414
414
|
TargetBands?: string[];
|
|
415
415
|
}
|
|
416
416
|
export interface LandCoverSegmentationConfigInput {}
|
|
@@ -420,14 +420,14 @@ export declare const Unit: {
|
|
|
420
420
|
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
421
421
|
export interface UserDefined {
|
|
422
422
|
Value: number | undefined;
|
|
423
|
-
Unit: Unit |
|
|
423
|
+
Unit: Unit | undefined;
|
|
424
424
|
}
|
|
425
425
|
export interface OutputResolutionResamplingInput {
|
|
426
426
|
UserDefined: UserDefined | undefined;
|
|
427
427
|
}
|
|
428
428
|
export interface ResamplingConfigInput {
|
|
429
429
|
OutputResolution: OutputResolutionResamplingInput | undefined;
|
|
430
|
-
AlgorithmName?: AlgorithmNameResampling
|
|
430
|
+
AlgorithmName?: AlgorithmNameResampling;
|
|
431
431
|
TargetBands?: string[];
|
|
432
432
|
}
|
|
433
433
|
export declare const PredefinedResolution: {
|
|
@@ -438,7 +438,7 @@ export declare const PredefinedResolution: {
|
|
|
438
438
|
export type PredefinedResolution =
|
|
439
439
|
(typeof PredefinedResolution)[keyof typeof PredefinedResolution];
|
|
440
440
|
export interface OutputResolutionStackInput {
|
|
441
|
-
Predefined?: PredefinedResolution
|
|
441
|
+
Predefined?: PredefinedResolution;
|
|
442
442
|
UserDefined?: UserDefined;
|
|
443
443
|
}
|
|
444
444
|
export interface StackConfigInput {
|
|
@@ -458,8 +458,8 @@ export declare const TemporalStatistics: {
|
|
|
458
458
|
export type TemporalStatistics =
|
|
459
459
|
(typeof TemporalStatistics)[keyof typeof TemporalStatistics];
|
|
460
460
|
export interface TemporalStatisticsConfigInput {
|
|
461
|
-
GroupBy?: GroupBy
|
|
462
|
-
Statistics:
|
|
461
|
+
GroupBy?: GroupBy;
|
|
462
|
+
Statistics: TemporalStatistics[] | undefined;
|
|
463
463
|
TargetBands?: string[];
|
|
464
464
|
}
|
|
465
465
|
export declare const ZonalStatistics: {
|
|
@@ -474,7 +474,7 @@ export type ZonalStatistics =
|
|
|
474
474
|
(typeof ZonalStatistics)[keyof typeof ZonalStatistics];
|
|
475
475
|
export interface ZonalStatisticsConfigInput {
|
|
476
476
|
ZoneS3Path: string | undefined;
|
|
477
|
-
Statistics:
|
|
477
|
+
Statistics: ZonalStatistics[] | undefined;
|
|
478
478
|
TargetBands?: string[];
|
|
479
479
|
ZoneS3PathKmsKeyId?: string;
|
|
480
480
|
}
|
|
@@ -626,7 +626,7 @@ export declare namespace JobConfigInput {
|
|
|
626
626
|
}
|
|
627
627
|
export interface OutputBand {
|
|
628
628
|
BandName: string | undefined;
|
|
629
|
-
OutputDataType: OutputType |
|
|
629
|
+
OutputDataType: OutputType | undefined;
|
|
630
630
|
}
|
|
631
631
|
export declare const EarthObservationJobStatus: {
|
|
632
632
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -645,14 +645,14 @@ export interface GetEarthObservationJobOutput {
|
|
|
645
645
|
Name: string | undefined;
|
|
646
646
|
CreationTime: Date | undefined;
|
|
647
647
|
DurationInSeconds: number | undefined;
|
|
648
|
-
Status: EarthObservationJobStatus |
|
|
648
|
+
Status: EarthObservationJobStatus | undefined;
|
|
649
649
|
KmsKeyId?: string;
|
|
650
650
|
InputConfig: InputConfigOutput | undefined;
|
|
651
651
|
JobConfig: JobConfigInput | undefined;
|
|
652
652
|
OutputBands?: OutputBand[];
|
|
653
653
|
ExecutionRoleArn?: string;
|
|
654
654
|
ErrorDetails?: EarthObservationJobErrorDetails;
|
|
655
|
-
ExportStatus?: EarthObservationJobExportStatus
|
|
655
|
+
ExportStatus?: EarthObservationJobExportStatus;
|
|
656
656
|
ExportErrorDetails?: ExportErrorDetails;
|
|
657
657
|
Tags?: Record<string, string>;
|
|
658
658
|
}
|
|
@@ -666,13 +666,13 @@ export interface GetTileInput {
|
|
|
666
666
|
y: number | undefined;
|
|
667
667
|
z: number | undefined;
|
|
668
668
|
ImageAssets: string[] | undefined;
|
|
669
|
-
Target: TargetOptions |
|
|
669
|
+
Target: TargetOptions | undefined;
|
|
670
670
|
Arn: string | undefined;
|
|
671
671
|
ImageMask?: boolean;
|
|
672
672
|
OutputFormat?: string;
|
|
673
673
|
TimeRangeFilter?: string;
|
|
674
674
|
PropertyFilters?: string;
|
|
675
|
-
OutputDataType?: OutputType
|
|
675
|
+
OutputDataType?: OutputType;
|
|
676
676
|
ExecutionRoleArn?: string;
|
|
677
677
|
}
|
|
678
678
|
export interface GetTileOutput {
|
|
@@ -684,8 +684,8 @@ export declare const SortOrder: {
|
|
|
684
684
|
};
|
|
685
685
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
686
686
|
export interface ListEarthObservationJobInput {
|
|
687
|
-
StatusEquals?: EarthObservationJobStatus
|
|
688
|
-
SortOrder?: SortOrder
|
|
687
|
+
StatusEquals?: EarthObservationJobStatus;
|
|
688
|
+
SortOrder?: SortOrder;
|
|
689
689
|
SortBy?: string;
|
|
690
690
|
NextToken?: string;
|
|
691
691
|
MaxResults?: number;
|
|
@@ -695,7 +695,7 @@ export interface ListEarthObservationJobOutputConfig {
|
|
|
695
695
|
Name: string | undefined;
|
|
696
696
|
CreationTime: Date | undefined;
|
|
697
697
|
DurationInSeconds: number | undefined;
|
|
698
|
-
Status: EarthObservationJobStatus |
|
|
698
|
+
Status: EarthObservationJobStatus | undefined;
|
|
699
699
|
OperationType: string | undefined;
|
|
700
700
|
Tags?: Record<string, string>;
|
|
701
701
|
}
|
|
@@ -733,7 +733,7 @@ export interface StartEarthObservationJobOutput {
|
|
|
733
733
|
Arn: string | undefined;
|
|
734
734
|
CreationTime: Date | undefined;
|
|
735
735
|
DurationInSeconds: number | undefined;
|
|
736
|
-
Status: EarthObservationJobStatus |
|
|
736
|
+
Status: EarthObservationJobStatus | undefined;
|
|
737
737
|
KmsKeyId?: string;
|
|
738
738
|
InputConfig?: InputConfigOutput;
|
|
739
739
|
JobConfig: JobConfigInput | undefined;
|
|
@@ -768,7 +768,7 @@ export interface ExportVectorEnrichmentJobOutput {
|
|
|
768
768
|
Arn: string | undefined;
|
|
769
769
|
CreationTime: Date | undefined;
|
|
770
770
|
ExecutionRoleArn: string | undefined;
|
|
771
|
-
ExportStatus: VectorEnrichmentJobExportStatus |
|
|
771
|
+
ExportStatus: VectorEnrichmentJobExportStatus | undefined;
|
|
772
772
|
OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface Geometry {
|
|
@@ -781,7 +781,7 @@ export interface GetRasterDataCollectionInput {
|
|
|
781
781
|
export interface GetRasterDataCollectionOutput {
|
|
782
782
|
Name: string | undefined;
|
|
783
783
|
Arn: string | undefined;
|
|
784
|
-
Type: DataCollectionType |
|
|
784
|
+
Type: DataCollectionType | undefined;
|
|
785
785
|
Description: string | undefined;
|
|
786
786
|
DescriptionPageUrl: string | undefined;
|
|
787
787
|
SupportedFilters: Filter[] | undefined;
|
|
@@ -798,7 +798,7 @@ export declare const VectorEnrichmentJobErrorType: {
|
|
|
798
798
|
export type VectorEnrichmentJobErrorType =
|
|
799
799
|
(typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
|
|
800
800
|
export interface VectorEnrichmentJobErrorDetails {
|
|
801
|
-
ErrorType?: VectorEnrichmentJobErrorType
|
|
801
|
+
ErrorType?: VectorEnrichmentJobErrorType;
|
|
802
802
|
ErrorMessage?: string;
|
|
803
803
|
}
|
|
804
804
|
export declare const VectorEnrichmentJobExportErrorType: {
|
|
@@ -808,7 +808,7 @@ export declare const VectorEnrichmentJobExportErrorType: {
|
|
|
808
808
|
export type VectorEnrichmentJobExportErrorType =
|
|
809
809
|
(typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
|
|
810
810
|
export interface VectorEnrichmentJobExportErrorDetails {
|
|
811
|
-
Type?: VectorEnrichmentJobExportErrorType
|
|
811
|
+
Type?: VectorEnrichmentJobExportErrorType;
|
|
812
812
|
Message?: string;
|
|
813
813
|
}
|
|
814
814
|
export type VectorEnrichmentJobDataSourceConfigInput =
|
|
@@ -838,7 +838,7 @@ export declare const VectorEnrichmentJobDocumentType: {
|
|
|
838
838
|
export type VectorEnrichmentJobDocumentType =
|
|
839
839
|
(typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
|
|
840
840
|
export interface VectorEnrichmentJobInputConfig {
|
|
841
|
-
DocumentType: VectorEnrichmentJobDocumentType |
|
|
841
|
+
DocumentType: VectorEnrichmentJobDocumentType | undefined;
|
|
842
842
|
DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
|
|
843
843
|
}
|
|
844
844
|
export interface MapMatchingConfig {
|
|
@@ -898,17 +898,17 @@ export type VectorEnrichmentJobType =
|
|
|
898
898
|
(typeof VectorEnrichmentJobType)[keyof typeof VectorEnrichmentJobType];
|
|
899
899
|
export interface GetVectorEnrichmentJobOutput {
|
|
900
900
|
Arn: string | undefined;
|
|
901
|
-
Type: VectorEnrichmentJobType |
|
|
901
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
902
902
|
Name: string | undefined;
|
|
903
903
|
CreationTime: Date | undefined;
|
|
904
904
|
DurationInSeconds: number | undefined;
|
|
905
|
-
Status: VectorEnrichmentJobStatus |
|
|
905
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
906
906
|
KmsKeyId?: string;
|
|
907
907
|
InputConfig: VectorEnrichmentJobInputConfig | undefined;
|
|
908
908
|
JobConfig: VectorEnrichmentJobConfig | undefined;
|
|
909
909
|
ExecutionRoleArn: string | undefined;
|
|
910
910
|
ErrorDetails?: VectorEnrichmentJobErrorDetails;
|
|
911
|
-
ExportStatus?: VectorEnrichmentJobExportStatus
|
|
911
|
+
ExportStatus?: VectorEnrichmentJobExportStatus;
|
|
912
912
|
ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails;
|
|
913
913
|
Tags?: Record<string, string>;
|
|
914
914
|
}
|
|
@@ -943,7 +943,7 @@ export interface ListTagsForResourceResponse {
|
|
|
943
943
|
}
|
|
944
944
|
export interface ListVectorEnrichmentJobInput {
|
|
945
945
|
StatusEquals?: string;
|
|
946
|
-
SortOrder?: SortOrder
|
|
946
|
+
SortOrder?: SortOrder;
|
|
947
947
|
SortBy?: string;
|
|
948
948
|
NextToken?: string;
|
|
949
949
|
MaxResults?: number;
|
|
@@ -951,10 +951,10 @@ export interface ListVectorEnrichmentJobInput {
|
|
|
951
951
|
export interface ListVectorEnrichmentJobOutputConfig {
|
|
952
952
|
Arn: string | undefined;
|
|
953
953
|
Name: string | undefined;
|
|
954
|
-
Type: VectorEnrichmentJobType |
|
|
954
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
955
955
|
CreationTime: Date | undefined;
|
|
956
956
|
DurationInSeconds: number | undefined;
|
|
957
|
-
Status: VectorEnrichmentJobStatus |
|
|
957
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
958
958
|
Tags?: Record<string, string>;
|
|
959
959
|
}
|
|
960
960
|
export interface ListVectorEnrichmentJobOutput {
|
|
@@ -1003,10 +1003,10 @@ export interface StartVectorEnrichmentJobInput {
|
|
|
1003
1003
|
export interface StartVectorEnrichmentJobOutput {
|
|
1004
1004
|
Name: string | undefined;
|
|
1005
1005
|
Arn: string | undefined;
|
|
1006
|
-
Type: VectorEnrichmentJobType |
|
|
1006
|
+
Type: VectorEnrichmentJobType | undefined;
|
|
1007
1007
|
CreationTime: Date | undefined;
|
|
1008
1008
|
DurationInSeconds: number | undefined;
|
|
1009
|
-
Status: VectorEnrichmentJobStatus |
|
|
1009
|
+
Status: VectorEnrichmentJobStatus | undefined;
|
|
1010
1010
|
KmsKeyId?: string;
|
|
1011
1011
|
InputConfig: VectorEnrichmentJobInputConfig | undefined;
|
|
1012
1012
|
JobConfig: VectorEnrichmentJobConfig | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-geospatial",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Geospatial Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|