@aws-sdk/client-sagemaker-geospatial 3.301.0 → 3.306.0

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