@aws-sdk/client-sagemaker-geospatial 3.529.1 → 3.535.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.
Files changed (51) hide show
  1. package/dist-types/SageMakerGeospatial.d.ts +4 -1
  2. package/dist-types/SageMakerGeospatialClient.d.ts +1 -1
  3. package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +2 -1
  4. package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +2 -1
  5. package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +2 -1
  6. package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +2 -1
  7. package/dist-types/commands/GetEarthObservationJobCommand.d.ts +2 -1
  8. package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +2 -1
  9. package/dist-types/commands/GetTileCommand.d.ts +3 -2
  10. package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +2 -1
  11. package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +2 -1
  12. package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  14. package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +2 -1
  15. package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +2 -1
  16. package/dist-types/commands/StartEarthObservationJobCommand.d.ts +2 -1
  17. package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +2 -1
  18. package/dist-types/commands/StopEarthObservationJobCommand.d.ts +2 -1
  19. package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +2 -1
  20. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  21. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  22. package/dist-types/models/models_0.d.ts +364 -364
  23. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  24. package/dist-types/runtimeConfig.d.ts +2 -2
  25. package/dist-types/runtimeConfig.native.d.ts +2 -2
  26. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  27. package/dist-types/ts3.4/SageMakerGeospatial.d.ts +3 -0
  28. package/dist-types/ts3.4/commands/DeleteEarthObservationJobCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/DeleteVectorEnrichmentJobCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/ExportEarthObservationJobCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/ExportVectorEnrichmentJobCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/GetEarthObservationJobCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/GetRasterDataCollectionCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/GetTileCommand.d.ts +7 -0
  35. package/dist-types/ts3.4/commands/GetVectorEnrichmentJobCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/ListEarthObservationJobsCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/ListRasterDataCollectionsCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/ListVectorEnrichmentJobsCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/SearchRasterDataCollectionCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/StartEarthObservationJobCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/StartVectorEnrichmentJobCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/StopEarthObservationJobCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/StopVectorEnrichmentJobCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  51. package/package.json +41 -41
@@ -2,8 +2,8 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { StreamingBlobTypes } from "@smithy/types";
3
3
  import { SageMakerGeospatialServiceException as __BaseException } from "./SageMakerGeospatialServiceException";
4
4
  /**
5
- * @public
6
5
  * <p>You do not have sufficient access to perform this action.</p>
6
+ * @public
7
7
  */
8
8
  export declare class AccessDeniedException extends __BaseException {
9
9
  readonly name: "AccessDeniedException";
@@ -161,30 +161,30 @@ export declare const AlgorithmNameResampling: {
161
161
  */
162
162
  export type AlgorithmNameResampling = (typeof AlgorithmNameResampling)[keyof typeof AlgorithmNameResampling];
163
163
  /**
164
- * @public
165
164
  * <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>
165
+ * @public
166
166
  */
167
167
  export interface MultiPolygonGeometryInput {
168
168
  /**
169
- * @public
170
169
  * <p>The coordinates of the multipolygon geometry.</p>
170
+ * @public
171
171
  */
172
172
  Coordinates: number[][][][] | undefined;
173
173
  }
174
174
  /**
175
- * @public
176
175
  * <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>
176
+ * @public
177
177
  */
178
178
  export interface PolygonGeometryInput {
179
179
  /**
180
- * @public
181
180
  * <p>Coordinates representing a Polygon based on the <a href="https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6">GeoJson spec</a>.</p>
181
+ * @public
182
182
  */
183
183
  Coordinates: number[][][] | undefined;
184
184
  }
185
185
  /**
186
- * @public
187
186
  * <p>A GeoJSON object representing the geographic extent in the coordinate space.</p>
187
+ * @public
188
188
  */
189
189
  export type AreaOfInterestGeometry = AreaOfInterestGeometry.MultiPolygonGeometryMember | AreaOfInterestGeometry.PolygonGeometryMember | AreaOfInterestGeometry.$UnknownMember;
190
190
  /**
@@ -192,8 +192,8 @@ export type AreaOfInterestGeometry = AreaOfInterestGeometry.MultiPolygonGeometry
192
192
  */
193
193
  export declare namespace AreaOfInterestGeometry {
194
194
  /**
195
- * @public
196
195
  * <p>The structure representing Polygon Geometry.</p>
196
+ * @public
197
197
  */
198
198
  interface PolygonGeometryMember {
199
199
  PolygonGeometry: PolygonGeometryInput;
@@ -201,8 +201,8 @@ export declare namespace AreaOfInterestGeometry {
201
201
  $unknown?: never;
202
202
  }
203
203
  /**
204
- * @public
205
204
  * <p>The structure representing the MultiPolygon Geometry.</p>
205
+ * @public
206
206
  */
207
207
  interface MultiPolygonGeometryMember {
208
208
  PolygonGeometry?: never;
@@ -225,8 +225,8 @@ export declare namespace AreaOfInterestGeometry {
225
225
  const visit: <T>(value: AreaOfInterestGeometry, visitor: Visitor<T>) => T;
226
226
  }
227
227
  /**
228
- * @public
229
228
  * <p>The geographic extent of the Earth Observation job.</p>
229
+ * @public
230
230
  */
231
231
  export type AreaOfInterest = AreaOfInterest.AreaOfInterestGeometryMember | AreaOfInterest.$UnknownMember;
232
232
  /**
@@ -234,8 +234,8 @@ export type AreaOfInterest = AreaOfInterest.AreaOfInterestGeometryMember | AreaO
234
234
  */
235
235
  export declare namespace AreaOfInterest {
236
236
  /**
237
- * @public
238
237
  * <p>A GeoJSON object representing the geographic extent in the coordinate space.</p>
238
+ * @public
239
239
  */
240
240
  interface AreaOfInterestGeometryMember {
241
241
  AreaOfInterestGeometry: AreaOfInterestGeometry;
@@ -255,13 +255,13 @@ export declare namespace AreaOfInterest {
255
255
  const visit: <T>(value: AreaOfInterest, visitor: Visitor<T>) => T;
256
256
  }
257
257
  /**
258
- * @public
259
258
  * <p>The structure containing the asset properties.</p>
259
+ * @public
260
260
  */
261
261
  export interface AssetValue {
262
262
  /**
263
- * @public
264
263
  * <p>Link to the asset object.</p>
264
+ * @public
265
265
  */
266
266
  Href?: string;
267
267
  }
@@ -296,80 +296,80 @@ export declare const OutputType: {
296
296
  */
297
297
  export type OutputType = (typeof OutputType)[keyof typeof OutputType];
298
298
  /**
299
- * @public
300
299
  * <p>Represents an arithmetic operation to compute spectral index.</p>
300
+ * @public
301
301
  */
302
302
  export interface Operation {
303
303
  /**
304
- * @public
305
304
  * <p>The name of the operation.</p>
305
+ * @public
306
306
  */
307
307
  Name: string | undefined;
308
308
  /**
309
- * @public
310
309
  * <p>Textual representation of the math operation; Equation used to compute the spectral index.</p>
310
+ * @public
311
311
  */
312
312
  Equation: string | undefined;
313
313
  /**
314
- * @public
315
314
  * <p>The type of the operation.</p>
315
+ * @public
316
316
  */
317
317
  OutputType?: OutputType;
318
318
  }
319
319
  /**
320
- * @public
321
320
  * <p>Input object defining the custom BandMath indices to compute.</p>
321
+ * @public
322
322
  */
323
323
  export interface CustomIndicesInput {
324
324
  /**
325
- * @public
326
325
  * <p>A list of BandMath indices to compute.</p>
326
+ * @public
327
327
  */
328
328
  Operations?: Operation[];
329
329
  }
330
330
  /**
331
- * @public
332
331
  * <p>Input structure for the BandMath operation type.
333
332
  * Defines Predefined and CustomIndices to be computed using BandMath.</p>
333
+ * @public
334
334
  */
335
335
  export interface BandMathConfigInput {
336
336
  /**
337
- * @public
338
337
  * <p>One or many of the supported predefined indices to compute.
339
338
  * Allowed values: <code>NDVI</code>, <code>EVI2</code>, <code>MSAVI</code>,
340
339
  * <code>NDWI</code>, <code>NDMI</code>, <code>NDSI</code>, and <code>WDRVI</code>.</p>
340
+ * @public
341
341
  */
342
342
  PredefinedIndices?: string[];
343
343
  /**
344
- * @public
345
344
  * <p>CustomIndices that are computed.</p>
345
+ * @public
346
346
  */
347
347
  CustomIndices?: CustomIndicesInput;
348
348
  }
349
349
  /**
350
- * @public
351
350
  * <p>Input structure for CloudMasking operation type.</p>
351
+ * @public
352
352
  */
353
353
  export interface CloudMaskingConfigInput {
354
354
  }
355
355
  /**
356
- * @public
357
356
  * <p>Input structure for Cloud Removal Operation type</p>
357
+ * @public
358
358
  */
359
359
  export interface CloudRemovalConfigInput {
360
360
  /**
361
- * @public
362
361
  * <p>The name of the algorithm used for cloud removal.</p>
362
+ * @public
363
363
  */
364
364
  AlgorithmName?: AlgorithmNameCloudRemoval;
365
365
  /**
366
- * @public
367
366
  * <p>The interpolation value you provide for cloud removal.</p>
367
+ * @public
368
368
  */
369
369
  InterpolationValue?: string;
370
370
  /**
371
- * @public
372
371
  * <p>TargetBands to be returned in the output of CloudRemoval operation.</p>
372
+ * @public
373
373
  */
374
374
  TargetBands?: string[];
375
375
  }
@@ -396,16 +396,16 @@ export declare const ComparisonOperator: {
396
396
  */
397
397
  export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
398
398
  /**
399
- * @public
400
399
  * <p>Updating or deleting a resource can cause an inconsistent state.</p>
400
+ * @public
401
401
  */
402
402
  export declare class ConflictException extends __BaseException {
403
403
  readonly name: "ConflictException";
404
404
  readonly $fault: "client";
405
405
  Message: string | undefined;
406
406
  /**
407
- * @public
408
407
  * <p>Identifier of the resource affected.</p>
408
+ * @public
409
409
  */
410
410
  ResourceId?: string;
411
411
  /**
@@ -414,28 +414,28 @@ export declare class ConflictException extends __BaseException {
414
414
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
415
415
  }
416
416
  /**
417
- * @public
418
417
  * <p>The structure representing the filters supported by a RasterDataCollection.</p>
418
+ * @public
419
419
  */
420
420
  export interface Filter {
421
421
  /**
422
- * @public
423
422
  * <p>The name of the filter.</p>
423
+ * @public
424
424
  */
425
425
  Name: string | undefined;
426
426
  /**
427
- * @public
428
427
  * <p>The type of the filter being used.</p>
428
+ * @public
429
429
  */
430
430
  Type: string | undefined;
431
431
  /**
432
- * @public
433
432
  * <p>The minimum value of the filter.</p>
433
+ * @public
434
434
  */
435
435
  Minimum?: number;
436
436
  /**
437
- * @public
438
437
  * <p>The maximum value of the filter.</p>
438
+ * @public
439
439
  */
440
440
  Maximum?: number;
441
441
  }
@@ -462,43 +462,43 @@ export declare const DataCollectionType: {
462
462
  */
463
463
  export type DataCollectionType = (typeof DataCollectionType)[keyof typeof DataCollectionType];
464
464
  /**
465
- * @public
466
465
  * <p>Response object containing details for a specific RasterDataCollection.</p>
466
+ * @public
467
467
  */
468
468
  export interface RasterDataCollectionMetadata {
469
469
  /**
470
- * @public
471
470
  * <p>The name of the raster data collection.</p>
471
+ * @public
472
472
  */
473
473
  Name: string | undefined;
474
474
  /**
475
- * @public
476
475
  * <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
476
+ * @public
477
477
  */
478
478
  Arn: string | undefined;
479
479
  /**
480
- * @public
481
480
  * <p>The type of raster data collection.</p>
481
+ * @public
482
482
  */
483
483
  Type: DataCollectionType | undefined;
484
484
  /**
485
- * @public
486
485
  * <p>A description of the raster data collection.</p>
486
+ * @public
487
487
  */
488
488
  Description: string | undefined;
489
489
  /**
490
- * @public
491
490
  * <p>The description URL of the raster data collection.</p>
491
+ * @public
492
492
  */
493
493
  DescriptionPageUrl?: string;
494
494
  /**
495
- * @public
496
495
  * <p>The list of filters supported by the raster data collection.</p>
496
+ * @public
497
497
  */
498
498
  SupportedFilters: Filter[] | undefined;
499
499
  /**
500
- * @public
501
500
  * <p>Each tag consists of a key and a value.</p>
501
+ * @public
502
502
  */
503
503
  Tags?: Record<string, string>;
504
504
  }
@@ -507,8 +507,8 @@ export interface RasterDataCollectionMetadata {
507
507
  */
508
508
  export interface DeleteEarthObservationJobInput {
509
509
  /**
510
- * @public
511
510
  * <p>The Amazon Resource Name (ARN) of the Earth Observation job being deleted.</p>
511
+ * @public
512
512
  */
513
513
  Arn: string | undefined;
514
514
  }
@@ -518,16 +518,16 @@ export interface DeleteEarthObservationJobInput {
518
518
  export interface DeleteEarthObservationJobOutput {
519
519
  }
520
520
  /**
521
- * @public
522
521
  * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
522
+ * @public
523
523
  */
524
524
  export declare class InternalServerException extends __BaseException {
525
525
  readonly name: "InternalServerException";
526
526
  readonly $fault: "server";
527
527
  Message: string | undefined;
528
528
  /**
529
- * @public
530
529
  * <p/>
530
+ * @public
531
531
  */
532
532
  ResourceId?: string;
533
533
  /**
@@ -536,16 +536,16 @@ export declare class InternalServerException extends __BaseException {
536
536
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
537
537
  }
538
538
  /**
539
- * @public
540
539
  * <p>The request references a resource which does not exist.</p>
540
+ * @public
541
541
  */
542
542
  export declare class ResourceNotFoundException extends __BaseException {
543
543
  readonly name: "ResourceNotFoundException";
544
544
  readonly $fault: "client";
545
545
  Message: string | undefined;
546
546
  /**
547
- * @public
548
547
  * <p>Identifier of the resource that was not found.</p>
548
+ * @public
549
549
  */
550
550
  ResourceId?: string;
551
551
  /**
@@ -554,16 +554,16 @@ export declare class ResourceNotFoundException extends __BaseException {
554
554
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
555
555
  }
556
556
  /**
557
- * @public
558
557
  * <p>The request was denied due to request throttling.</p>
558
+ * @public
559
559
  */
560
560
  export declare class ThrottlingException extends __BaseException {
561
561
  readonly name: "ThrottlingException";
562
562
  readonly $fault: "client";
563
563
  Message: string | undefined;
564
564
  /**
565
- * @public
566
565
  * <p/>
566
+ * @public
567
567
  */
568
568
  ResourceId?: string;
569
569
  /**
@@ -572,16 +572,16 @@ export declare class ThrottlingException extends __BaseException {
572
572
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
573
573
  }
574
574
  /**
575
- * @public
576
575
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
576
+ * @public
577
577
  */
578
578
  export declare class ValidationException extends __BaseException {
579
579
  readonly name: "ValidationException";
580
580
  readonly $fault: "client";
581
581
  Message: string | undefined;
582
582
  /**
583
- * @public
584
583
  * <p/>
584
+ * @public
585
585
  */
586
586
  ResourceId?: string;
587
587
  /**
@@ -594,8 +594,8 @@ export declare class ValidationException extends __BaseException {
594
594
  */
595
595
  export interface DeleteVectorEnrichmentJobInput {
596
596
  /**
597
- * @public
598
597
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job being deleted.</p>
598
+ * @public
599
599
  */
600
600
  Arn: string | undefined;
601
601
  }
@@ -605,29 +605,29 @@ export interface DeleteVectorEnrichmentJobInput {
605
605
  export interface DeleteVectorEnrichmentJobOutput {
606
606
  }
607
607
  /**
608
- * @public
609
608
  * <p>The structure containing the Amazon S3 path to export the Earth Observation job output.</p>
609
+ * @public
610
610
  */
611
611
  export interface ExportS3DataInput {
612
612
  /**
613
- * @public
614
613
  * <p>The URL to the Amazon S3 data input.</p>
614
+ * @public
615
615
  */
616
616
  S3Uri: string | undefined;
617
617
  /**
618
- * @public
619
618
  * <p>The Key Management Service key ID for server-side encryption.</p>
619
+ * @public
620
620
  */
621
621
  KmsKeyId?: string;
622
622
  }
623
623
  /**
624
- * @public
625
624
  * <p>The response structure for an OutputConfig returned by an ExportEarthObservationJob.</p>
625
+ * @public
626
626
  */
627
627
  export interface OutputConfigInput {
628
628
  /**
629
- * @public
630
629
  * <p>Path to Amazon S3 storage location for the output configuration file.</p>
630
+ * @public
631
631
  */
632
632
  S3Data: ExportS3DataInput | undefined;
633
633
  }
@@ -636,28 +636,28 @@ export interface OutputConfigInput {
636
636
  */
637
637
  export interface ExportEarthObservationJobInput {
638
638
  /**
639
- * @public
640
639
  * <p>The input Amazon Resource Name (ARN) of the Earth Observation job being exported.</p>
640
+ * @public
641
641
  */
642
642
  Arn: string | undefined;
643
643
  /**
644
- * @public
645
644
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
645
+ * @public
646
646
  */
647
647
  ClientToken?: string;
648
648
  /**
649
- * @public
650
649
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
650
+ * @public
651
651
  */
652
652
  ExecutionRoleArn: string | undefined;
653
653
  /**
654
- * @public
655
654
  * <p>An object containing information about the output file.</p>
655
+ * @public
656
656
  */
657
657
  OutputConfig: OutputConfigInput | undefined;
658
658
  /**
659
- * @public
660
659
  * <p>The source images provided to the Earth Observation job being exported.</p>
660
+ * @public
661
661
  */
662
662
  ExportSourceImages?: boolean;
663
663
  }
@@ -688,47 +688,47 @@ export type EarthObservationJobExportStatus = (typeof EarthObservationJobExportS
688
688
  */
689
689
  export interface ExportEarthObservationJobOutput {
690
690
  /**
691
- * @public
692
691
  * <p>The output Amazon Resource Name (ARN) of the Earth Observation job being exported.</p>
692
+ * @public
693
693
  */
694
694
  Arn: string | undefined;
695
695
  /**
696
- * @public
697
696
  * <p>The creation time.</p>
697
+ * @public
698
698
  */
699
699
  CreationTime: Date | undefined;
700
700
  /**
701
- * @public
702
701
  * <p>The status of the results of the Earth Observation job being exported.</p>
702
+ * @public
703
703
  */
704
704
  ExportStatus: EarthObservationJobExportStatus | undefined;
705
705
  /**
706
- * @public
707
706
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
707
+ * @public
708
708
  */
709
709
  ExecutionRoleArn: string | undefined;
710
710
  /**
711
- * @public
712
711
  * <p>An object containing information about the output file.</p>
712
+ * @public
713
713
  */
714
714
  OutputConfig: OutputConfigInput | undefined;
715
715
  /**
716
- * @public
717
716
  * <p>The source images provided to the Earth Observation job being exported.</p>
717
+ * @public
718
718
  */
719
719
  ExportSourceImages?: boolean;
720
720
  }
721
721
  /**
722
- * @public
723
722
  * <p>You have exceeded the service quota.</p>
723
+ * @public
724
724
  */
725
725
  export declare class ServiceQuotaExceededException extends __BaseException {
726
726
  readonly name: "ServiceQuotaExceededException";
727
727
  readonly $fault: "client";
728
728
  Message: string | undefined;
729
729
  /**
730
- * @public
731
730
  * <p>Identifier of the resource affected.</p>
731
+ * @public
732
732
  */
733
733
  ResourceId?: string;
734
734
  /**
@@ -741,8 +741,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
741
741
  */
742
742
  export interface GetEarthObservationJobInput {
743
743
  /**
744
- * @public
745
744
  * <p>The Amazon Resource Name (ARN) of the Earth Observation job.</p>
745
+ * @public
746
746
  */
747
747
  Arn: string | undefined;
748
748
  }
@@ -765,18 +765,18 @@ export declare const EarthObservationJobErrorType: {
765
765
  */
766
766
  export type EarthObservationJobErrorType = (typeof EarthObservationJobErrorType)[keyof typeof EarthObservationJobErrorType];
767
767
  /**
768
- * @public
769
768
  * <p>The structure representing the errors in an EarthObservationJob.</p>
769
+ * @public
770
770
  */
771
771
  export interface EarthObservationJobErrorDetails {
772
772
  /**
773
- * @public
774
773
  * <p>The type of error in an Earth Observation job.</p>
774
+ * @public
775
775
  */
776
776
  Type?: EarthObservationJobErrorType;
777
777
  /**
778
- * @public
779
778
  * <p>A detailed message describing the error in an Earth Observation job.</p>
779
+ * @public
780
780
  */
781
781
  Message?: string;
782
782
  }
@@ -799,35 +799,35 @@ export declare const ExportErrorType: {
799
799
  */
800
800
  export type ExportErrorType = (typeof ExportErrorType)[keyof typeof ExportErrorType];
801
801
  /**
802
- * @public
803
802
  * <p>The structure representing the errors in an export EarthObservationJob operation.</p>
803
+ * @public
804
804
  */
805
805
  export interface ExportErrorDetailsOutput {
806
806
  /**
807
- * @public
808
807
  * <p>The type of error in an export EarthObservationJob operation.</p>
808
+ * @public
809
809
  */
810
810
  Type?: ExportErrorType;
811
811
  /**
812
- * @public
813
812
  * <p>A detailed message describing the error in an export EarthObservationJob operation.</p>
813
+ * @public
814
814
  */
815
815
  Message?: string;
816
816
  }
817
817
  /**
818
- * @public
819
818
  * <p>The structure for returning the export error details in a GetEarthObservationJob.</p>
819
+ * @public
820
820
  */
821
821
  export interface ExportErrorDetails {
822
822
  /**
823
- * @public
824
823
  * <p>The structure for returning the export error details while exporting results of an Earth Observation job.</p>
824
+ * @public
825
825
  */
826
826
  ExportResults?: ExportErrorDetailsOutput;
827
827
  /**
828
- * @public
829
828
  * <p>The structure for returning the export error details
830
829
  * while exporting the source images of an Earth Observation job.</p>
830
+ * @public
831
831
  */
832
832
  ExportSourceImages?: ExportErrorDetailsOutput;
833
833
  }
@@ -846,118 +846,118 @@ export declare const LogicalOperator: {
846
846
  */
847
847
  export type LogicalOperator = (typeof LogicalOperator)[keyof typeof LogicalOperator];
848
848
  /**
849
- * @public
850
849
  * <p>The structure representing the EoCloudCover filter.</p>
850
+ * @public
851
851
  */
852
852
  export interface EoCloudCoverInput {
853
853
  /**
854
- * @public
855
854
  * <p>Lower bound for EoCloudCover.</p>
855
+ * @public
856
856
  */
857
857
  LowerBound: number | undefined;
858
858
  /**
859
- * @public
860
859
  * <p>Upper bound for EoCloudCover.</p>
860
+ * @public
861
861
  */
862
862
  UpperBound: number | undefined;
863
863
  }
864
864
  /**
865
- * @public
866
865
  * <p>The structure representing Land Cloud Cover property for Landsat data collection.</p>
866
+ * @public
867
867
  */
868
868
  export interface LandsatCloudCoverLandInput {
869
869
  /**
870
- * @public
871
870
  * <p>The minimum value for Land Cloud Cover property filter. This will filter items
872
871
  * having Land Cloud Cover greater than or equal to this value.</p>
872
+ * @public
873
873
  */
874
874
  LowerBound: number | undefined;
875
875
  /**
876
- * @public
877
876
  * <p>The maximum value for Land Cloud Cover property filter.
878
877
  * This will filter items having Land Cloud Cover less than or equal to this value.</p>
878
+ * @public
879
879
  */
880
880
  UpperBound: number | undefined;
881
881
  }
882
882
  /**
883
- * @public
884
883
  * <p>The input structure for specifying Platform.
885
884
  * Platform refers to the unique name of the specific platform the
886
885
  * instrument is attached to. For satellites it is the name of the satellite, eg. landsat-8 (Landsat-8), sentinel-2a.</p>
886
+ * @public
887
887
  */
888
888
  export interface PlatformInput {
889
889
  /**
890
- * @public
891
890
  * <p>The value of the platform.</p>
891
+ * @public
892
892
  */
893
893
  Value: string | undefined;
894
894
  /**
895
- * @public
896
895
  * <p>The ComparisonOperator to use with PlatformInput.</p>
896
+ * @public
897
897
  */
898
898
  ComparisonOperator?: ComparisonOperator;
899
899
  }
900
900
  /**
901
- * @public
902
901
  * <p>The input structure for specifying ViewOffNadir property filter.
903
902
  * ViewOffNadir refers to the angle from the sensor between
904
903
  * nadir (straight down) and the scene center. Measured in degrees (0-90).</p>
904
+ * @public
905
905
  */
906
906
  export interface ViewOffNadirInput {
907
907
  /**
908
- * @public
909
908
  * <p>The minimum value for ViewOffNadir property filter.
910
909
  * This filters items having ViewOffNadir greater than or equal to this value. </p>
910
+ * @public
911
911
  */
912
912
  LowerBound: number | undefined;
913
913
  /**
914
- * @public
915
914
  * <p>The maximum value for ViewOffNadir property filter.
916
915
  * This filters items having ViewOffNadir lesser than or equal to this value.</p>
916
+ * @public
917
917
  */
918
918
  UpperBound: number | undefined;
919
919
  }
920
920
  /**
921
- * @public
922
921
  * <p>The input structure for specifying ViewSunAzimuth property filter.
923
922
  * ViewSunAzimuth refers to the Sun azimuth angle.
924
923
  * From the scene center point on the ground,
925
924
  * this is the angle between truth north and the sun.
926
925
  * Measured clockwise in degrees (0-360).</p>
926
+ * @public
927
927
  */
928
928
  export interface ViewSunAzimuthInput {
929
929
  /**
930
- * @public
931
930
  * <p>The minimum value for ViewSunAzimuth property filter.
932
931
  * This filters items having ViewSunAzimuth greater than or equal to this value.</p>
932
+ * @public
933
933
  */
934
934
  LowerBound: number | undefined;
935
935
  /**
936
- * @public
937
936
  * <p>The maximum value for ViewSunAzimuth property filter.
938
937
  * This filters items having ViewSunAzimuth lesser than or equal to this value.</p>
938
+ * @public
939
939
  */
940
940
  UpperBound: number | undefined;
941
941
  }
942
942
  /**
943
- * @public
944
943
  * <p>The input structure for specifying ViewSunElevation angle property filter. </p>
944
+ * @public
945
945
  */
946
946
  export interface ViewSunElevationInput {
947
947
  /**
948
- * @public
949
948
  * <p>The lower bound to view the sun elevation.</p>
949
+ * @public
950
950
  */
951
951
  LowerBound: number | undefined;
952
952
  /**
953
- * @public
954
953
  * <p>The upper bound to view the sun elevation.</p>
954
+ * @public
955
955
  */
956
956
  UpperBound: number | undefined;
957
957
  }
958
958
  /**
959
- * @public
960
959
  * <p>Represents a single searchable property to search on.</p>
960
+ * @public
961
961
  */
962
962
  export type Property = Property.EoCloudCoverMember | Property.LandsatCloudCoverLandMember | Property.PlatformMember | Property.ViewOffNadirMember | Property.ViewSunAzimuthMember | Property.ViewSunElevationMember | Property.$UnknownMember;
963
963
  /**
@@ -965,8 +965,8 @@ export type Property = Property.EoCloudCoverMember | Property.LandsatCloudCoverL
965
965
  */
966
966
  export declare namespace Property {
967
967
  /**
968
- * @public
969
968
  * <p>The structure representing EoCloudCover property filter containing a lower bound and upper bound.</p>
969
+ * @public
970
970
  */
971
971
  interface EoCloudCoverMember {
972
972
  EoCloudCover: EoCloudCoverInput;
@@ -978,8 +978,8 @@ export declare namespace Property {
978
978
  $unknown?: never;
979
979
  }
980
980
  /**
981
- * @public
982
981
  * <p>The structure representing ViewOffNadir property filter containing a lower bound and upper bound.</p>
982
+ * @public
983
983
  */
984
984
  interface ViewOffNadirMember {
985
985
  EoCloudCover?: never;
@@ -991,8 +991,8 @@ export declare namespace Property {
991
991
  $unknown?: never;
992
992
  }
993
993
  /**
994
- * @public
995
994
  * <p>The structure representing ViewSunAzimuth property filter containing a lower bound and upper bound.</p>
995
+ * @public
996
996
  */
997
997
  interface ViewSunAzimuthMember {
998
998
  EoCloudCover?: never;
@@ -1004,8 +1004,8 @@ export declare namespace Property {
1004
1004
  $unknown?: never;
1005
1005
  }
1006
1006
  /**
1007
- * @public
1008
1007
  * <p>The structure representing ViewSunElevation property filter containing a lower bound and upper bound.</p>
1008
+ * @public
1009
1009
  */
1010
1010
  interface ViewSunElevationMember {
1011
1011
  EoCloudCover?: never;
@@ -1017,8 +1017,8 @@ export declare namespace Property {
1017
1017
  $unknown?: never;
1018
1018
  }
1019
1019
  /**
1020
- * @public
1021
1020
  * <p>The structure representing Platform property filter consisting of value and comparison operator.</p>
1021
+ * @public
1022
1022
  */
1023
1023
  interface PlatformMember {
1024
1024
  EoCloudCover?: never;
@@ -1030,9 +1030,9 @@ export declare namespace Property {
1030
1030
  $unknown?: never;
1031
1031
  }
1032
1032
  /**
1033
- * @public
1034
1033
  * <p>The structure representing Land Cloud Cover property filter
1035
1034
  * for Landsat collection containing a lower bound and upper bound.</p>
1035
+ * @public
1036
1036
  */
1037
1037
  interface LandsatCloudCoverLandMember {
1038
1038
  EoCloudCover?: never;
@@ -1067,116 +1067,116 @@ export declare namespace Property {
1067
1067
  const visit: <T>(value: Property, visitor: Visitor<T>) => T;
1068
1068
  }
1069
1069
  /**
1070
- * @public
1071
1070
  * <p>The structure representing a single PropertyFilter.</p>
1071
+ * @public
1072
1072
  */
1073
1073
  export interface PropertyFilter {
1074
1074
  /**
1075
- * @public
1076
1075
  * <p>Represents a single property to match with when searching a raster data collection.</p>
1076
+ * @public
1077
1077
  */
1078
1078
  Property: Property | undefined;
1079
1079
  }
1080
1080
  /**
1081
- * @public
1082
1081
  * <p>A list of PropertyFilter objects.</p>
1082
+ * @public
1083
1083
  */
1084
1084
  export interface PropertyFilters {
1085
1085
  /**
1086
- * @public
1087
1086
  * <p>A list of Property Filters.</p>
1087
+ * @public
1088
1088
  */
1089
1089
  Properties?: PropertyFilter[];
1090
1090
  /**
1091
- * @public
1092
1091
  * <p>The Logical Operator used to combine the Property Filters.</p>
1092
+ * @public
1093
1093
  */
1094
1094
  LogicalOperator?: LogicalOperator;
1095
1095
  }
1096
1096
  /**
1097
- * @public
1098
1097
  * <p>The output structure of the time range filter.</p>
1098
+ * @public
1099
1099
  */
1100
1100
  export interface TimeRangeFilterOutput {
1101
1101
  /**
1102
- * @public
1103
1102
  * <p>The starting time for the time range filter.</p>
1103
+ * @public
1104
1104
  */
1105
1105
  StartTime: Date | undefined;
1106
1106
  /**
1107
- * @public
1108
1107
  * <p>The ending time for the time range filter.</p>
1108
+ * @public
1109
1109
  */
1110
1110
  EndTime: Date | undefined;
1111
1111
  }
1112
1112
  /**
1113
- * @public
1114
1113
  * <p>The output structure contains the Raster Data Collection Query
1115
1114
  * input along with some additional metadata.</p>
1115
+ * @public
1116
1116
  */
1117
1117
  export interface RasterDataCollectionQueryOutput {
1118
1118
  /**
1119
- * @public
1120
1119
  * <p>The ARN of the Raster Data Collection against which the search is done.</p>
1120
+ * @public
1121
1121
  */
1122
1122
  RasterDataCollectionArn: string | undefined;
1123
1123
  /**
1124
- * @public
1125
1124
  * <p>The name of the raster data collection.</p>
1125
+ * @public
1126
1126
  */
1127
1127
  RasterDataCollectionName: string | undefined;
1128
1128
  /**
1129
- * @public
1130
1129
  * <p>The TimeRange filter used in the search.</p>
1130
+ * @public
1131
1131
  */
1132
1132
  TimeRangeFilter: TimeRangeFilterOutput | undefined;
1133
1133
  /**
1134
- * @public
1135
1134
  * <p>The Area of Interest used in the search.</p>
1135
+ * @public
1136
1136
  */
1137
1137
  AreaOfInterest?: AreaOfInterest;
1138
1138
  /**
1139
- * @public
1140
1139
  * <p>Property filters used in the search.</p>
1140
+ * @public
1141
1141
  */
1142
1142
  PropertyFilters?: PropertyFilters;
1143
1143
  }
1144
1144
  /**
1145
- * @public
1146
1145
  * <p>The InputConfig for an EarthObservationJob response.</p>
1146
+ * @public
1147
1147
  */
1148
1148
  export interface InputConfigOutput {
1149
1149
  /**
1150
- * @public
1151
1150
  * <p>The Amazon Resource Name (ARN) of the previous Earth Observation job.</p>
1151
+ * @public
1152
1152
  */
1153
1153
  PreviousEarthObservationJobArn?: string;
1154
1154
  /**
1155
- * @public
1156
1155
  * <p>The structure representing the RasterDataCollection Query consisting of the Area of Interest,
1157
1156
  * RasterDataCollectionArn, RasterDataCollectionName, TimeRange, and Property Filters.</p>
1157
+ * @public
1158
1158
  */
1159
1159
  RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
1160
1160
  }
1161
1161
  /**
1162
- * @public
1163
1162
  * <p>Input configuration information for the geomosaic.</p>
1163
+ * @public
1164
1164
  */
1165
1165
  export interface GeoMosaicConfigInput {
1166
1166
  /**
1167
- * @public
1168
1167
  * <p>The name of the algorithm being used for geomosaic.</p>
1168
+ * @public
1169
1169
  */
1170
1170
  AlgorithmName?: AlgorithmNameGeoMosaic;
1171
1171
  /**
1172
- * @public
1173
1172
  * <p>The target bands for geomosaic.</p>
1173
+ * @public
1174
1174
  */
1175
1175
  TargetBands?: string[];
1176
1176
  }
1177
1177
  /**
1178
- * @public
1179
1178
  * <p>The input structure for Land Cover Operation type.</p>
1179
+ * @public
1180
1180
  */
1181
1181
  export interface LandCoverSegmentationConfigInput {
1182
1182
  }
@@ -1195,54 +1195,54 @@ export declare const Unit: {
1195
1195
  */
1196
1196
  export type Unit = (typeof Unit)[keyof typeof Unit];
1197
1197
  /**
1198
- * @public
1199
1198
  * <p>The output resolution (in target georeferenced units)
1200
1199
  * of the result of the operation</p>
1200
+ * @public
1201
1201
  */
1202
1202
  export interface UserDefined {
1203
1203
  /**
1204
- * @public
1205
1204
  * <p>The value for output resolution of the result.</p>
1205
+ * @public
1206
1206
  */
1207
1207
  Value: number | undefined;
1208
1208
  /**
1209
- * @public
1210
1209
  * <p>The units for output resolution of the result.</p>
1210
+ * @public
1211
1211
  */
1212
1212
  Unit: Unit | undefined;
1213
1213
  }
1214
1214
  /**
1215
- * @public
1216
1215
  * <p>OutputResolution Configuration indicating
1217
1216
  * the target resolution for the output of Resampling operation.</p>
1217
+ * @public
1218
1218
  */
1219
1219
  export interface OutputResolutionResamplingInput {
1220
1220
  /**
1221
- * @public
1222
1221
  * <p>User Defined Resolution for the output
1223
1222
  * of Resampling operation defined by value and unit.</p>
1223
+ * @public
1224
1224
  */
1225
1225
  UserDefined: UserDefined | undefined;
1226
1226
  }
1227
1227
  /**
1228
- * @public
1229
1228
  * <p>The structure representing input for resampling operation.</p>
1229
+ * @public
1230
1230
  */
1231
1231
  export interface ResamplingConfigInput {
1232
1232
  /**
1233
- * @public
1234
1233
  * <p>The structure representing output
1235
1234
  * resolution (in target georeferenced units) of the result of resampling operation.</p>
1235
+ * @public
1236
1236
  */
1237
1237
  OutputResolution: OutputResolutionResamplingInput | undefined;
1238
1238
  /**
1239
- * @public
1240
1239
  * <p>The name of the algorithm used for resampling.</p>
1240
+ * @public
1241
1241
  */
1242
1242
  AlgorithmName?: AlgorithmNameResampling;
1243
1243
  /**
1244
- * @public
1245
1244
  * <p>Bands used in the operation. If no target bands are specified, it uses all bands available in the input.</p>
1245
+ * @public
1246
1246
  */
1247
1247
  TargetBands?: string[];
1248
1248
  }
@@ -1269,36 +1269,36 @@ export declare const PredefinedResolution: {
1269
1269
  */
1270
1270
  export type PredefinedResolution = (typeof PredefinedResolution)[keyof typeof PredefinedResolution];
1271
1271
  /**
1272
- * @public
1273
1272
  * <p>The input structure representing Output Resolution for Stacking Operation.</p>
1273
+ * @public
1274
1274
  */
1275
1275
  export interface OutputResolutionStackInput {
1276
1276
  /**
1277
- * @public
1278
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
+ * @public
1279
1279
  */
1280
1280
  Predefined?: PredefinedResolution;
1281
1281
  /**
1282
- * @public
1283
1282
  * <p>The structure representing User Output Resolution for a Stacking operation defined as a value and unit.</p>
1283
+ * @public
1284
1284
  */
1285
1285
  UserDefined?: UserDefined;
1286
1286
  }
1287
1287
  /**
1288
- * @public
1289
1288
  * <p>The input structure for Stacking Operation.</p>
1289
+ * @public
1290
1290
  */
1291
1291
  export interface StackConfigInput {
1292
1292
  /**
1293
- * @public
1294
1293
  * <p>The structure representing output
1295
1294
  * resolution (in target georeferenced units) of the
1296
1295
  * result of stacking operation.</p>
1296
+ * @public
1297
1297
  */
1298
1298
  OutputResolution?: OutputResolutionStackInput;
1299
1299
  /**
1300
- * @public
1301
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
+ * @public
1302
1302
  */
1303
1303
  TargetBands?: string[];
1304
1304
  }
@@ -1343,23 +1343,23 @@ export declare const TemporalStatistics: {
1343
1343
  */
1344
1344
  export type TemporalStatistics = (typeof TemporalStatistics)[keyof typeof TemporalStatistics];
1345
1345
  /**
1346
- * @public
1347
1346
  * <p>The structure representing the configuration for Temporal Statistics operation.</p>
1347
+ * @public
1348
1348
  */
1349
1349
  export interface TemporalStatisticsConfigInput {
1350
1350
  /**
1351
- * @public
1352
1351
  * <p>The input for the temporal statistics grouping by time frequency option.</p>
1352
+ * @public
1353
1353
  */
1354
1354
  GroupBy?: GroupBy;
1355
1355
  /**
1356
- * @public
1357
1356
  * <p>The list of the statistics method options.</p>
1357
+ * @public
1358
1358
  */
1359
1359
  Statistics: TemporalStatistics[] | undefined;
1360
1360
  /**
1361
- * @public
1362
1361
  * <p>The list of target band names for the temporal statistic to calculate.</p>
1362
+ * @public
1363
1363
  */
1364
1364
  TargetBands?: string[];
1365
1365
  }
@@ -1398,28 +1398,27 @@ export declare const ZonalStatistics: {
1398
1398
  */
1399
1399
  export type ZonalStatistics = (typeof ZonalStatistics)[keyof typeof ZonalStatistics];
1400
1400
  /**
1401
- * @public
1402
1401
  * <p>The structure representing input configuration of ZonalStatistics operation.</p>
1402
+ * @public
1403
1403
  */
1404
1404
  export interface ZonalStatisticsConfigInput {
1405
1405
  /**
1406
- * @public
1407
1406
  * <p>The Amazon S3 path pointing to the GeoJSON containing the polygonal zones.</p>
1407
+ * @public
1408
1408
  */
1409
1409
  ZoneS3Path: string | undefined;
1410
1410
  /**
1411
- * @public
1412
1411
  * <p>List of zonal statistics to compute.</p>
1412
+ * @public
1413
1413
  */
1414
1414
  Statistics: ZonalStatistics[] | undefined;
1415
1415
  /**
1416
- * @public
1417
1416
  * <p>Bands used in the operation.
1418
1417
  * If no target bands are specified, it uses all bands available input.</p>
1418
+ * @public
1419
1419
  */
1420
1420
  TargetBands?: string[];
1421
1421
  /**
1422
- * @public
1423
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.
1424
1423
  * The SageMaker execution role must have <code>kms:GenerateDataKey</code> permission.</p>
1425
1424
  * <p>The <code>KmsKeyId</code> can be any of the following formats:</p>
@@ -1440,12 +1439,13 @@ export interface ZonalStatisticsConfigInput {
1440
1439
  * <p>For more information about key identifiers, see
1441
1440
  * <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-id">Key identifiers (KeyID)</a> in the
1442
1441
  * Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.</p>
1442
+ * @public
1443
1443
  */
1444
1444
  ZoneS3PathKmsKeyId?: string;
1445
1445
  }
1446
1446
  /**
1447
- * @public
1448
1447
  * <p>The input structure for the JobConfig in an EarthObservationJob.</p>
1448
+ * @public
1449
1449
  */
1450
1450
  export type JobConfigInput = JobConfigInput.BandMathConfigMember | JobConfigInput.CloudMaskingConfigMember | JobConfigInput.CloudRemovalConfigMember | JobConfigInput.GeoMosaicConfigMember | JobConfigInput.LandCoverSegmentationConfigMember | JobConfigInput.ResamplingConfigMember | JobConfigInput.StackConfigMember | JobConfigInput.TemporalStatisticsConfigMember | JobConfigInput.ZonalStatisticsConfigMember | JobConfigInput.$UnknownMember;
1451
1451
  /**
@@ -1453,8 +1453,8 @@ export type JobConfigInput = JobConfigInput.BandMathConfigMember | JobConfigInpu
1453
1453
  */
1454
1454
  export declare namespace JobConfigInput {
1455
1455
  /**
1456
- * @public
1457
1456
  * <p>An object containing information about the job configuration for BandMath.</p>
1457
+ * @public
1458
1458
  */
1459
1459
  interface BandMathConfigMember {
1460
1460
  BandMathConfig: BandMathConfigInput;
@@ -1469,8 +1469,8 @@ export declare namespace JobConfigInput {
1469
1469
  $unknown?: never;
1470
1470
  }
1471
1471
  /**
1472
- * @public
1473
1472
  * <p>An object containing information about the job configuration for resampling.</p>
1473
+ * @public
1474
1474
  */
1475
1475
  interface ResamplingConfigMember {
1476
1476
  BandMathConfig?: never;
@@ -1485,8 +1485,8 @@ export declare namespace JobConfigInput {
1485
1485
  $unknown?: never;
1486
1486
  }
1487
1487
  /**
1488
- * @public
1489
1488
  * <p>An object containing information about the job configuration for temporal statistics.</p>
1489
+ * @public
1490
1490
  */
1491
1491
  interface TemporalStatisticsConfigMember {
1492
1492
  BandMathConfig?: never;
@@ -1501,8 +1501,8 @@ export declare namespace JobConfigInput {
1501
1501
  $unknown?: never;
1502
1502
  }
1503
1503
  /**
1504
- * @public
1505
1504
  * <p>An object containing information about the job configuration for cloud removal.</p>
1505
+ * @public
1506
1506
  */
1507
1507
  interface CloudRemovalConfigMember {
1508
1508
  BandMathConfig?: never;
@@ -1517,8 +1517,8 @@ export declare namespace JobConfigInput {
1517
1517
  $unknown?: never;
1518
1518
  }
1519
1519
  /**
1520
- * @public
1521
1520
  * <p>An object containing information about the job configuration for zonal statistics.</p>
1521
+ * @public
1522
1522
  */
1523
1523
  interface ZonalStatisticsConfigMember {
1524
1524
  BandMathConfig?: never;
@@ -1533,8 +1533,8 @@ export declare namespace JobConfigInput {
1533
1533
  $unknown?: never;
1534
1534
  }
1535
1535
  /**
1536
- * @public
1537
1536
  * <p>An object containing information about the job configuration for geomosaic.</p>
1537
+ * @public
1538
1538
  */
1539
1539
  interface GeoMosaicConfigMember {
1540
1540
  BandMathConfig?: never;
@@ -1549,8 +1549,8 @@ export declare namespace JobConfigInput {
1549
1549
  $unknown?: never;
1550
1550
  }
1551
1551
  /**
1552
- * @public
1553
1552
  * <p>An object containing information about the job configuration for a Stacking Earth Observation job.</p>
1553
+ * @public
1554
1554
  */
1555
1555
  interface StackConfigMember {
1556
1556
  BandMathConfig?: never;
@@ -1565,8 +1565,8 @@ export declare namespace JobConfigInput {
1565
1565
  $unknown?: never;
1566
1566
  }
1567
1567
  /**
1568
- * @public
1569
1568
  * <p>An object containing information about the job configuration for cloud masking.</p>
1569
+ * @public
1570
1570
  */
1571
1571
  interface CloudMaskingConfigMember {
1572
1572
  BandMathConfig?: never;
@@ -1581,8 +1581,8 @@ export declare namespace JobConfigInput {
1581
1581
  $unknown?: never;
1582
1582
  }
1583
1583
  /**
1584
- * @public
1585
1584
  * <p>An object containing information about the job configuration for land cover segmentation.</p>
1585
+ * @public
1586
1586
  */
1587
1587
  interface LandCoverSegmentationConfigMember {
1588
1588
  BandMathConfig?: never;
@@ -1626,18 +1626,18 @@ export declare namespace JobConfigInput {
1626
1626
  const visit: <T>(value: JobConfigInput, visitor: Visitor<T>) => T;
1627
1627
  }
1628
1628
  /**
1629
- * @public
1630
1629
  * <p>A single EarthObservationJob output band.</p>
1630
+ * @public
1631
1631
  */
1632
1632
  export interface OutputBand {
1633
1633
  /**
1634
- * @public
1635
1634
  * <p>The name of the band.</p>
1635
+ * @public
1636
1636
  */
1637
1637
  BandName: string | undefined;
1638
1638
  /**
1639
- * @public
1640
1639
  * <p>The datatype of the output band.</p>
1640
+ * @public
1641
1641
  */
1642
1642
  OutputDataType: OutputType | undefined;
1643
1643
  }
@@ -1688,73 +1688,73 @@ export type EarthObservationJobStatus = (typeof EarthObservationJobStatus)[keyof
1688
1688
  */
1689
1689
  export interface GetEarthObservationJobOutput {
1690
1690
  /**
1691
- * @public
1692
1691
  * <p>The Amazon Resource Name (ARN) of the Earth Observation job.</p>
1692
+ * @public
1693
1693
  */
1694
1694
  Arn: string | undefined;
1695
1695
  /**
1696
- * @public
1697
1696
  * <p>The name of the Earth Observation job.</p>
1697
+ * @public
1698
1698
  */
1699
1699
  Name: string | undefined;
1700
1700
  /**
1701
- * @public
1702
1701
  * <p>The creation time of the initiated Earth Observation job.</p>
1702
+ * @public
1703
1703
  */
1704
1704
  CreationTime: Date | undefined;
1705
1705
  /**
1706
- * @public
1707
1706
  * <p>The duration of Earth Observation job, in seconds.</p>
1707
+ * @public
1708
1708
  */
1709
1709
  DurationInSeconds: number | undefined;
1710
1710
  /**
1711
- * @public
1712
1711
  * <p>The status of a previously initiated Earth Observation job.</p>
1712
+ * @public
1713
1713
  */
1714
1714
  Status: EarthObservationJobStatus | undefined;
1715
1715
  /**
1716
- * @public
1717
1716
  * <p>The Key Management Service key ID for server-side encryption.</p>
1717
+ * @public
1718
1718
  */
1719
1719
  KmsKeyId?: string;
1720
1720
  /**
1721
- * @public
1722
1721
  * <p>Input data for the Earth Observation job.</p>
1722
+ * @public
1723
1723
  */
1724
1724
  InputConfig: InputConfigOutput | undefined;
1725
1725
  /**
1726
- * @public
1727
1726
  * <p>An object containing information about the job configuration.</p>
1727
+ * @public
1728
1728
  */
1729
1729
  JobConfig: JobConfigInput | undefined;
1730
1730
  /**
1731
- * @public
1732
1731
  * <p>Bands available in the output of an operation.</p>
1732
+ * @public
1733
1733
  */
1734
1734
  OutputBands?: OutputBand[];
1735
1735
  /**
1736
- * @public
1737
1736
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
1737
+ * @public
1738
1738
  */
1739
1739
  ExecutionRoleArn?: string;
1740
1740
  /**
1741
- * @public
1742
1741
  * <p>Details about the errors generated during the Earth Observation job.</p>
1742
+ * @public
1743
1743
  */
1744
1744
  ErrorDetails?: EarthObservationJobErrorDetails;
1745
1745
  /**
1746
- * @public
1747
1746
  * <p>The status of the Earth Observation job.</p>
1747
+ * @public
1748
1748
  */
1749
1749
  ExportStatus?: EarthObservationJobExportStatus;
1750
1750
  /**
1751
- * @public
1752
1751
  * <p>Details about the errors generated during ExportEarthObservationJob.</p>
1752
+ * @public
1753
1753
  */
1754
1754
  ExportErrorDetails?: ExportErrorDetails;
1755
1755
  /**
1756
- * @public
1757
1756
  * <p>Each tag consists of a key and a value.</p>
1757
+ * @public
1758
1758
  */
1759
1759
  Tags?: Record<string, string>;
1760
1760
  }
@@ -1781,63 +1781,63 @@ export type TargetOptions = (typeof TargetOptions)[keyof typeof TargetOptions];
1781
1781
  */
1782
1782
  export interface GetTileInput {
1783
1783
  /**
1784
- * @public
1785
1784
  * <p>The x coordinate of the tile input.</p>
1785
+ * @public
1786
1786
  */
1787
1787
  x: number | undefined;
1788
1788
  /**
1789
- * @public
1790
1789
  * <p>The y coordinate of the tile input.</p>
1790
+ * @public
1791
1791
  */
1792
1792
  y: number | undefined;
1793
1793
  /**
1794
- * @public
1795
1794
  * <p>The z coordinate of the tile input.</p>
1795
+ * @public
1796
1796
  */
1797
1797
  z: number | undefined;
1798
1798
  /**
1799
- * @public
1800
1799
  * <p>The particular assets or bands to tile.</p>
1800
+ * @public
1801
1801
  */
1802
1802
  ImageAssets: string[] | undefined;
1803
1803
  /**
1804
- * @public
1805
1804
  * <p>Determines what part of the Earth Observation job to tile. 'INPUT' or 'OUTPUT' are the valid options.</p>
1805
+ * @public
1806
1806
  */
1807
1807
  Target: TargetOptions | undefined;
1808
1808
  /**
1809
- * @public
1810
1809
  * <p>The Amazon Resource Name (ARN) of the tile operation.</p>
1810
+ * @public
1811
1811
  */
1812
1812
  Arn: string | undefined;
1813
1813
  /**
1814
- * @public
1815
1814
  * <p>Determines whether or not to return a valid data mask.</p>
1815
+ * @public
1816
1816
  */
1817
1817
  ImageMask?: boolean;
1818
1818
  /**
1819
- * @public
1820
1819
  * <p>The data format of the output tile. The formats include .npy, .png and .jpg.</p>
1820
+ * @public
1821
1821
  */
1822
1822
  OutputFormat?: string;
1823
1823
  /**
1824
- * @public
1825
1824
  * <p>Time range filter applied to imagery to find the images to tile.</p>
1825
+ * @public
1826
1826
  */
1827
1827
  TimeRangeFilter?: string;
1828
1828
  /**
1829
- * @public
1830
1829
  * <p>Property filters for the imagery to tile.</p>
1830
+ * @public
1831
1831
  */
1832
1832
  PropertyFilters?: string;
1833
1833
  /**
1834
- * @public
1835
1834
  * <p>The output data type of the tile operation.</p>
1835
+ * @public
1836
1836
  */
1837
1837
  OutputDataType?: OutputType;
1838
1838
  /**
1839
- * @public
1840
1839
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specify.</p>
1840
+ * @public
1841
1841
  */
1842
1842
  ExecutionRoleArn?: string;
1843
1843
  }
@@ -1846,8 +1846,8 @@ export interface GetTileInput {
1846
1846
  */
1847
1847
  export interface GetTileOutput {
1848
1848
  /**
1849
- * @public
1850
1849
  * <p>The output binary file.</p>
1850
+ * @public
1851
1851
  */
1852
1852
  BinaryFile?: StreamingBlobTypes;
1853
1853
  }
@@ -1874,70 +1874,70 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1874
1874
  */
1875
1875
  export interface ListEarthObservationJobInput {
1876
1876
  /**
1877
- * @public
1878
1877
  * <p>A filter that retrieves only jobs with a specific status.</p>
1878
+ * @public
1879
1879
  */
1880
1880
  StatusEquals?: EarthObservationJobStatus;
1881
1881
  /**
1882
- * @public
1883
1882
  * <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
1883
+ * @public
1884
1884
  */
1885
1885
  SortOrder?: SortOrder;
1886
1886
  /**
1887
- * @public
1888
1887
  * <p>The parameter by which to sort the results.</p>
1888
+ * @public
1889
1889
  */
1890
1890
  SortBy?: string;
1891
1891
  /**
1892
- * @public
1893
1892
  * <p>If the previous response was truncated, you receive this token.
1894
1893
  * Use it in your next request to receive the next set of results.</p>
1894
+ * @public
1895
1895
  */
1896
1896
  NextToken?: string;
1897
1897
  /**
1898
- * @public
1899
1898
  * <p>The total number of items to return.</p>
1899
+ * @public
1900
1900
  */
1901
1901
  MaxResults?: number;
1902
1902
  }
1903
1903
  /**
1904
- * @public
1905
1904
  * <p>An object containing information about the output file.</p>
1905
+ * @public
1906
1906
  */
1907
1907
  export interface ListEarthObservationJobOutputConfig {
1908
1908
  /**
1909
- * @public
1910
1909
  * <p>The Amazon Resource Name (ARN) of the list of the Earth Observation jobs.</p>
1910
+ * @public
1911
1911
  */
1912
1912
  Arn: string | undefined;
1913
1913
  /**
1914
- * @public
1915
1914
  * <p>The names of the Earth Observation jobs in the list.</p>
1915
+ * @public
1916
1916
  */
1917
1917
  Name: string | undefined;
1918
1918
  /**
1919
- * @public
1920
1919
  * <p>The creation time.</p>
1920
+ * @public
1921
1921
  */
1922
1922
  CreationTime: Date | undefined;
1923
1923
  /**
1924
- * @public
1925
1924
  * <p>The duration of the session, in seconds.</p>
1925
+ * @public
1926
1926
  */
1927
1927
  DurationInSeconds: number | undefined;
1928
1928
  /**
1929
- * @public
1930
1929
  * <p>The status of the list of the Earth Observation jobs.</p>
1930
+ * @public
1931
1931
  */
1932
1932
  Status: EarthObservationJobStatus | undefined;
1933
1933
  /**
1934
- * @public
1935
1934
  * <p>The operation type for an Earth Observation job.</p>
1935
+ * @public
1936
1936
  */
1937
1937
  OperationType: string | undefined;
1938
1938
  /**
1939
- * @public
1940
1939
  * <p>Each tag consists of a key and a value.</p>
1940
+ * @public
1941
1941
  */
1942
1942
  Tags?: Record<string, string>;
1943
1943
  }
@@ -1946,73 +1946,73 @@ export interface ListEarthObservationJobOutputConfig {
1946
1946
  */
1947
1947
  export interface ListEarthObservationJobOutput {
1948
1948
  /**
1949
- * @public
1950
1949
  * <p>Contains summary information about the Earth Observation jobs.</p>
1950
+ * @public
1951
1951
  */
1952
1952
  EarthObservationJobSummaries: ListEarthObservationJobOutputConfig[] | undefined;
1953
1953
  /**
1954
- * @public
1955
1954
  * <p>If the previous response was truncated, you receive this token.
1956
1955
  * Use it in your next request to receive the next set of results.</p>
1956
+ * @public
1957
1957
  */
1958
1958
  NextToken?: string;
1959
1959
  }
1960
1960
  /**
1961
- * @public
1962
1961
  * <p>The input for the time-range filter.</p>
1962
+ * @public
1963
1963
  */
1964
1964
  export interface TimeRangeFilterInput {
1965
1965
  /**
1966
- * @public
1967
1966
  * <p>The start time for the time-range filter.</p>
1967
+ * @public
1968
1968
  */
1969
1969
  StartTime: Date | undefined;
1970
1970
  /**
1971
- * @public
1972
1971
  * <p>The end time for the time-range filter.</p>
1972
+ * @public
1973
1973
  */
1974
1974
  EndTime: Date | undefined;
1975
1975
  }
1976
1976
  /**
1977
- * @public
1978
1977
  * <p>The input structure for Raster Data Collection Query containing the Area of Interest, TimeRange Filters, and Property Filters.</p>
1978
+ * @public
1979
1979
  */
1980
1980
  export interface RasterDataCollectionQueryInput {
1981
1981
  /**
1982
- * @public
1983
1982
  * <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
1983
+ * @public
1984
1984
  */
1985
1985
  RasterDataCollectionArn: string | undefined;
1986
1986
  /**
1987
- * @public
1988
1987
  * <p>The TimeRange Filter used in the RasterDataCollection Query.</p>
1988
+ * @public
1989
1989
  */
1990
1990
  TimeRangeFilter: TimeRangeFilterInput | undefined;
1991
1991
  /**
1992
- * @public
1993
1992
  * <p>The area of interest being queried for the raster data collection.</p>
1993
+ * @public
1994
1994
  */
1995
1995
  AreaOfInterest?: AreaOfInterest;
1996
1996
  /**
1997
- * @public
1998
1997
  * <p>The list of Property filters used in the Raster Data Collection Query.</p>
1998
+ * @public
1999
1999
  */
2000
2000
  PropertyFilters?: PropertyFilters;
2001
2001
  }
2002
2002
  /**
2003
- * @public
2004
2003
  * <p>Input configuration information.</p>
2004
+ * @public
2005
2005
  */
2006
2006
  export interface InputConfigInput {
2007
2007
  /**
2008
- * @public
2009
2008
  * <p>The Amazon Resource Name (ARN) of the previous Earth Observation job.</p>
2009
+ * @public
2010
2010
  */
2011
2011
  PreviousEarthObservationJobArn?: string;
2012
2012
  /**
2013
- * @public
2014
2013
  * <p>The structure representing the RasterDataCollection Query consisting of
2015
2014
  * the Area of Interest, RasterDataCollectionArn,TimeRange and Property Filters.</p>
2015
+ * @public
2016
2016
  */
2017
2017
  RasterDataCollectionQuery?: RasterDataCollectionQueryInput;
2018
2018
  }
@@ -2021,38 +2021,38 @@ export interface InputConfigInput {
2021
2021
  */
2022
2022
  export interface StartEarthObservationJobInput {
2023
2023
  /**
2024
- * @public
2025
2024
  * <p>The name of the Earth Observation job.</p>
2025
+ * @public
2026
2026
  */
2027
2027
  Name: string | undefined;
2028
2028
  /**
2029
- * @public
2030
2029
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2030
+ * @public
2031
2031
  */
2032
2032
  ClientToken?: string;
2033
2033
  /**
2034
- * @public
2035
2034
  * <p>The Key Management Service key ID for server-side encryption.</p>
2035
+ * @public
2036
2036
  */
2037
2037
  KmsKeyId?: string;
2038
2038
  /**
2039
- * @public
2040
2039
  * <p>Input configuration information for the Earth Observation job.</p>
2040
+ * @public
2041
2041
  */
2042
2042
  InputConfig: InputConfigInput | undefined;
2043
2043
  /**
2044
- * @public
2045
2044
  * <p>An object containing information about the job configuration.</p>
2045
+ * @public
2046
2046
  */
2047
2047
  JobConfig: JobConfigInput | undefined;
2048
2048
  /**
2049
- * @public
2050
2049
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
2050
+ * @public
2051
2051
  */
2052
2052
  ExecutionRoleArn: string | undefined;
2053
2053
  /**
2054
- * @public
2055
2054
  * <p>Each tag consists of a key and a value.</p>
2055
+ * @public
2056
2056
  */
2057
2057
  Tags?: Record<string, string>;
2058
2058
  }
@@ -2061,53 +2061,53 @@ export interface StartEarthObservationJobInput {
2061
2061
  */
2062
2062
  export interface StartEarthObservationJobOutput {
2063
2063
  /**
2064
- * @public
2065
2064
  * <p>The name of the Earth Observation job.</p>
2065
+ * @public
2066
2066
  */
2067
2067
  Name: string | undefined;
2068
2068
  /**
2069
- * @public
2070
2069
  * <p>The Amazon Resource Name (ARN) of the Earth Observation job.</p>
2070
+ * @public
2071
2071
  */
2072
2072
  Arn: string | undefined;
2073
2073
  /**
2074
- * @public
2075
2074
  * <p>The creation time.</p>
2075
+ * @public
2076
2076
  */
2077
2077
  CreationTime: Date | undefined;
2078
2078
  /**
2079
- * @public
2080
2079
  * <p>The duration of the session, in seconds.</p>
2080
+ * @public
2081
2081
  */
2082
2082
  DurationInSeconds: number | undefined;
2083
2083
  /**
2084
- * @public
2085
2084
  * <p>The status of the Earth Observation job.</p>
2085
+ * @public
2086
2086
  */
2087
2087
  Status: EarthObservationJobStatus | undefined;
2088
2088
  /**
2089
- * @public
2090
2089
  * <p>The Key Management Service key ID for server-side encryption.</p>
2090
+ * @public
2091
2091
  */
2092
2092
  KmsKeyId?: string;
2093
2093
  /**
2094
- * @public
2095
2094
  * <p>Input configuration information for the Earth Observation job.</p>
2095
+ * @public
2096
2096
  */
2097
2097
  InputConfig?: InputConfigOutput;
2098
2098
  /**
2099
- * @public
2100
2099
  * <p>An object containing information about the job configuration.</p>
2100
+ * @public
2101
2101
  */
2102
2102
  JobConfig: JobConfigInput | undefined;
2103
2103
  /**
2104
- * @public
2105
2104
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
2105
+ * @public
2106
2106
  */
2107
2107
  ExecutionRoleArn: string | undefined;
2108
2108
  /**
2109
- * @public
2110
2109
  * <p>Each tag consists of a key and a value.</p>
2110
+ * @public
2111
2111
  */
2112
2112
  Tags?: Record<string, string>;
2113
2113
  }
@@ -2116,8 +2116,8 @@ export interface StartEarthObservationJobOutput {
2116
2116
  */
2117
2117
  export interface StopEarthObservationJobInput {
2118
2118
  /**
2119
- * @public
2120
2119
  * <p>The Amazon Resource Name (ARN) of the Earth Observation job being stopped.</p>
2120
+ * @public
2121
2121
  */
2122
2122
  Arn: string | undefined;
2123
2123
  }
@@ -2127,29 +2127,29 @@ export interface StopEarthObservationJobInput {
2127
2127
  export interface StopEarthObservationJobOutput {
2128
2128
  }
2129
2129
  /**
2130
- * @public
2131
2130
  * <p>The Amazon S3 data for the Vector Enrichment job.</p>
2131
+ * @public
2132
2132
  */
2133
2133
  export interface VectorEnrichmentJobS3Data {
2134
2134
  /**
2135
- * @public
2136
2135
  * <p>The URL to the Amazon S3 data for the Vector Enrichment job.</p>
2136
+ * @public
2137
2137
  */
2138
2138
  S3Uri: string | undefined;
2139
2139
  /**
2140
- * @public
2141
2140
  * <p>The Key Management Service key ID for server-side encryption.</p>
2141
+ * @public
2142
2142
  */
2143
2143
  KmsKeyId?: string;
2144
2144
  }
2145
2145
  /**
2146
- * @public
2147
2146
  * <p>An object containing information about the output file.</p>
2147
+ * @public
2148
2148
  */
2149
2149
  export interface ExportVectorEnrichmentJobOutputConfig {
2150
2150
  /**
2151
- * @public
2152
2151
  * <p>The input structure for Amazon S3 data; representing the Amazon S3 location of the input data objects.</p>
2152
+ * @public
2153
2153
  */
2154
2154
  S3Data: VectorEnrichmentJobS3Data | undefined;
2155
2155
  }
@@ -2158,24 +2158,24 @@ export interface ExportVectorEnrichmentJobOutputConfig {
2158
2158
  */
2159
2159
  export interface ExportVectorEnrichmentJobInput {
2160
2160
  /**
2161
- * @public
2162
2161
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
2162
+ * @public
2163
2163
  */
2164
2164
  Arn: string | undefined;
2165
2165
  /**
2166
- * @public
2167
2166
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2167
+ * @public
2168
2168
  */
2169
2169
  ClientToken?: string;
2170
2170
  /**
2171
- * @public
2172
2171
  * <p>The Amazon Resource Name (ARN) of the IAM rolewith permission to upload to the location in OutputConfig.</p>
2172
+ * @public
2173
2173
  */
2174
2174
  ExecutionRoleArn: string | undefined;
2175
2175
  /**
2176
- * @public
2177
2176
  * <p>Output location information for exporting Vector Enrichment Job results.
2178
2177
  * </p>
2178
+ * @public
2179
2179
  */
2180
2180
  OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
2181
2181
  }
@@ -2197,46 +2197,46 @@ export type VectorEnrichmentJobExportStatus = (typeof VectorEnrichmentJobExportS
2197
2197
  */
2198
2198
  export interface ExportVectorEnrichmentJobOutput {
2199
2199
  /**
2200
- * @public
2201
2200
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job being exported.</p>
2201
+ * @public
2202
2202
  */
2203
2203
  Arn: string | undefined;
2204
2204
  /**
2205
- * @public
2206
2205
  * <p>The creation time.</p>
2206
+ * @public
2207
2207
  */
2208
2208
  CreationTime: Date | undefined;
2209
2209
  /**
2210
- * @public
2211
2210
  * <p>The Amazon Resource Name (ARN) of the IAM role with permission to upload to the location in OutputConfig.</p>
2211
+ * @public
2212
2212
  */
2213
2213
  ExecutionRoleArn: string | undefined;
2214
2214
  /**
2215
- * @public
2216
2215
  * <p>The status of the results the Vector Enrichment job being exported.</p>
2216
+ * @public
2217
2217
  */
2218
2218
  ExportStatus: VectorEnrichmentJobExportStatus | undefined;
2219
2219
  /**
2220
- * @public
2221
2220
  * <p>Output location information for exporting Vector Enrichment Job results.
2222
2221
  * </p>
2222
+ * @public
2223
2223
  */
2224
2224
  OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
2225
2225
  }
2226
2226
  /**
2227
- * @public
2228
2227
  * <p>The structure representing a Geometry in
2229
2228
  * terms of Type and Coordinates as per GeoJson spec.</p>
2229
+ * @public
2230
2230
  */
2231
2231
  export interface Geometry {
2232
2232
  /**
2233
- * @public
2234
2233
  * <p>GeoJson Geometry types like Polygon and MultiPolygon.</p>
2234
+ * @public
2235
2235
  */
2236
2236
  Type: string | undefined;
2237
2237
  /**
2238
- * @public
2239
2238
  * <p>The coordinates of the GeoJson Geometry.</p>
2239
+ * @public
2240
2240
  */
2241
2241
  Coordinates: number[][][] | undefined;
2242
2242
  }
@@ -2245,8 +2245,8 @@ export interface Geometry {
2245
2245
  */
2246
2246
  export interface GetRasterDataCollectionInput {
2247
2247
  /**
2248
- * @public
2249
2248
  * <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
2249
+ * @public
2250
2250
  */
2251
2251
  Arn: string | undefined;
2252
2252
  }
@@ -2255,43 +2255,43 @@ export interface GetRasterDataCollectionInput {
2255
2255
  */
2256
2256
  export interface GetRasterDataCollectionOutput {
2257
2257
  /**
2258
- * @public
2259
2258
  * <p>The name of the raster data collection.</p>
2259
+ * @public
2260
2260
  */
2261
2261
  Name: string | undefined;
2262
2262
  /**
2263
- * @public
2264
2263
  * <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
2264
+ * @public
2265
2265
  */
2266
2266
  Arn: string | undefined;
2267
2267
  /**
2268
- * @public
2269
2268
  * <p>The raster data collection type.</p>
2269
+ * @public
2270
2270
  */
2271
2271
  Type: DataCollectionType | undefined;
2272
2272
  /**
2273
- * @public
2274
2273
  * <p>A description of the raster data collection.</p>
2274
+ * @public
2275
2275
  */
2276
2276
  Description: string | undefined;
2277
2277
  /**
2278
- * @public
2279
2278
  * <p>The URL of the description page.</p>
2279
+ * @public
2280
2280
  */
2281
2281
  DescriptionPageUrl: string | undefined;
2282
2282
  /**
2283
- * @public
2284
2283
  * <p>The filters supported by the raster data collection.</p>
2284
+ * @public
2285
2285
  */
2286
2286
  SupportedFilters: Filter[] | undefined;
2287
2287
  /**
2288
- * @public
2289
2288
  * <p>The list of image source bands in the raster data collection.</p>
2289
+ * @public
2290
2290
  */
2291
2291
  ImageSourceBands: string[] | undefined;
2292
2292
  /**
2293
- * @public
2294
2293
  * <p>Each tag consists of a key and a value.</p>
2294
+ * @public
2295
2295
  */
2296
2296
  Tags?: Record<string, string>;
2297
2297
  }
@@ -2300,8 +2300,8 @@ export interface GetRasterDataCollectionOutput {
2300
2300
  */
2301
2301
  export interface GetVectorEnrichmentJobInput {
2302
2302
  /**
2303
- * @public
2304
2303
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
2304
+ * @public
2305
2305
  */
2306
2306
  Arn: string | undefined;
2307
2307
  }
@@ -2324,19 +2324,19 @@ export declare const VectorEnrichmentJobErrorType: {
2324
2324
  */
2325
2325
  export type VectorEnrichmentJobErrorType = (typeof VectorEnrichmentJobErrorType)[keyof typeof VectorEnrichmentJobErrorType];
2326
2326
  /**
2327
- * @public
2328
2327
  * <p>VectorEnrichmentJob error details in response from GetVectorEnrichmentJob.</p>
2328
+ * @public
2329
2329
  */
2330
2330
  export interface VectorEnrichmentJobErrorDetails {
2331
2331
  /**
2332
- * @public
2333
2332
  * <p>The type of error generated during the Vector Enrichment job.</p>
2333
+ * @public
2334
2334
  */
2335
2335
  ErrorType?: VectorEnrichmentJobErrorType;
2336
2336
  /**
2337
- * @public
2338
2337
  * <p>A message that you define and then is processed and rendered by
2339
2338
  * the Vector Enrichment job when the error occurs.</p>
2339
+ * @public
2340
2340
  */
2341
2341
  ErrorMessage?: string;
2342
2342
  }
@@ -2353,24 +2353,24 @@ export declare const VectorEnrichmentJobExportErrorType: {
2353
2353
  */
2354
2354
  export type VectorEnrichmentJobExportErrorType = (typeof VectorEnrichmentJobExportErrorType)[keyof typeof VectorEnrichmentJobExportErrorType];
2355
2355
  /**
2356
- * @public
2357
2356
  * <p>VectorEnrichmentJob export error details in response from GetVectorEnrichmentJob.</p>
2357
+ * @public
2358
2358
  */
2359
2359
  export interface VectorEnrichmentJobExportErrorDetails {
2360
2360
  /**
2361
- * @public
2362
2361
  * <p>The output error details for an Export operation on a Vector Enrichment job.</p>
2362
+ * @public
2363
2363
  */
2364
2364
  Type?: VectorEnrichmentJobExportErrorType;
2365
2365
  /**
2366
- * @public
2367
2366
  * <p>The message providing details about the errors generated during the Vector Enrichment job.</p>
2367
+ * @public
2368
2368
  */
2369
2369
  Message?: string;
2370
2370
  }
2371
2371
  /**
2372
- * @public
2373
2372
  * <p>The input structure for the data source that represents the storage type of the input data objects.</p>
2373
+ * @public
2374
2374
  */
2375
2375
  export type VectorEnrichmentJobDataSourceConfigInput = VectorEnrichmentJobDataSourceConfigInput.S3DataMember | VectorEnrichmentJobDataSourceConfigInput.$UnknownMember;
2376
2376
  /**
@@ -2378,8 +2378,8 @@ export type VectorEnrichmentJobDataSourceConfigInput = VectorEnrichmentJobDataSo
2378
2378
  */
2379
2379
  export declare namespace VectorEnrichmentJobDataSourceConfigInput {
2380
2380
  /**
2381
- * @public
2382
2381
  * <p>The input structure for the Amazon S3 data that represents the Amazon S3 location of the input data objects.</p>
2382
+ * @public
2383
2383
  */
2384
2384
  interface S3DataMember {
2385
2385
  S3Data: VectorEnrichmentJobS3Data;
@@ -2410,66 +2410,66 @@ export declare const VectorEnrichmentJobDocumentType: {
2410
2410
  */
2411
2411
  export type VectorEnrichmentJobDocumentType = (typeof VectorEnrichmentJobDocumentType)[keyof typeof VectorEnrichmentJobDocumentType];
2412
2412
  /**
2413
- * @public
2414
2413
  * <p>The input structure for the InputConfig in a VectorEnrichmentJob.</p>
2414
+ * @public
2415
2415
  */
2416
2416
  export interface VectorEnrichmentJobInputConfig {
2417
2417
  /**
2418
- * @public
2419
2418
  * <p>The input structure that defines the data source file type.</p>
2419
+ * @public
2420
2420
  */
2421
2421
  DocumentType: VectorEnrichmentJobDocumentType | undefined;
2422
2422
  /**
2423
- * @public
2424
2423
  * <p>The input structure for the data source that represents the storage type of the input data objects.</p>
2424
+ * @public
2425
2425
  */
2426
2426
  DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
2427
2427
  }
2428
2428
  /**
2429
- * @public
2430
2429
  * <p>The input structure for Map Matching operation type.</p>
2430
+ * @public
2431
2431
  */
2432
2432
  export interface MapMatchingConfig {
2433
2433
  /**
2434
- * @public
2435
2434
  * <p>The field name for the data that describes the identifier representing a collection of GPS points belonging to an individual trace.</p>
2435
+ * @public
2436
2436
  */
2437
2437
  IdAttributeName: string | undefined;
2438
2438
  /**
2439
- * @public
2440
2439
  * <p>The name of the Y-attribute</p>
2440
+ * @public
2441
2441
  */
2442
2442
  YAttributeName: string | undefined;
2443
2443
  /**
2444
- * @public
2445
2444
  * <p>The name of the X-attribute</p>
2445
+ * @public
2446
2446
  */
2447
2447
  XAttributeName: string | undefined;
2448
2448
  /**
2449
- * @public
2450
2449
  * <p>The name of the timestamp attribute.</p>
2450
+ * @public
2451
2451
  */
2452
2452
  TimestampAttributeName: string | undefined;
2453
2453
  }
2454
2454
  /**
2455
- * @public
2456
2455
  * <p>The input structure for Reverse Geocoding operation type.</p>
2456
+ * @public
2457
2457
  */
2458
2458
  export interface ReverseGeocodingConfig {
2459
2459
  /**
2460
- * @public
2461
2460
  * <p>The field name for the data that describes y-axis coordinate, eg. latitude of a point.</p>
2461
+ * @public
2462
2462
  */
2463
2463
  YAttributeName: string | undefined;
2464
2464
  /**
2465
- * @public
2466
2465
  * <p>The field name for the data that describes x-axis coordinate, eg. longitude of a point.</p>
2466
+ * @public
2467
2467
  */
2468
2468
  XAttributeName: string | undefined;
2469
2469
  }
2470
2470
  /**
2471
- * @public
2472
2471
  * <p>It contains configs such as ReverseGeocodingConfig and MapMatchingConfig.</p>
2472
+ * @public
2473
2473
  */
2474
2474
  export type VectorEnrichmentJobConfig = VectorEnrichmentJobConfig.MapMatchingConfigMember | VectorEnrichmentJobConfig.ReverseGeocodingConfigMember | VectorEnrichmentJobConfig.$UnknownMember;
2475
2475
  /**
@@ -2477,8 +2477,8 @@ export type VectorEnrichmentJobConfig = VectorEnrichmentJobConfig.MapMatchingCon
2477
2477
  */
2478
2478
  export declare namespace VectorEnrichmentJobConfig {
2479
2479
  /**
2480
- * @public
2481
2480
  * <p>The input structure for Reverse Geocoding operation type.</p>
2481
+ * @public
2482
2482
  */
2483
2483
  interface ReverseGeocodingConfigMember {
2484
2484
  ReverseGeocodingConfig: ReverseGeocodingConfig;
@@ -2486,8 +2486,8 @@ export declare namespace VectorEnrichmentJobConfig {
2486
2486
  $unknown?: never;
2487
2487
  }
2488
2488
  /**
2489
- * @public
2490
2489
  * <p>The input structure for Map Matching operation type.</p>
2490
+ * @public
2491
2491
  */
2492
2492
  interface MapMatchingConfigMember {
2493
2493
  ReverseGeocodingConfig?: never;
@@ -2544,146 +2544,146 @@ export type VectorEnrichmentJobType = (typeof VectorEnrichmentJobType)[keyof typ
2544
2544
  */
2545
2545
  export interface GetVectorEnrichmentJobOutput {
2546
2546
  /**
2547
- * @public
2548
2547
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
2548
+ * @public
2549
2549
  */
2550
2550
  Arn: string | undefined;
2551
2551
  /**
2552
- * @public
2553
2552
  * <p>The type of the Vector Enrichment job being initiated.</p>
2553
+ * @public
2554
2554
  */
2555
2555
  Type: VectorEnrichmentJobType | undefined;
2556
2556
  /**
2557
- * @public
2558
2557
  * <p>The name of the Vector Enrichment job.</p>
2558
+ * @public
2559
2559
  */
2560
2560
  Name: string | undefined;
2561
2561
  /**
2562
- * @public
2563
2562
  * <p>The creation time.</p>
2563
+ * @public
2564
2564
  */
2565
2565
  CreationTime: Date | undefined;
2566
2566
  /**
2567
- * @public
2568
2567
  * <p>The duration of the Vector Enrichment job, in seconds.</p>
2568
+ * @public
2569
2569
  */
2570
2570
  DurationInSeconds: number | undefined;
2571
2571
  /**
2572
- * @public
2573
2572
  * <p>The status of the initiated Vector Enrichment job.</p>
2573
+ * @public
2574
2574
  */
2575
2575
  Status: VectorEnrichmentJobStatus | undefined;
2576
2576
  /**
2577
- * @public
2578
2577
  * <p>The Key Management Service key ID for server-side encryption.</p>
2578
+ * @public
2579
2579
  */
2580
2580
  KmsKeyId?: string;
2581
2581
  /**
2582
- * @public
2583
2582
  * <p>Input configuration information for the Vector Enrichment job.</p>
2583
+ * @public
2584
2584
  */
2585
2585
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
2586
2586
  /**
2587
- * @public
2588
2587
  * <p>An object containing information about the job configuration.</p>
2588
+ * @public
2589
2589
  */
2590
2590
  JobConfig: VectorEnrichmentJobConfig | undefined;
2591
2591
  /**
2592
- * @public
2593
2592
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
2593
+ * @public
2594
2594
  */
2595
2595
  ExecutionRoleArn: string | undefined;
2596
2596
  /**
2597
- * @public
2598
2597
  * <p>Details about the errors generated during the Vector Enrichment job.</p>
2598
+ * @public
2599
2599
  */
2600
2600
  ErrorDetails?: VectorEnrichmentJobErrorDetails;
2601
2601
  /**
2602
- * @public
2603
2602
  * <p>The export status of the Vector Enrichment job being initiated.</p>
2603
+ * @public
2604
2604
  */
2605
2605
  ExportStatus?: VectorEnrichmentJobExportStatus;
2606
2606
  /**
2607
- * @public
2608
2607
  * <p>Details about the errors generated during the ExportVectorEnrichmentJob.</p>
2608
+ * @public
2609
2609
  */
2610
2610
  ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails;
2611
2611
  /**
2612
- * @public
2613
2612
  * <p>Each tag consists of a key and a value.</p>
2613
+ * @public
2614
2614
  */
2615
2615
  Tags?: Record<string, string>;
2616
2616
  }
2617
2617
  /**
2618
- * @public
2619
2618
  * <p>Properties associated with the Item.</p>
2619
+ * @public
2620
2620
  */
2621
2621
  export interface Properties {
2622
2622
  /**
2623
- * @public
2624
2623
  * <p>Estimate of cloud cover.</p>
2624
+ * @public
2625
2625
  */
2626
2626
  EoCloudCover?: number;
2627
2627
  /**
2628
- * @public
2629
2628
  * <p>The angle from the sensor between nadir (straight down) and the scene center. Measured in degrees (0-90).</p>
2629
+ * @public
2630
2630
  */
2631
2631
  ViewOffNadir?: number;
2632
2632
  /**
2633
- * @public
2634
2633
  * <p>The sun azimuth angle. From the scene center point on the ground, this is the angle between truth north and the sun.
2635
2634
  * Measured clockwise in degrees (0-360).</p>
2635
+ * @public
2636
2636
  */
2637
2637
  ViewSunAzimuth?: number;
2638
2638
  /**
2639
- * @public
2640
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).
2641
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
+ * @public
2642
2642
  */
2643
2643
  ViewSunElevation?: number;
2644
2644
  /**
2645
- * @public
2646
2645
  * <p>Platform property. Platform refers to the unique name
2647
2646
  * of the specific platform the instrument is attached to.
2648
2647
  * For satellites it is the name of
2649
2648
  * the satellite, eg. landsat-8 (Landsat-8), sentinel-2a.</p>
2649
+ * @public
2650
2650
  */
2651
2651
  Platform?: string;
2652
2652
  /**
2653
- * @public
2654
2653
  * <p>Land cloud cover for Landsat Data Collection.</p>
2654
+ * @public
2655
2655
  */
2656
2656
  LandsatCloudCoverLand?: number;
2657
2657
  }
2658
2658
  /**
2659
- * @public
2660
2659
  * <p>The structure representing the items in the response for SearchRasterDataCollection.</p>
2660
+ * @public
2661
2661
  */
2662
2662
  export interface ItemSource {
2663
2663
  /**
2664
- * @public
2665
2664
  * <p>A unique Id for the source item.</p>
2665
+ * @public
2666
2666
  */
2667
2667
  Id: string | undefined;
2668
2668
  /**
2669
- * @public
2670
2669
  * <p>The item Geometry in GeoJson format.</p>
2670
+ * @public
2671
2671
  */
2672
2672
  Geometry: Geometry | undefined;
2673
2673
  /**
2674
- * @public
2675
2674
  * <p>This is a dictionary of Asset Objects data associated with the Item that
2676
2675
  * can be downloaded or streamed, each with a unique key.</p>
2676
+ * @public
2677
2677
  */
2678
2678
  Assets?: Record<string, AssetValue>;
2679
2679
  /**
2680
- * @public
2681
2680
  * <p>The searchable date and time of the item, in UTC.</p>
2681
+ * @public
2682
2682
  */
2683
2683
  DateTime: Date | undefined;
2684
2684
  /**
2685
- * @public
2686
2685
  * <p>This field contains additional properties of the item.</p>
2686
+ * @public
2687
2687
  */
2688
2688
  Properties?: Properties;
2689
2689
  }
@@ -2692,14 +2692,14 @@ export interface ItemSource {
2692
2692
  */
2693
2693
  export interface ListRasterDataCollectionsInput {
2694
2694
  /**
2695
- * @public
2696
2695
  * <p>If the previous response was truncated, you receive this token.
2697
2696
  * Use it in your next request to receive the next set of results.</p>
2697
+ * @public
2698
2698
  */
2699
2699
  NextToken?: string;
2700
2700
  /**
2701
- * @public
2702
2701
  * <p>The total number of items to return.</p>
2702
+ * @public
2703
2703
  */
2704
2704
  MaxResults?: number;
2705
2705
  }
@@ -2708,14 +2708,14 @@ export interface ListRasterDataCollectionsInput {
2708
2708
  */
2709
2709
  export interface ListRasterDataCollectionsOutput {
2710
2710
  /**
2711
- * @public
2712
2711
  * <p>Contains summary information about the raster data collection.</p>
2712
+ * @public
2713
2713
  */
2714
2714
  RasterDataCollectionSummaries: RasterDataCollectionMetadata[] | undefined;
2715
2715
  /**
2716
- * @public
2717
2716
  * <p>If the previous response was truncated, you receive this token.
2718
2717
  * Use it in your next request to receive the next set of results.</p>
2718
+ * @public
2719
2719
  */
2720
2720
  NextToken?: string;
2721
2721
  }
@@ -2724,8 +2724,8 @@ export interface ListRasterDataCollectionsOutput {
2724
2724
  */
2725
2725
  export interface ListTagsForResourceRequest {
2726
2726
  /**
2727
- * @public
2728
2727
  * <p>The Amazon Resource Name (ARN) of the resource you want to tag.</p>
2728
+ * @public
2729
2729
  */
2730
2730
  ResourceArn: string | undefined;
2731
2731
  }
@@ -2734,8 +2734,8 @@ export interface ListTagsForResourceRequest {
2734
2734
  */
2735
2735
  export interface ListTagsForResourceResponse {
2736
2736
  /**
2737
- * @public
2738
2737
  * <p>Each tag consists of a key and a value.</p>
2738
+ * @public
2739
2739
  */
2740
2740
  Tags?: Record<string, string>;
2741
2741
  }
@@ -2744,70 +2744,70 @@ export interface ListTagsForResourceResponse {
2744
2744
  */
2745
2745
  export interface ListVectorEnrichmentJobInput {
2746
2746
  /**
2747
- * @public
2748
2747
  * <p>A filter that retrieves only jobs with a specific status.</p>
2748
+ * @public
2749
2749
  */
2750
2750
  StatusEquals?: string;
2751
2751
  /**
2752
- * @public
2753
2752
  * <p>An optional value that specifies whether you want the results sorted in <code>Ascending</code> or <code>Descending</code> order.</p>
2753
+ * @public
2754
2754
  */
2755
2755
  SortOrder?: SortOrder;
2756
2756
  /**
2757
- * @public
2758
2757
  * <p>The parameter by which to sort the results.</p>
2758
+ * @public
2759
2759
  */
2760
2760
  SortBy?: string;
2761
2761
  /**
2762
- * @public
2763
2762
  * <p>If the previous response was truncated, you receive this token.
2764
2763
  * Use it in your next request to receive the next set of results.</p>
2764
+ * @public
2765
2765
  */
2766
2766
  NextToken?: string;
2767
2767
  /**
2768
- * @public
2769
2768
  * <p>The maximum number of items to return.</p>
2769
+ * @public
2770
2770
  */
2771
2771
  MaxResults?: number;
2772
2772
  }
2773
2773
  /**
2774
- * @public
2775
2774
  * <p>An object containing information about the output file.</p>
2775
+ * @public
2776
2776
  */
2777
2777
  export interface ListVectorEnrichmentJobOutputConfig {
2778
2778
  /**
2779
- * @public
2780
2779
  * <p>The Amazon Resource Name (ARN) of the list of the Vector Enrichment jobs.</p>
2780
+ * @public
2781
2781
  */
2782
2782
  Arn: string | undefined;
2783
2783
  /**
2784
- * @public
2785
2784
  * <p>The names of the Vector Enrichment jobs in the list.</p>
2785
+ * @public
2786
2786
  */
2787
2787
  Name: string | undefined;
2788
2788
  /**
2789
- * @public
2790
2789
  * <p>The type of the list of Vector Enrichment jobs.</p>
2790
+ * @public
2791
2791
  */
2792
2792
  Type: VectorEnrichmentJobType | undefined;
2793
2793
  /**
2794
- * @public
2795
2794
  * <p>The creation time.</p>
2795
+ * @public
2796
2796
  */
2797
2797
  CreationTime: Date | undefined;
2798
2798
  /**
2799
- * @public
2800
2799
  * <p>The duration of the session, in seconds.</p>
2800
+ * @public
2801
2801
  */
2802
2802
  DurationInSeconds: number | undefined;
2803
2803
  /**
2804
- * @public
2805
2804
  * <p>The status of the Vector Enrichment jobs list. </p>
2805
+ * @public
2806
2806
  */
2807
2807
  Status: VectorEnrichmentJobStatus | undefined;
2808
2808
  /**
2809
- * @public
2810
2809
  * <p>Each tag consists of a key and a value.</p>
2810
+ * @public
2811
2811
  */
2812
2812
  Tags?: Record<string, string>;
2813
2813
  }
@@ -2816,40 +2816,40 @@ export interface ListVectorEnrichmentJobOutputConfig {
2816
2816
  */
2817
2817
  export interface ListVectorEnrichmentJobOutput {
2818
2818
  /**
2819
- * @public
2820
2819
  * <p>Contains summary information about the Vector Enrichment jobs.</p>
2820
+ * @public
2821
2821
  */
2822
2822
  VectorEnrichmentJobSummaries: ListVectorEnrichmentJobOutputConfig[] | undefined;
2823
2823
  /**
2824
- * @public
2825
2824
  * <p>If the previous response was truncated, you receive this token.
2826
2825
  * Use it in your next request to receive the next set of results.</p>
2826
+ * @public
2827
2827
  */
2828
2828
  NextToken?: string;
2829
2829
  }
2830
2830
  /**
2831
- * @public
2832
2831
  * <p>This is a RasterDataCollectionQueryInput containing AreaOfInterest, Time Range filter and Property filters.</p>
2832
+ * @public
2833
2833
  */
2834
2834
  export interface RasterDataCollectionQueryWithBandFilterInput {
2835
2835
  /**
2836
- * @public
2837
2836
  * <p>The TimeRange Filter used in the search query.</p>
2837
+ * @public
2838
2838
  */
2839
2839
  TimeRangeFilter: TimeRangeFilterInput | undefined;
2840
2840
  /**
2841
- * @public
2842
2841
  * <p>The Area of interest to be used in the search query.</p>
2842
+ * @public
2843
2843
  */
2844
2844
  AreaOfInterest?: AreaOfInterest;
2845
2845
  /**
2846
- * @public
2847
2846
  * <p>The Property Filters used in the search query.</p>
2847
+ * @public
2848
2848
  */
2849
2849
  PropertyFilters?: PropertyFilters;
2850
2850
  /**
2851
- * @public
2852
2851
  * <p>The list of Bands to be displayed in the result for each item.</p>
2852
+ * @public
2853
2853
  */
2854
2854
  BandFilter?: string[];
2855
2855
  }
@@ -2858,20 +2858,20 @@ export interface RasterDataCollectionQueryWithBandFilterInput {
2858
2858
  */
2859
2859
  export interface SearchRasterDataCollectionInput {
2860
2860
  /**
2861
- * @public
2862
2861
  * <p>The Amazon Resource Name (ARN) of the raster data collection.</p>
2862
+ * @public
2863
2863
  */
2864
2864
  Arn: string | undefined;
2865
2865
  /**
2866
- * @public
2867
2866
  * <p>RasterDataCollectionQuery consisting of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html">AreaOfInterest(AOI)</a>, <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html">PropertyFilters</a> and
2868
2867
  * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html">TimeRangeFilterInput</a> used in <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html">SearchRasterDataCollection</a>.</p>
2868
+ * @public
2869
2869
  */
2870
2870
  RasterDataCollectionQuery: RasterDataCollectionQueryWithBandFilterInput | undefined;
2871
2871
  /**
2872
- * @public
2873
2872
  * <p>If the previous response was truncated, you receive this token.
2874
2873
  * Use it in your next request to receive the next set of results.</p>
2874
+ * @public
2875
2875
  */
2876
2876
  NextToken?: string;
2877
2877
  }
@@ -2880,19 +2880,19 @@ export interface SearchRasterDataCollectionInput {
2880
2880
  */
2881
2881
  export interface SearchRasterDataCollectionOutput {
2882
2882
  /**
2883
- * @public
2884
2883
  * <p>Approximate number of results in the response.</p>
2884
+ * @public
2885
2885
  */
2886
2886
  ApproximateResultCount: number | undefined;
2887
2887
  /**
2888
- * @public
2889
2888
  * <p>If the previous response was truncated, you receive this token.
2890
2889
  * Use it in your next request to receive the next set of results.</p>
2890
+ * @public
2891
2891
  */
2892
2892
  NextToken?: string;
2893
2893
  /**
2894
- * @public
2895
2894
  * <p>List of items matching the Raster DataCollectionQuery.</p>
2895
+ * @public
2896
2896
  */
2897
2897
  Items?: ItemSource[];
2898
2898
  }
@@ -2901,13 +2901,13 @@ export interface SearchRasterDataCollectionOutput {
2901
2901
  */
2902
2902
  export interface TagResourceRequest {
2903
2903
  /**
2904
- * @public
2905
2904
  * <p>The Amazon Resource Name (ARN) of the resource you want to tag.</p>
2905
+ * @public
2906
2906
  */
2907
2907
  ResourceArn: string | undefined;
2908
2908
  /**
2909
- * @public
2910
2909
  * <p>Each tag consists of a key and a value.</p>
2910
+ * @public
2911
2911
  */
2912
2912
  Tags: Record<string, string> | undefined;
2913
2913
  }
@@ -2921,13 +2921,13 @@ export interface TagResourceResponse {
2921
2921
  */
2922
2922
  export interface UntagResourceRequest {
2923
2923
  /**
2924
- * @public
2925
2924
  * <p>The Amazon Resource Name (ARN) of the resource you want to untag.</p>
2925
+ * @public
2926
2926
  */
2927
2927
  ResourceArn: string | undefined;
2928
2928
  /**
2929
- * @public
2930
2929
  * <p>Keys of the tags you want to remove.</p>
2930
+ * @public
2931
2931
  */
2932
2932
  TagKeys: string[] | undefined;
2933
2933
  }
@@ -2941,38 +2941,38 @@ export interface UntagResourceResponse {
2941
2941
  */
2942
2942
  export interface StartVectorEnrichmentJobInput {
2943
2943
  /**
2944
- * @public
2945
2944
  * <p>The name of the Vector Enrichment job.</p>
2945
+ * @public
2946
2946
  */
2947
2947
  Name: string | undefined;
2948
2948
  /**
2949
- * @public
2950
2949
  * <p>A unique token that guarantees that the call to this API is idempotent.</p>
2950
+ * @public
2951
2951
  */
2952
2952
  ClientToken?: string;
2953
2953
  /**
2954
- * @public
2955
2954
  * <p>The Key Management Service key ID for server-side encryption.</p>
2955
+ * @public
2956
2956
  */
2957
2957
  KmsKeyId?: string;
2958
2958
  /**
2959
- * @public
2960
2959
  * <p>Input configuration information for the Vector Enrichment job.</p>
2960
+ * @public
2961
2961
  */
2962
2962
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
2963
2963
  /**
2964
- * @public
2965
2964
  * <p>An object containing information about the job configuration.</p>
2965
+ * @public
2966
2966
  */
2967
2967
  JobConfig: VectorEnrichmentJobConfig | undefined;
2968
2968
  /**
2969
- * @public
2970
2969
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
2970
+ * @public
2971
2971
  */
2972
2972
  ExecutionRoleArn: string | undefined;
2973
2973
  /**
2974
- * @public
2975
2974
  * <p>Each tag consists of a key and a value.</p>
2975
+ * @public
2976
2976
  */
2977
2977
  Tags?: Record<string, string>;
2978
2978
  }
@@ -2981,58 +2981,58 @@ export interface StartVectorEnrichmentJobInput {
2981
2981
  */
2982
2982
  export interface StartVectorEnrichmentJobOutput {
2983
2983
  /**
2984
- * @public
2985
2984
  * <p>The name of the Vector Enrichment job.</p>
2985
+ * @public
2986
2986
  */
2987
2987
  Name: string | undefined;
2988
2988
  /**
2989
- * @public
2990
2989
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
2990
+ * @public
2991
2991
  */
2992
2992
  Arn: string | undefined;
2993
2993
  /**
2994
- * @public
2995
2994
  * <p>The type of the Vector Enrichment job.</p>
2995
+ * @public
2996
2996
  */
2997
2997
  Type: VectorEnrichmentJobType | undefined;
2998
2998
  /**
2999
- * @public
3000
2999
  * <p>The creation time.</p>
3000
+ * @public
3001
3001
  */
3002
3002
  CreationTime: Date | undefined;
3003
3003
  /**
3004
- * @public
3005
3004
  * <p>The duration of the Vector Enrichment job, in seconds.</p>
3005
+ * @public
3006
3006
  */
3007
3007
  DurationInSeconds: number | undefined;
3008
3008
  /**
3009
- * @public
3010
3009
  * <p>The status of the Vector Enrichment job being started.</p>
3010
+ * @public
3011
3011
  */
3012
3012
  Status: VectorEnrichmentJobStatus | undefined;
3013
3013
  /**
3014
- * @public
3015
3014
  * <p>The Key Management Service key ID for server-side encryption.</p>
3015
+ * @public
3016
3016
  */
3017
3017
  KmsKeyId?: string;
3018
3018
  /**
3019
- * @public
3020
3019
  * <p>Input configuration information for starting the Vector Enrichment job.</p>
3020
+ * @public
3021
3021
  */
3022
3022
  InputConfig: VectorEnrichmentJobInputConfig | undefined;
3023
3023
  /**
3024
- * @public
3025
3024
  * <p>An object containing information about the job configuration.</p>
3025
+ * @public
3026
3026
  */
3027
3027
  JobConfig: VectorEnrichmentJobConfig | undefined;
3028
3028
  /**
3029
- * @public
3030
3029
  * <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
3030
+ * @public
3031
3031
  */
3032
3032
  ExecutionRoleArn: string | undefined;
3033
3033
  /**
3034
- * @public
3035
3034
  * <p>Each tag consists of a key and a value.</p>
3035
+ * @public
3036
3036
  */
3037
3037
  Tags?: Record<string, string>;
3038
3038
  }
@@ -3041,8 +3041,8 @@ export interface StartVectorEnrichmentJobOutput {
3041
3041
  */
3042
3042
  export interface StopVectorEnrichmentJobInput {
3043
3043
  /**
3044
- * @public
3045
3044
  * <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
3045
+ * @public
3046
3046
  */
3047
3047
  Arn: string | undefined;
3048
3048
  }