@aws-sdk/client-sagemaker-geospatial 3.687.0 → 3.692.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.
@@ -263,7 +263,7 @@ export interface AssetValue {
263
263
  * <p>Link to the asset object.</p>
264
264
  * @public
265
265
  */
266
- Href?: string;
266
+ Href?: string | undefined;
267
267
  }
268
268
  /**
269
269
  * @public
@@ -314,7 +314,7 @@ export interface Operation {
314
314
  * <p>The type of the operation.</p>
315
315
  * @public
316
316
  */
317
- OutputType?: OutputType;
317
+ OutputType?: OutputType | undefined;
318
318
  }
319
319
  /**
320
320
  * <p>Input object defining the custom BandMath indices to compute.</p>
@@ -325,7 +325,7 @@ export interface CustomIndicesInput {
325
325
  * <p>A list of BandMath indices to compute.</p>
326
326
  * @public
327
327
  */
328
- Operations?: Operation[];
328
+ Operations?: Operation[] | undefined;
329
329
  }
330
330
  /**
331
331
  * <p>Input structure for the BandMath operation type.
@@ -339,12 +339,12 @@ export interface BandMathConfigInput {
339
339
  * <code>NDWI</code>, <code>NDMI</code>, <code>NDSI</code>, and <code>WDRVI</code>.</p>
340
340
  * @public
341
341
  */
342
- PredefinedIndices?: string[];
342
+ PredefinedIndices?: string[] | undefined;
343
343
  /**
344
344
  * <p>CustomIndices that are computed.</p>
345
345
  * @public
346
346
  */
347
- CustomIndices?: CustomIndicesInput;
347
+ CustomIndices?: CustomIndicesInput | undefined;
348
348
  }
349
349
  /**
350
350
  * <p>Input structure for CloudMasking operation type.</p>
@@ -361,17 +361,17 @@ export interface CloudRemovalConfigInput {
361
361
  * <p>The name of the algorithm used for cloud removal.</p>
362
362
  * @public
363
363
  */
364
- AlgorithmName?: AlgorithmNameCloudRemoval;
364
+ AlgorithmName?: AlgorithmNameCloudRemoval | undefined;
365
365
  /**
366
366
  * <p>The interpolation value you provide for cloud removal.</p>
367
367
  * @public
368
368
  */
369
- InterpolationValue?: string;
369
+ InterpolationValue?: string | undefined;
370
370
  /**
371
371
  * <p>TargetBands to be returned in the output of CloudRemoval operation.</p>
372
372
  * @public
373
373
  */
374
- TargetBands?: string[];
374
+ TargetBands?: string[] | undefined;
375
375
  }
376
376
  /**
377
377
  * @public
@@ -407,7 +407,7 @@ export declare class ConflictException extends __BaseException {
407
407
  * <p>Identifier of the resource affected.</p>
408
408
  * @public
409
409
  */
410
- ResourceId?: string;
410
+ ResourceId?: string | undefined;
411
411
  /**
412
412
  * @internal
413
413
  */
@@ -432,12 +432,12 @@ export interface Filter {
432
432
  * <p>The minimum value of the filter.</p>
433
433
  * @public
434
434
  */
435
- Minimum?: number;
435
+ Minimum?: number | undefined;
436
436
  /**
437
437
  * <p>The maximum value of the filter.</p>
438
438
  * @public
439
439
  */
440
- Maximum?: number;
440
+ Maximum?: number | undefined;
441
441
  }
442
442
  /**
443
443
  * @public
@@ -490,7 +490,7 @@ export interface RasterDataCollectionMetadata {
490
490
  * <p>The description URL of the raster data collection.</p>
491
491
  * @public
492
492
  */
493
- DescriptionPageUrl?: string;
493
+ DescriptionPageUrl?: string | undefined;
494
494
  /**
495
495
  * <p>The list of filters supported by the raster data collection.</p>
496
496
  * @public
@@ -500,7 +500,7 @@ export interface RasterDataCollectionMetadata {
500
500
  * <p>Each tag consists of a key and a value.</p>
501
501
  * @public
502
502
  */
503
- Tags?: Record<string, string>;
503
+ Tags?: Record<string, string> | undefined;
504
504
  }
505
505
  /**
506
506
  * @public
@@ -529,7 +529,7 @@ export declare class InternalServerException extends __BaseException {
529
529
  * <p/>
530
530
  * @public
531
531
  */
532
- ResourceId?: string;
532
+ ResourceId?: string | undefined;
533
533
  /**
534
534
  * @internal
535
535
  */
@@ -547,7 +547,7 @@ export declare class ResourceNotFoundException extends __BaseException {
547
547
  * <p>Identifier of the resource that was not found.</p>
548
548
  * @public
549
549
  */
550
- ResourceId?: string;
550
+ ResourceId?: string | undefined;
551
551
  /**
552
552
  * @internal
553
553
  */
@@ -565,7 +565,7 @@ export declare class ThrottlingException extends __BaseException {
565
565
  * <p/>
566
566
  * @public
567
567
  */
568
- ResourceId?: string;
568
+ ResourceId?: string | undefined;
569
569
  /**
570
570
  * @internal
571
571
  */
@@ -583,7 +583,7 @@ export declare class ValidationException extends __BaseException {
583
583
  * <p/>
584
584
  * @public
585
585
  */
586
- ResourceId?: string;
586
+ ResourceId?: string | undefined;
587
587
  /**
588
588
  * @internal
589
589
  */
@@ -618,7 +618,7 @@ export interface ExportS3DataInput {
618
618
  * <p>The Key Management Service key ID for server-side encryption.</p>
619
619
  * @public
620
620
  */
621
- KmsKeyId?: string;
621
+ KmsKeyId?: string | undefined;
622
622
  }
623
623
  /**
624
624
  * <p>The response structure for an OutputConfig returned by an ExportEarthObservationJob.</p>
@@ -644,7 +644,7 @@ export interface ExportEarthObservationJobInput {
644
644
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
645
645
  * @public
646
646
  */
647
- ClientToken?: string;
647
+ ClientToken?: string | undefined;
648
648
  /**
649
649
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
650
650
  * @public
@@ -659,7 +659,7 @@ export interface ExportEarthObservationJobInput {
659
659
  * <p>The source images provided to the Earth Observation job being exported.</p>
660
660
  * @public
661
661
  */
662
- ExportSourceImages?: boolean;
662
+ ExportSourceImages?: boolean | undefined;
663
663
  }
664
664
  /**
665
665
  * @public
@@ -716,7 +716,7 @@ export interface ExportEarthObservationJobOutput {
716
716
  * <p>The source images provided to the Earth Observation job being exported.</p>
717
717
  * @public
718
718
  */
719
- ExportSourceImages?: boolean;
719
+ ExportSourceImages?: boolean | undefined;
720
720
  }
721
721
  /**
722
722
  * <p>You have exceeded the service quota.</p>
@@ -730,7 +730,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
730
730
  * <p>Identifier of the resource affected.</p>
731
731
  * @public
732
732
  */
733
- ResourceId?: string;
733
+ ResourceId?: string | undefined;
734
734
  /**
735
735
  * @internal
736
736
  */
@@ -773,12 +773,12 @@ export interface EarthObservationJobErrorDetails {
773
773
  * <p>The type of error in an Earth Observation job.</p>
774
774
  * @public
775
775
  */
776
- Type?: EarthObservationJobErrorType;
776
+ Type?: EarthObservationJobErrorType | undefined;
777
777
  /**
778
778
  * <p>A detailed message describing the error in an Earth Observation job.</p>
779
779
  * @public
780
780
  */
781
- Message?: string;
781
+ Message?: string | undefined;
782
782
  }
783
783
  /**
784
784
  * @public
@@ -807,12 +807,12 @@ export interface ExportErrorDetailsOutput {
807
807
  * <p>The type of error in an export EarthObservationJob operation.</p>
808
808
  * @public
809
809
  */
810
- Type?: ExportErrorType;
810
+ Type?: ExportErrorType | undefined;
811
811
  /**
812
812
  * <p>A detailed message describing the error in an export EarthObservationJob operation.</p>
813
813
  * @public
814
814
  */
815
- Message?: string;
815
+ Message?: string | undefined;
816
816
  }
817
817
  /**
818
818
  * <p>The structure for returning the export error details in a GetEarthObservationJob.</p>
@@ -823,13 +823,13 @@ export interface ExportErrorDetails {
823
823
  * <p>The structure for returning the export error details while exporting results of an Earth Observation job.</p>
824
824
  * @public
825
825
  */
826
- ExportResults?: ExportErrorDetailsOutput;
826
+ ExportResults?: ExportErrorDetailsOutput | undefined;
827
827
  /**
828
828
  * <p>The structure for returning the export error details
829
829
  * while exporting the source images of an Earth Observation job.</p>
830
830
  * @public
831
831
  */
832
- ExportSourceImages?: ExportErrorDetailsOutput;
832
+ ExportSourceImages?: ExportErrorDetailsOutput | undefined;
833
833
  }
834
834
  /**
835
835
  * @public
@@ -895,7 +895,7 @@ export interface PlatformInput {
895
895
  * <p>The ComparisonOperator to use with PlatformInput.</p>
896
896
  * @public
897
897
  */
898
- ComparisonOperator?: ComparisonOperator;
898
+ ComparisonOperator?: ComparisonOperator | undefined;
899
899
  }
900
900
  /**
901
901
  * <p>The input structure for specifying ViewOffNadir property filter.
@@ -1086,12 +1086,12 @@ export interface PropertyFilters {
1086
1086
  * <p>A list of Property Filters.</p>
1087
1087
  * @public
1088
1088
  */
1089
- Properties?: PropertyFilter[];
1089
+ Properties?: PropertyFilter[] | undefined;
1090
1090
  /**
1091
1091
  * <p>The Logical Operator used to combine the Property Filters.</p>
1092
1092
  * @public
1093
1093
  */
1094
- LogicalOperator?: LogicalOperator;
1094
+ LogicalOperator?: LogicalOperator | undefined;
1095
1095
  }
1096
1096
  /**
1097
1097
  * <p>The output structure of the time range filter.</p>
@@ -1134,12 +1134,12 @@ export interface RasterDataCollectionQueryOutput {
1134
1134
  * <p>The Area of Interest used in the search.</p>
1135
1135
  * @public
1136
1136
  */
1137
- AreaOfInterest?: AreaOfInterest;
1137
+ AreaOfInterest?: AreaOfInterest | undefined;
1138
1138
  /**
1139
1139
  * <p>Property filters used in the search.</p>
1140
1140
  * @public
1141
1141
  */
1142
- PropertyFilters?: PropertyFilters;
1142
+ PropertyFilters?: PropertyFilters | undefined;
1143
1143
  }
1144
1144
  /**
1145
1145
  * <p>The InputConfig for an EarthObservationJob response.</p>
@@ -1150,13 +1150,13 @@ export interface InputConfigOutput {
1150
1150
  * <p>The Amazon Resource Name (ARN) of the previous Earth Observation job.</p>
1151
1151
  * @public
1152
1152
  */
1153
- PreviousEarthObservationJobArn?: string;
1153
+ PreviousEarthObservationJobArn?: string | undefined;
1154
1154
  /**
1155
1155
  * <p>The structure representing the RasterDataCollection Query consisting of the Area of Interest,
1156
1156
  * RasterDataCollectionArn, RasterDataCollectionName, TimeRange, and Property Filters.</p>
1157
1157
  * @public
1158
1158
  */
1159
- RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
1159
+ RasterDataCollectionQuery?: RasterDataCollectionQueryOutput | undefined;
1160
1160
  }
1161
1161
  /**
1162
1162
  * <p>Input configuration information for the geomosaic.</p>
@@ -1167,12 +1167,12 @@ export interface GeoMosaicConfigInput {
1167
1167
  * <p>The name of the algorithm being used for geomosaic.</p>
1168
1168
  * @public
1169
1169
  */
1170
- AlgorithmName?: AlgorithmNameGeoMosaic;
1170
+ AlgorithmName?: AlgorithmNameGeoMosaic | undefined;
1171
1171
  /**
1172
1172
  * <p>The target bands for geomosaic.</p>
1173
1173
  * @public
1174
1174
  */
1175
- TargetBands?: string[];
1175
+ TargetBands?: string[] | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * <p>The input structure for Land Cover Operation type.</p>
@@ -1239,12 +1239,12 @@ export interface ResamplingConfigInput {
1239
1239
  * <p>The name of the algorithm used for resampling.</p>
1240
1240
  * @public
1241
1241
  */
1242
- AlgorithmName?: AlgorithmNameResampling;
1242
+ AlgorithmName?: AlgorithmNameResampling | undefined;
1243
1243
  /**
1244
1244
  * <p>Bands used in the operation. If no target bands are specified, it uses all bands available in the input.</p>
1245
1245
  * @public
1246
1246
  */
1247
- TargetBands?: string[];
1247
+ TargetBands?: string[] | undefined;
1248
1248
  }
1249
1249
  /**
1250
1250
  * @public
@@ -1277,12 +1277,12 @@ export interface OutputResolutionStackInput {
1277
1277
  * <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>
1278
1278
  * @public
1279
1279
  */
1280
- Predefined?: PredefinedResolution;
1280
+ Predefined?: PredefinedResolution | undefined;
1281
1281
  /**
1282
1282
  * <p>The structure representing User Output Resolution for a Stacking operation defined as a value and unit.</p>
1283
1283
  * @public
1284
1284
  */
1285
- UserDefined?: UserDefined;
1285
+ UserDefined?: UserDefined | undefined;
1286
1286
  }
1287
1287
  /**
1288
1288
  * <p>The input structure for Stacking Operation.</p>
@@ -1295,12 +1295,12 @@ export interface StackConfigInput {
1295
1295
  * result of stacking operation.</p>
1296
1296
  * @public
1297
1297
  */
1298
- OutputResolution?: OutputResolutionStackInput;
1298
+ OutputResolution?: OutputResolutionStackInput | undefined;
1299
1299
  /**
1300
1300
  * <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>
1301
1301
  * @public
1302
1302
  */
1303
- TargetBands?: string[];
1303
+ TargetBands?: string[] | undefined;
1304
1304
  }
1305
1305
  /**
1306
1306
  * @public
@@ -1351,7 +1351,7 @@ export interface TemporalStatisticsConfigInput {
1351
1351
  * <p>The input for the temporal statistics grouping by time frequency option.</p>
1352
1352
  * @public
1353
1353
  */
1354
- GroupBy?: GroupBy;
1354
+ GroupBy?: GroupBy | undefined;
1355
1355
  /**
1356
1356
  * <p>The list of the statistics method options.</p>
1357
1357
  * @public
@@ -1361,7 +1361,7 @@ export interface TemporalStatisticsConfigInput {
1361
1361
  * <p>The list of target band names for the temporal statistic to calculate.</p>
1362
1362
  * @public
1363
1363
  */
1364
- TargetBands?: string[];
1364
+ TargetBands?: string[] | undefined;
1365
1365
  }
1366
1366
  /**
1367
1367
  * @public
@@ -1417,7 +1417,7 @@ export interface ZonalStatisticsConfigInput {
1417
1417
  * If no target bands are specified, it uses all bands available input.</p>
1418
1418
  * @public
1419
1419
  */
1420
- TargetBands?: string[];
1420
+ TargetBands?: string[] | undefined;
1421
1421
  /**
1422
1422
  * <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.
1423
1423
  * The SageMaker execution role must have <code>kms:GenerateDataKey</code> permission.</p>
@@ -1441,7 +1441,7 @@ export interface ZonalStatisticsConfigInput {
1441
1441
  * Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.</p>
1442
1442
  * @public
1443
1443
  */
1444
- ZoneS3PathKmsKeyId?: string;
1444
+ ZoneS3PathKmsKeyId?: string | undefined;
1445
1445
  }
1446
1446
  /**
1447
1447
  * <p>The input structure for the JobConfig in an EarthObservationJob.</p>
@@ -1716,7 +1716,7 @@ export interface GetEarthObservationJobOutput {
1716
1716
  * <p>The Key Management Service key ID for server-side encryption.</p>
1717
1717
  * @public
1718
1718
  */
1719
- KmsKeyId?: string;
1719
+ KmsKeyId?: string | undefined;
1720
1720
  /**
1721
1721
  * <p>Input data for the Earth Observation job.</p>
1722
1722
  * @public
@@ -1731,32 +1731,32 @@ export interface GetEarthObservationJobOutput {
1731
1731
  * <p>Bands available in the output of an operation.</p>
1732
1732
  * @public
1733
1733
  */
1734
- OutputBands?: OutputBand[];
1734
+ OutputBands?: OutputBand[] | undefined;
1735
1735
  /**
1736
1736
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
1737
1737
  * @public
1738
1738
  */
1739
- ExecutionRoleArn?: string;
1739
+ ExecutionRoleArn?: string | undefined;
1740
1740
  /**
1741
1741
  * <p>Details about the errors generated during the Earth Observation job.</p>
1742
1742
  * @public
1743
1743
  */
1744
- ErrorDetails?: EarthObservationJobErrorDetails;
1744
+ ErrorDetails?: EarthObservationJobErrorDetails | undefined;
1745
1745
  /**
1746
1746
  * <p>The status of the Earth Observation job.</p>
1747
1747
  * @public
1748
1748
  */
1749
- ExportStatus?: EarthObservationJobExportStatus;
1749
+ ExportStatus?: EarthObservationJobExportStatus | undefined;
1750
1750
  /**
1751
1751
  * <p>Details about the errors generated during ExportEarthObservationJob.</p>
1752
1752
  * @public
1753
1753
  */
1754
- ExportErrorDetails?: ExportErrorDetails;
1754
+ ExportErrorDetails?: ExportErrorDetails | undefined;
1755
1755
  /**
1756
1756
  * <p>Each tag consists of a key and a value.</p>
1757
1757
  * @public
1758
1758
  */
1759
- Tags?: Record<string, string>;
1759
+ Tags?: Record<string, string> | undefined;
1760
1760
  }
1761
1761
  /**
1762
1762
  * @public
@@ -1814,32 +1814,32 @@ export interface GetTileInput {
1814
1814
  * <p>Determines whether or not to return a valid data mask.</p>
1815
1815
  * @public
1816
1816
  */
1817
- ImageMask?: boolean;
1817
+ ImageMask?: boolean | undefined;
1818
1818
  /**
1819
1819
  * <p>The data format of the output tile. The formats include .npy, .png and .jpg.</p>
1820
1820
  * @public
1821
1821
  */
1822
- OutputFormat?: string;
1822
+ OutputFormat?: string | undefined;
1823
1823
  /**
1824
1824
  * <p>Time range filter applied to imagery to find the images to tile.</p>
1825
1825
  * @public
1826
1826
  */
1827
- TimeRangeFilter?: string;
1827
+ TimeRangeFilter?: string | undefined;
1828
1828
  /**
1829
1829
  * <p>Property filters for the imagery to tile.</p>
1830
1830
  * @public
1831
1831
  */
1832
- PropertyFilters?: string;
1832
+ PropertyFilters?: string | undefined;
1833
1833
  /**
1834
1834
  * <p>The output data type of the tile operation.</p>
1835
1835
  * @public
1836
1836
  */
1837
- OutputDataType?: OutputType;
1837
+ OutputDataType?: OutputType | undefined;
1838
1838
  /**
1839
1839
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specify.</p>
1840
1840
  * @public
1841
1841
  */
1842
- ExecutionRoleArn?: string;
1842
+ ExecutionRoleArn?: string | undefined;
1843
1843
  }
1844
1844
  /**
1845
1845
  * @public
@@ -1849,7 +1849,7 @@ export interface GetTileOutput {
1849
1849
  * <p>The output binary file.</p>
1850
1850
  * @public
1851
1851
  */
1852
- BinaryFile?: StreamingBlobTypes;
1852
+ BinaryFile?: StreamingBlobTypes | undefined;
1853
1853
  }
1854
1854
  /**
1855
1855
  * @public
@@ -1877,28 +1877,28 @@ export interface ListEarthObservationJobInput {
1877
1877
  * <p>A filter that retrieves only jobs with a specific status.</p>
1878
1878
  * @public
1879
1879
  */
1880
- StatusEquals?: EarthObservationJobStatus;
1880
+ StatusEquals?: EarthObservationJobStatus | undefined;
1881
1881
  /**
1882
1882
  * <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
1883
1883
  * @public
1884
1884
  */
1885
- SortOrder?: SortOrder;
1885
+ SortOrder?: SortOrder | undefined;
1886
1886
  /**
1887
1887
  * <p>The parameter by which to sort the results.</p>
1888
1888
  * @public
1889
1889
  */
1890
- SortBy?: string;
1890
+ SortBy?: string | undefined;
1891
1891
  /**
1892
1892
  * <p>If the previous response was truncated, you receive this token.
1893
1893
  * Use it in your next request to receive the next set of results.</p>
1894
1894
  * @public
1895
1895
  */
1896
- NextToken?: string;
1896
+ NextToken?: string | undefined;
1897
1897
  /**
1898
1898
  * <p>The total number of items to return.</p>
1899
1899
  * @public
1900
1900
  */
1901
- MaxResults?: number;
1901
+ MaxResults?: number | undefined;
1902
1902
  }
1903
1903
  /**
1904
1904
  * <p>An object containing information about the output file.</p>
@@ -1939,7 +1939,7 @@ export interface ListEarthObservationJobOutputConfig {
1939
1939
  * <p>Each tag consists of a key and a value.</p>
1940
1940
  * @public
1941
1941
  */
1942
- Tags?: Record<string, string>;
1942
+ Tags?: Record<string, string> | undefined;
1943
1943
  }
1944
1944
  /**
1945
1945
  * @public
@@ -1955,7 +1955,7 @@ export interface ListEarthObservationJobOutput {
1955
1955
  * Use it in your next request to receive the next set of results.</p>
1956
1956
  * @public
1957
1957
  */
1958
- NextToken?: string;
1958
+ NextToken?: string | undefined;
1959
1959
  }
1960
1960
  /**
1961
1961
  * <p>The input for the time-range filter.</p>
@@ -1992,12 +1992,12 @@ export interface RasterDataCollectionQueryInput {
1992
1992
  * <p>The area of interest being queried for the raster data collection.</p>
1993
1993
  * @public
1994
1994
  */
1995
- AreaOfInterest?: AreaOfInterest;
1995
+ AreaOfInterest?: AreaOfInterest | undefined;
1996
1996
  /**
1997
1997
  * <p>The list of Property filters used in the Raster Data Collection Query.</p>
1998
1998
  * @public
1999
1999
  */
2000
- PropertyFilters?: PropertyFilters;
2000
+ PropertyFilters?: PropertyFilters | undefined;
2001
2001
  }
2002
2002
  /**
2003
2003
  * <p>Input configuration information.</p>
@@ -2008,13 +2008,13 @@ export interface InputConfigInput {
2008
2008
  * <p>The Amazon Resource Name (ARN) of the previous Earth Observation job.</p>
2009
2009
  * @public
2010
2010
  */
2011
- PreviousEarthObservationJobArn?: string;
2011
+ PreviousEarthObservationJobArn?: string | undefined;
2012
2012
  /**
2013
2013
  * <p>The structure representing the RasterDataCollection Query consisting of
2014
2014
  * the Area of Interest, RasterDataCollectionArn,TimeRange and Property Filters.</p>
2015
2015
  * @public
2016
2016
  */
2017
- RasterDataCollectionQuery?: RasterDataCollectionQueryInput;
2017
+ RasterDataCollectionQuery?: RasterDataCollectionQueryInput | undefined;
2018
2018
  }
2019
2019
  /**
2020
2020
  * @public
@@ -2029,12 +2029,12 @@ export interface StartEarthObservationJobInput {
2029
2029
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2030
2030
  * @public
2031
2031
  */
2032
- ClientToken?: string;
2032
+ ClientToken?: string | undefined;
2033
2033
  /**
2034
2034
  * <p>The Key Management Service key ID for server-side encryption.</p>
2035
2035
  * @public
2036
2036
  */
2037
- KmsKeyId?: string;
2037
+ KmsKeyId?: string | undefined;
2038
2038
  /**
2039
2039
  * <p>Input configuration information for the Earth Observation job.</p>
2040
2040
  * @public
@@ -2054,7 +2054,7 @@ export interface StartEarthObservationJobInput {
2054
2054
  * <p>Each tag consists of a key and a value.</p>
2055
2055
  * @public
2056
2056
  */
2057
- Tags?: Record<string, string>;
2057
+ Tags?: Record<string, string> | undefined;
2058
2058
  }
2059
2059
  /**
2060
2060
  * @public
@@ -2089,12 +2089,12 @@ export interface StartEarthObservationJobOutput {
2089
2089
  * <p>The Key Management Service key ID for server-side encryption.</p>
2090
2090
  * @public
2091
2091
  */
2092
- KmsKeyId?: string;
2092
+ KmsKeyId?: string | undefined;
2093
2093
  /**
2094
2094
  * <p>Input configuration information for the Earth Observation job.</p>
2095
2095
  * @public
2096
2096
  */
2097
- InputConfig?: InputConfigOutput;
2097
+ InputConfig?: InputConfigOutput | undefined;
2098
2098
  /**
2099
2099
  * <p>An object containing information about the job configuration.</p>
2100
2100
  * @public
@@ -2109,7 +2109,7 @@ export interface StartEarthObservationJobOutput {
2109
2109
  * <p>Each tag consists of a key and a value.</p>
2110
2110
  * @public
2111
2111
  */
2112
- Tags?: Record<string, string>;
2112
+ Tags?: Record<string, string> | undefined;
2113
2113
  }
2114
2114
  /**
2115
2115
  * @public
@@ -2140,7 +2140,7 @@ export interface VectorEnrichmentJobS3Data {
2140
2140
  * <p>The Key Management Service key ID for server-side encryption.</p>
2141
2141
  * @public
2142
2142
  */
2143
- KmsKeyId?: string;
2143
+ KmsKeyId?: string | undefined;
2144
2144
  }
2145
2145
  /**
2146
2146
  * <p>An object containing information about the output file.</p>
@@ -2166,7 +2166,7 @@ export interface ExportVectorEnrichmentJobInput {
2166
2166
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2167
2167
  * @public
2168
2168
  */
2169
- ClientToken?: string;
2169
+ ClientToken?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>The Amazon Resource Name (ARN) of the IAM rolewith permission to upload to the location in OutputConfig.</p>
2172
2172
  * @public
@@ -2293,7 +2293,7 @@ export interface GetRasterDataCollectionOutput {
2293
2293
  * <p>Each tag consists of a key and a value.</p>
2294
2294
  * @public
2295
2295
  */
2296
- Tags?: Record<string, string>;
2296
+ Tags?: Record<string, string> | undefined;
2297
2297
  }
2298
2298
  /**
2299
2299
  * @public
@@ -2332,13 +2332,13 @@ export interface VectorEnrichmentJobErrorDetails {
2332
2332
  * <p>The type of error generated during the Vector Enrichment job.</p>
2333
2333
  * @public
2334
2334
  */
2335
- ErrorType?: VectorEnrichmentJobErrorType;
2335
+ ErrorType?: VectorEnrichmentJobErrorType | undefined;
2336
2336
  /**
2337
2337
  * <p>A message that you define and then is processed and rendered by
2338
2338
  * the Vector Enrichment job when the error occurs.</p>
2339
2339
  * @public
2340
2340
  */
2341
- ErrorMessage?: string;
2341
+ ErrorMessage?: string | undefined;
2342
2342
  }
2343
2343
  /**
2344
2344
  * @public
@@ -2361,12 +2361,12 @@ export interface VectorEnrichmentJobExportErrorDetails {
2361
2361
  * <p>The output error details for an Export operation on a Vector Enrichment job.</p>
2362
2362
  * @public
2363
2363
  */
2364
- Type?: VectorEnrichmentJobExportErrorType;
2364
+ Type?: VectorEnrichmentJobExportErrorType | undefined;
2365
2365
  /**
2366
2366
  * <p>The message providing details about the errors generated during the Vector Enrichment job.</p>
2367
2367
  * @public
2368
2368
  */
2369
- Message?: string;
2369
+ Message?: string | undefined;
2370
2370
  }
2371
2371
  /**
2372
2372
  * <p>The input structure for the data source that represents the storage type of the input data objects.</p>
@@ -2577,7 +2577,7 @@ export interface GetVectorEnrichmentJobOutput {
2577
2577
  * <p>The Key Management Service key ID for server-side encryption.</p>
2578
2578
  * @public
2579
2579
  */
2580
- KmsKeyId?: string;
2580
+ KmsKeyId?: string | undefined;
2581
2581
  /**
2582
2582
  * <p>Input configuration information for the Vector Enrichment job.</p>
2583
2583
  * @public
@@ -2597,22 +2597,22 @@ export interface GetVectorEnrichmentJobOutput {
2597
2597
  * <p>Details about the errors generated during the Vector Enrichment job.</p>
2598
2598
  * @public
2599
2599
  */
2600
- ErrorDetails?: VectorEnrichmentJobErrorDetails;
2600
+ ErrorDetails?: VectorEnrichmentJobErrorDetails | undefined;
2601
2601
  /**
2602
2602
  * <p>The export status of the Vector Enrichment job being initiated.</p>
2603
2603
  * @public
2604
2604
  */
2605
- ExportStatus?: VectorEnrichmentJobExportStatus;
2605
+ ExportStatus?: VectorEnrichmentJobExportStatus | undefined;
2606
2606
  /**
2607
2607
  * <p>Details about the errors generated during the ExportVectorEnrichmentJob.</p>
2608
2608
  * @public
2609
2609
  */
2610
- ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails;
2610
+ ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails | undefined;
2611
2611
  /**
2612
2612
  * <p>Each tag consists of a key and a value.</p>
2613
2613
  * @public
2614
2614
  */
2615
- Tags?: Record<string, string>;
2615
+ Tags?: Record<string, string> | undefined;
2616
2616
  }
2617
2617
  /**
2618
2618
  * <p>Properties associated with the Item.</p>
@@ -2623,24 +2623,24 @@ export interface Properties {
2623
2623
  * <p>Estimate of cloud cover.</p>
2624
2624
  * @public
2625
2625
  */
2626
- EoCloudCover?: number;
2626
+ EoCloudCover?: number | undefined;
2627
2627
  /**
2628
2628
  * <p>The angle from the sensor between nadir (straight down) and the scene center. Measured in degrees (0-90).</p>
2629
2629
  * @public
2630
2630
  */
2631
- ViewOffNadir?: number;
2631
+ ViewOffNadir?: number | undefined;
2632
2632
  /**
2633
2633
  * <p>The sun azimuth angle. From the scene center point on the ground, this is the angle between truth north and the sun.
2634
2634
  * Measured clockwise in degrees (0-360).</p>
2635
2635
  * @public
2636
2636
  */
2637
- ViewSunAzimuth?: number;
2637
+ ViewSunAzimuth?: number | undefined;
2638
2638
  /**
2639
2639
  * <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).
2640
2640
  * 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>
2641
2641
  * @public
2642
2642
  */
2643
- ViewSunElevation?: number;
2643
+ ViewSunElevation?: number | undefined;
2644
2644
  /**
2645
2645
  * <p>Platform property. Platform refers to the unique name
2646
2646
  * of the specific platform the instrument is attached to.
@@ -2648,12 +2648,12 @@ export interface Properties {
2648
2648
  * the satellite, eg. landsat-8 (Landsat-8), sentinel-2a.</p>
2649
2649
  * @public
2650
2650
  */
2651
- Platform?: string;
2651
+ Platform?: string | undefined;
2652
2652
  /**
2653
2653
  * <p>Land cloud cover for Landsat Data Collection.</p>
2654
2654
  * @public
2655
2655
  */
2656
- LandsatCloudCoverLand?: number;
2656
+ LandsatCloudCoverLand?: number | undefined;
2657
2657
  }
2658
2658
  /**
2659
2659
  * <p>The structure representing the items in the response for SearchRasterDataCollection.</p>
@@ -2675,7 +2675,7 @@ export interface ItemSource {
2675
2675
  * can be downloaded or streamed, each with a unique key.</p>
2676
2676
  * @public
2677
2677
  */
2678
- Assets?: Record<string, AssetValue>;
2678
+ Assets?: Record<string, AssetValue> | undefined;
2679
2679
  /**
2680
2680
  * <p>The searchable date and time of the item, in UTC.</p>
2681
2681
  * @public
@@ -2685,7 +2685,7 @@ export interface ItemSource {
2685
2685
  * <p>This field contains additional properties of the item.</p>
2686
2686
  * @public
2687
2687
  */
2688
- Properties?: Properties;
2688
+ Properties?: Properties | undefined;
2689
2689
  }
2690
2690
  /**
2691
2691
  * @public
@@ -2696,12 +2696,12 @@ export interface ListRasterDataCollectionsInput {
2696
2696
  * Use it in your next request to receive the next set of results.</p>
2697
2697
  * @public
2698
2698
  */
2699
- NextToken?: string;
2699
+ NextToken?: string | undefined;
2700
2700
  /**
2701
2701
  * <p>The total number of items to return.</p>
2702
2702
  * @public
2703
2703
  */
2704
- MaxResults?: number;
2704
+ MaxResults?: number | undefined;
2705
2705
  }
2706
2706
  /**
2707
2707
  * @public
@@ -2717,7 +2717,7 @@ export interface ListRasterDataCollectionsOutput {
2717
2717
  * Use it in your next request to receive the next set of results.</p>
2718
2718
  * @public
2719
2719
  */
2720
- NextToken?: string;
2720
+ NextToken?: string | undefined;
2721
2721
  }
2722
2722
  /**
2723
2723
  * @public
@@ -2737,7 +2737,7 @@ export interface ListTagsForResourceResponse {
2737
2737
  * <p>Each tag consists of a key and a value.</p>
2738
2738
  * @public
2739
2739
  */
2740
- Tags?: Record<string, string>;
2740
+ Tags?: Record<string, string> | undefined;
2741
2741
  }
2742
2742
  /**
2743
2743
  * @public
@@ -2747,28 +2747,28 @@ export interface ListVectorEnrichmentJobInput {
2747
2747
  * <p>A filter that retrieves only jobs with a specific status.</p>
2748
2748
  * @public
2749
2749
  */
2750
- StatusEquals?: string;
2750
+ StatusEquals?: string | undefined;
2751
2751
  /**
2752
2752
  * <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
2753
2753
  * @public
2754
2754
  */
2755
- SortOrder?: SortOrder;
2755
+ SortOrder?: SortOrder | undefined;
2756
2756
  /**
2757
2757
  * <p>The parameter by which to sort the results.</p>
2758
2758
  * @public
2759
2759
  */
2760
- SortBy?: string;
2760
+ SortBy?: string | undefined;
2761
2761
  /**
2762
2762
  * <p>If the previous response was truncated, you receive this token.
2763
2763
  * Use it in your next request to receive the next set of results.</p>
2764
2764
  * @public
2765
2765
  */
2766
- NextToken?: string;
2766
+ NextToken?: string | undefined;
2767
2767
  /**
2768
2768
  * <p>The maximum number of items to return.</p>
2769
2769
  * @public
2770
2770
  */
2771
- MaxResults?: number;
2771
+ MaxResults?: number | undefined;
2772
2772
  }
2773
2773
  /**
2774
2774
  * <p>An object containing information about the output file.</p>
@@ -2809,7 +2809,7 @@ export interface ListVectorEnrichmentJobOutputConfig {
2809
2809
  * <p>Each tag consists of a key and a value.</p>
2810
2810
  * @public
2811
2811
  */
2812
- Tags?: Record<string, string>;
2812
+ Tags?: Record<string, string> | undefined;
2813
2813
  }
2814
2814
  /**
2815
2815
  * @public
@@ -2825,7 +2825,7 @@ export interface ListVectorEnrichmentJobOutput {
2825
2825
  * Use it in your next request to receive the next set of results.</p>
2826
2826
  * @public
2827
2827
  */
2828
- NextToken?: string;
2828
+ NextToken?: string | undefined;
2829
2829
  }
2830
2830
  /**
2831
2831
  * <p>This is a RasterDataCollectionQueryInput containing AreaOfInterest, Time Range filter and Property filters.</p>
@@ -2841,17 +2841,17 @@ export interface RasterDataCollectionQueryWithBandFilterInput {
2841
2841
  * <p>The Area of interest to be used in the search query.</p>
2842
2842
  * @public
2843
2843
  */
2844
- AreaOfInterest?: AreaOfInterest;
2844
+ AreaOfInterest?: AreaOfInterest | undefined;
2845
2845
  /**
2846
2846
  * <p>The Property Filters used in the search query.</p>
2847
2847
  * @public
2848
2848
  */
2849
- PropertyFilters?: PropertyFilters;
2849
+ PropertyFilters?: PropertyFilters | undefined;
2850
2850
  /**
2851
2851
  * <p>The list of Bands to be displayed in the result for each item.</p>
2852
2852
  * @public
2853
2853
  */
2854
- BandFilter?: string[];
2854
+ BandFilter?: string[] | undefined;
2855
2855
  }
2856
2856
  /**
2857
2857
  * @public
@@ -2873,7 +2873,7 @@ export interface SearchRasterDataCollectionInput {
2873
2873
  * Use it in your next request to receive the next set of results.</p>
2874
2874
  * @public
2875
2875
  */
2876
- NextToken?: string;
2876
+ NextToken?: string | undefined;
2877
2877
  }
2878
2878
  /**
2879
2879
  * @public
@@ -2889,12 +2889,12 @@ export interface SearchRasterDataCollectionOutput {
2889
2889
  * Use it in your next request to receive the next set of results.</p>
2890
2890
  * @public
2891
2891
  */
2892
- NextToken?: string;
2892
+ NextToken?: string | undefined;
2893
2893
  /**
2894
2894
  * <p>List of items matching the Raster DataCollectionQuery.</p>
2895
2895
  * @public
2896
2896
  */
2897
- Items?: ItemSource[];
2897
+ Items?: ItemSource[] | undefined;
2898
2898
  }
2899
2899
  /**
2900
2900
  * @public
@@ -2949,12 +2949,12 @@ export interface StartVectorEnrichmentJobInput {
2949
2949
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2950
2950
  * @public
2951
2951
  */
2952
- ClientToken?: string;
2952
+ ClientToken?: string | undefined;
2953
2953
  /**
2954
2954
  * <p>The Key Management Service key ID for server-side encryption.</p>
2955
2955
  * @public
2956
2956
  */
2957
- KmsKeyId?: string;
2957
+ KmsKeyId?: string | undefined;
2958
2958
  /**
2959
2959
  * <p>Input configuration information for the Vector Enrichment job.</p>
2960
2960
  * @public
@@ -2974,7 +2974,7 @@ export interface StartVectorEnrichmentJobInput {
2974
2974
  * <p>Each tag consists of a key and a value.</p>
2975
2975
  * @public
2976
2976
  */
2977
- Tags?: Record<string, string>;
2977
+ Tags?: Record<string, string> | undefined;
2978
2978
  }
2979
2979
  /**
2980
2980
  * @public
@@ -3014,7 +3014,7 @@ export interface StartVectorEnrichmentJobOutput {
3014
3014
  * <p>The Key Management Service key ID for server-side encryption.</p>
3015
3015
  * @public
3016
3016
  */
3017
- KmsKeyId?: string;
3017
+ KmsKeyId?: string | undefined;
3018
3018
  /**
3019
3019
  * <p>Input configuration information for starting the Vector Enrichment job.</p>
3020
3020
  * @public
@@ -3034,7 +3034,7 @@ export interface StartVectorEnrichmentJobOutput {
3034
3034
  * <p>Each tag consists of a key and a value.</p>
3035
3035
  * @public
3036
3036
  */
3037
- Tags?: Record<string, string>;
3037
+ Tags?: Record<string, string> | undefined;
3038
3038
  }
3039
3039
  /**
3040
3040
  * @public