@aws-sdk/client-sagemaker-geospatial 3.221.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 (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +205 -0
  3. package/dist-cjs/SageMakerGeospatial.js +292 -0
  4. package/dist-cjs/SageMakerGeospatialClient.js +40 -0
  5. package/dist-cjs/commands/DeleteEarthObservationJobCommand.js +46 -0
  6. package/dist-cjs/commands/DeleteVectorEnrichmentJobCommand.js +46 -0
  7. package/dist-cjs/commands/ExportEarthObservationJobCommand.js +46 -0
  8. package/dist-cjs/commands/ExportVectorEnrichmentJobCommand.js +46 -0
  9. package/dist-cjs/commands/GetEarthObservationJobCommand.js +46 -0
  10. package/dist-cjs/commands/GetRasterDataCollectionCommand.js +46 -0
  11. package/dist-cjs/commands/GetTileCommand.js +46 -0
  12. package/dist-cjs/commands/GetVectorEnrichmentJobCommand.js +46 -0
  13. package/dist-cjs/commands/ListEarthObservationJobsCommand.js +46 -0
  14. package/dist-cjs/commands/ListRasterDataCollectionsCommand.js +46 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  16. package/dist-cjs/commands/ListVectorEnrichmentJobsCommand.js +46 -0
  17. package/dist-cjs/commands/SearchRasterDataCollectionCommand.js +46 -0
  18. package/dist-cjs/commands/StartEarthObservationJobCommand.js +46 -0
  19. package/dist-cjs/commands/StartVectorEnrichmentJobCommand.js +46 -0
  20. package/dist-cjs/commands/StopEarthObservationJobCommand.js +46 -0
  21. package/dist-cjs/commands/StopVectorEnrichmentJobCommand.js +46 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  24. package/dist-cjs/commands/index.js +22 -0
  25. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  26. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  27. package/dist-cjs/endpoint/ruleset.js +312 -0
  28. package/dist-cjs/index.js +11 -0
  29. package/dist-cjs/models/SageMakerGeospatialServiceException.js +11 -0
  30. package/dist-cjs/models/index.js +4 -0
  31. package/dist-cjs/models/models_0.js +857 -0
  32. package/dist-cjs/pagination/Interfaces.js +2 -0
  33. package/dist-cjs/pagination/ListEarthObservationJobsPaginator.js +35 -0
  34. package/dist-cjs/pagination/ListRasterDataCollectionsPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListVectorEnrichmentJobsPaginator.js +35 -0
  36. package/dist-cjs/pagination/SearchRasterDataCollectionPaginator.js +35 -0
  37. package/dist-cjs/pagination/index.js +8 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +2776 -0
  39. package/dist-cjs/runtimeConfig.browser.js +44 -0
  40. package/dist-cjs/runtimeConfig.js +52 -0
  41. package/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist-cjs/runtimeConfig.shared.js +18 -0
  43. package/dist-es/SageMakerGeospatial.js +288 -0
  44. package/dist-es/SageMakerGeospatialClient.js +36 -0
  45. package/dist-es/commands/DeleteEarthObservationJobCommand.js +42 -0
  46. package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +42 -0
  47. package/dist-es/commands/ExportEarthObservationJobCommand.js +42 -0
  48. package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +42 -0
  49. package/dist-es/commands/GetEarthObservationJobCommand.js +42 -0
  50. package/dist-es/commands/GetRasterDataCollectionCommand.js +42 -0
  51. package/dist-es/commands/GetTileCommand.js +42 -0
  52. package/dist-es/commands/GetVectorEnrichmentJobCommand.js +42 -0
  53. package/dist-es/commands/ListEarthObservationJobsCommand.js +42 -0
  54. package/dist-es/commands/ListRasterDataCollectionsCommand.js +42 -0
  55. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  56. package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +42 -0
  57. package/dist-es/commands/SearchRasterDataCollectionCommand.js +42 -0
  58. package/dist-es/commands/StartEarthObservationJobCommand.js +42 -0
  59. package/dist-es/commands/StartVectorEnrichmentJobCommand.js +42 -0
  60. package/dist-es/commands/StopEarthObservationJobCommand.js +42 -0
  61. package/dist-es/commands/StopVectorEnrichmentJobCommand.js +42 -0
  62. package/dist-es/commands/TagResourceCommand.js +42 -0
  63. package/dist-es/commands/UntagResourceCommand.js +42 -0
  64. package/dist-es/commands/index.js +19 -0
  65. package/dist-es/endpoint/EndpointParameters.js +8 -0
  66. package/dist-es/endpoint/endpointResolver.js +8 -0
  67. package/dist-es/endpoint/ruleset.js +309 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/SageMakerGeospatialServiceException.js +7 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +748 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListEarthObservationJobsPaginator.js +31 -0
  74. package/dist-es/pagination/ListRasterDataCollectionsPaginator.js +31 -0
  75. package/dist-es/pagination/ListVectorEnrichmentJobsPaginator.js +31 -0
  76. package/dist-es/pagination/SearchRasterDataCollectionPaginator.js +31 -0
  77. package/dist-es/pagination/index.js +5 -0
  78. package/dist-es/protocols/Aws_restJson1.js +2735 -0
  79. package/dist-es/runtimeConfig.browser.js +39 -0
  80. package/dist-es/runtimeConfig.js +47 -0
  81. package/dist-es/runtimeConfig.native.js +11 -0
  82. package/dist-es/runtimeConfig.shared.js +14 -0
  83. package/dist-types/SageMakerGeospatial.d.ts +140 -0
  84. package/dist-types/SageMakerGeospatialClient.d.ts +165 -0
  85. package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +37 -0
  86. package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +37 -0
  87. package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +37 -0
  88. package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +37 -0
  89. package/dist-types/commands/GetEarthObservationJobCommand.d.ts +37 -0
  90. package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +37 -0
  91. package/dist-types/commands/GetTileCommand.d.ts +37 -0
  92. package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +37 -0
  93. package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +37 -0
  94. package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +37 -0
  95. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  96. package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +37 -0
  97. package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +37 -0
  98. package/dist-types/commands/StartEarthObservationJobCommand.d.ts +37 -0
  99. package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +37 -0
  100. package/dist-types/commands/StopEarthObservationJobCommand.d.ts +37 -0
  101. package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +37 -0
  102. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  103. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  104. package/dist-types/commands/index.d.ts +19 -0
  105. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  106. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  107. package/dist-types/endpoint/ruleset.d.ts +2 -0
  108. package/dist-types/index.d.ts +6 -0
  109. package/dist-types/models/SageMakerGeospatialServiceException.d.ts +10 -0
  110. package/dist-types/models/index.d.ts +1 -0
  111. package/dist-types/models/models_0.d.ts +2704 -0
  112. package/dist-types/pagination/Interfaces.d.ts +6 -0
  113. package/dist-types/pagination/ListEarthObservationJobsPaginator.d.ts +4 -0
  114. package/dist-types/pagination/ListRasterDataCollectionsPaginator.d.ts +4 -0
  115. package/dist-types/pagination/ListVectorEnrichmentJobsPaginator.d.ts +4 -0
  116. package/dist-types/pagination/SearchRasterDataCollectionPaginator.d.ts +4 -0
  117. package/dist-types/pagination/index.d.ts +5 -0
  118. package/dist-types/protocols/Aws_restJson1.d.ts +59 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +43 -0
  120. package/dist-types/runtimeConfig.d.ts +43 -0
  121. package/dist-types/runtimeConfig.native.d.ts +42 -0
  122. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  123. package/dist-types/ts3.4/SageMakerGeospatial.d.ts +327 -0
  124. package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +228 -0
  125. package/dist-types/ts3.4/commands/DeleteEarthObservationJobCommand.d.ts +41 -0
  126. package/dist-types/ts3.4/commands/DeleteVectorEnrichmentJobCommand.d.ts +41 -0
  127. package/dist-types/ts3.4/commands/ExportEarthObservationJobCommand.d.ts +41 -0
  128. package/dist-types/ts3.4/commands/ExportVectorEnrichmentJobCommand.d.ts +41 -0
  129. package/dist-types/ts3.4/commands/GetEarthObservationJobCommand.d.ts +41 -0
  130. package/dist-types/ts3.4/commands/GetRasterDataCollectionCommand.d.ts +41 -0
  131. package/dist-types/ts3.4/commands/GetTileCommand.d.ts +35 -0
  132. package/dist-types/ts3.4/commands/GetVectorEnrichmentJobCommand.d.ts +41 -0
  133. package/dist-types/ts3.4/commands/ListEarthObservationJobsCommand.d.ts +41 -0
  134. package/dist-types/ts3.4/commands/ListRasterDataCollectionsCommand.d.ts +41 -0
  135. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  136. package/dist-types/ts3.4/commands/ListVectorEnrichmentJobsCommand.d.ts +41 -0
  137. package/dist-types/ts3.4/commands/SearchRasterDataCollectionCommand.d.ts +41 -0
  138. package/dist-types/ts3.4/commands/StartEarthObservationJobCommand.d.ts +41 -0
  139. package/dist-types/ts3.4/commands/StartVectorEnrichmentJobCommand.d.ts +41 -0
  140. package/dist-types/ts3.4/commands/StopEarthObservationJobCommand.d.ts +41 -0
  141. package/dist-types/ts3.4/commands/StopVectorEnrichmentJobCommand.d.ts +41 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  144. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  145. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  146. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  147. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  148. package/dist-types/ts3.4/index.d.ts +6 -0
  149. package/dist-types/ts3.4/models/SageMakerGeospatialServiceException.d.ts +7 -0
  150. package/dist-types/ts3.4/models/index.d.ts +1 -0
  151. package/dist-types/ts3.4/models/models_0.d.ts +1265 -0
  152. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  153. package/dist-types/ts3.4/pagination/ListEarthObservationJobsPaginator.d.ts +11 -0
  154. package/dist-types/ts3.4/pagination/ListRasterDataCollectionsPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListVectorEnrichmentJobsPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/SearchRasterDataCollectionPaginator.d.ts +11 -0
  157. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  158. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +236 -0
  159. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  160. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  161. package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
  162. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
  163. package/package.json +105 -0
@@ -0,0 +1,1265 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { Readable } from "stream";
3
+ import { SageMakerGeospatialServiceException as __BaseException } from "./SageMakerGeospatialServiceException";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
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
+ }
47
+ export interface MultiPolygonGeometryInput {
48
+ Coordinates: number[][][][] | undefined;
49
+ }
50
+ export interface PolygonGeometryInput {
51
+ Coordinates: number[][][] | undefined;
52
+ }
53
+ export declare type AreaOfInterestGeometry =
54
+ | AreaOfInterestGeometry.MultiPolygonGeometryMember
55
+ | AreaOfInterestGeometry.PolygonGeometryMember
56
+ | AreaOfInterestGeometry.$UnknownMember;
57
+ export declare namespace AreaOfInterestGeometry {
58
+ interface PolygonGeometryMember {
59
+ PolygonGeometry: PolygonGeometryInput;
60
+ MultiPolygonGeometry?: never;
61
+ $unknown?: never;
62
+ }
63
+ interface MultiPolygonGeometryMember {
64
+ PolygonGeometry?: never;
65
+ MultiPolygonGeometry: MultiPolygonGeometryInput;
66
+ $unknown?: never;
67
+ }
68
+ interface $UnknownMember {
69
+ PolygonGeometry?: never;
70
+ MultiPolygonGeometry?: never;
71
+ $unknown: [string, any];
72
+ }
73
+ interface Visitor<T> {
74
+ PolygonGeometry: (value: PolygonGeometryInput) => T;
75
+ MultiPolygonGeometry: (value: MultiPolygonGeometryInput) => T;
76
+ _: (name: string, value: any) => T;
77
+ }
78
+ const visit: <T>(value: AreaOfInterestGeometry, visitor: Visitor<T>) => T;
79
+ }
80
+ export declare type AreaOfInterest =
81
+ | AreaOfInterest.AreaOfInterestGeometryMember
82
+ | AreaOfInterest.$UnknownMember;
83
+ export declare namespace AreaOfInterest {
84
+ interface AreaOfInterestGeometryMember {
85
+ AreaOfInterestGeometry: AreaOfInterestGeometry;
86
+ $unknown?: never;
87
+ }
88
+ interface $UnknownMember {
89
+ AreaOfInterestGeometry?: never;
90
+ $unknown: [string, any];
91
+ }
92
+ interface Visitor<T> {
93
+ AreaOfInterestGeometry: (value: AreaOfInterestGeometry) => T;
94
+ _: (name: string, value: any) => T;
95
+ }
96
+ const visit: <T>(value: AreaOfInterest, visitor: Visitor<T>) => T;
97
+ }
98
+ export interface AssetValue {
99
+ Href?: string;
100
+ }
101
+ export declare enum OutputType {
102
+ FLOAT32 = "FLOAT32",
103
+ FLOAT64 = "FLOAT64",
104
+ INT16 = "INT16",
105
+ INT32 = "INT32",
106
+ UINT16 = "UINT16",
107
+ }
108
+ export interface Operation {
109
+ Name: string | undefined;
110
+ Equation: string | undefined;
111
+ OutputType?: OutputType | string;
112
+ }
113
+ export interface CustomIndicesInput {
114
+ Operations?: Operation[];
115
+ }
116
+ export interface BandMathConfigInput {
117
+ PredefinedIndices?: string[];
118
+ CustomIndices?: CustomIndicesInput;
119
+ }
120
+ export interface CloudMaskingConfigInput {}
121
+ export interface CloudRemovalConfigInput {
122
+ AlgorithmName?: AlgorithmNameCloudRemoval | string;
123
+ InterpolationValue?: string;
124
+ TargetBands?: string[];
125
+ }
126
+ export declare enum ComparisonOperator {
127
+ EQUALS = "EQUALS",
128
+ NOT_EQUALS = "NOT_EQUALS",
129
+ STARTS_WITH = "STARTS_WITH",
130
+ }
131
+ export declare class ConflictException extends __BaseException {
132
+ readonly name: "ConflictException";
133
+ readonly $fault: "client";
134
+ Message: string | undefined;
135
+ ResourceId: string | undefined;
136
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
137
+ }
138
+ export interface Filter {
139
+ Name: string | undefined;
140
+ Type: string | undefined;
141
+ Minimum?: number;
142
+ Maximum?: number;
143
+ }
144
+ export declare enum DataCollectionType {
145
+ PREMIUM = "PREMIUM",
146
+ PUBLIC = "PUBLIC",
147
+ USER = "USER",
148
+ }
149
+ export interface RasterDataCollectionMetadata {
150
+ Name: string | undefined;
151
+ Arn: string | undefined;
152
+ Type: DataCollectionType | string | undefined;
153
+ Description: string | undefined;
154
+ DescriptionPageUrl?: string;
155
+ SupportedFilters: Filter[] | undefined;
156
+ Tags?: Record<string, string>;
157
+ }
158
+ export interface DeleteEarthObservationJobInput {
159
+ Arn: string | undefined;
160
+ }
161
+ export interface DeleteEarthObservationJobOutput {}
162
+ export declare class InternalServerException extends __BaseException {
163
+ readonly name: "InternalServerException";
164
+ readonly $fault: "server";
165
+ Message: string | undefined;
166
+ ResourceId: string | undefined;
167
+ constructor(
168
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
169
+ );
170
+ }
171
+ export declare class ResourceNotFoundException extends __BaseException {
172
+ readonly name: "ResourceNotFoundException";
173
+ readonly $fault: "client";
174
+ Message: string | undefined;
175
+ ResourceId: string | undefined;
176
+ constructor(
177
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
178
+ );
179
+ }
180
+ export declare class ThrottlingException extends __BaseException {
181
+ readonly name: "ThrottlingException";
182
+ readonly $fault: "client";
183
+ Message: string | undefined;
184
+ ResourceId: string | undefined;
185
+ constructor(
186
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
187
+ );
188
+ }
189
+ export declare class ValidationException extends __BaseException {
190
+ readonly name: "ValidationException";
191
+ readonly $fault: "client";
192
+ Message: string | undefined;
193
+ ResourceId: string | undefined;
194
+ constructor(
195
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
196
+ );
197
+ }
198
+ export interface DeleteVectorEnrichmentJobInput {
199
+ Arn: string | undefined;
200
+ }
201
+ export interface DeleteVectorEnrichmentJobOutput {}
202
+ export interface ExportS3DataInput {
203
+ S3Uri: string | undefined;
204
+ KmsKeyId?: string;
205
+ }
206
+ export interface OutputConfigInput {
207
+ S3Data: ExportS3DataInput | undefined;
208
+ }
209
+ export interface ExportEarthObservationJobInput {
210
+ Arn: string | undefined;
211
+ ExecutionRoleArn: string | undefined;
212
+ OutputConfig: OutputConfigInput | undefined;
213
+ ExportSourceImages?: boolean;
214
+ }
215
+ export declare enum EarthObservationJobExportStatus {
216
+ FAILED = "FAILED",
217
+ IN_PROGRESS = "IN_PROGRESS",
218
+ SUCCEEDED = "SUCCEEDED",
219
+ }
220
+ export interface ExportEarthObservationJobOutput {
221
+ Arn: string | undefined;
222
+ CreationTime: Date | undefined;
223
+ ExportStatus: EarthObservationJobExportStatus | string | undefined;
224
+ ExecutionRoleArn: string | undefined;
225
+ OutputConfig: OutputConfigInput | undefined;
226
+ ExportSourceImages?: boolean;
227
+ }
228
+ export declare class ServiceQuotaExceededException extends __BaseException {
229
+ readonly name: "ServiceQuotaExceededException";
230
+ readonly $fault: "client";
231
+ Message: string | undefined;
232
+ ResourceId: string | undefined;
233
+ constructor(
234
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
235
+ );
236
+ }
237
+ export interface GetEarthObservationJobInput {
238
+ Arn: string | undefined;
239
+ }
240
+ export declare enum EarthObservationJobErrorType {
241
+ CLIENT_ERROR = "CLIENT_ERROR",
242
+ SERVER_ERROR = "SERVER_ERROR",
243
+ }
244
+ export interface EarthObservationJobErrorDetails {
245
+ Type?: EarthObservationJobErrorType | string;
246
+ Message?: string;
247
+ }
248
+ export declare enum ExportErrorType {
249
+ CLIENT_ERROR = "CLIENT_ERROR",
250
+ SERVER_ERROR = "SERVER_ERROR",
251
+ }
252
+ export interface ExportErrorDetailsOutput {
253
+ Type?: ExportErrorType | string;
254
+ Message?: string;
255
+ }
256
+ export interface ExportErrorDetails {
257
+ ExportResults?: ExportErrorDetailsOutput;
258
+ ExportSourceImages?: ExportErrorDetailsOutput;
259
+ }
260
+ export declare enum MetadataProvider {
261
+ PLANET_ORDER = "PLANET_ORDER",
262
+ }
263
+ export interface S3DataInput {
264
+ S3Uri: string | undefined;
265
+ MetadataProvider: MetadataProvider | string | undefined;
266
+ KmsKeyId?: string;
267
+ }
268
+ export declare type EojDataSourceConfigInput =
269
+ | EojDataSourceConfigInput.S3DataMember
270
+ | EojDataSourceConfigInput.$UnknownMember;
271
+ export declare namespace EojDataSourceConfigInput {
272
+ interface S3DataMember {
273
+ S3Data: S3DataInput;
274
+ $unknown?: never;
275
+ }
276
+ interface $UnknownMember {
277
+ S3Data?: never;
278
+ $unknown: [string, any];
279
+ }
280
+ interface Visitor<T> {
281
+ S3Data: (value: S3DataInput) => T;
282
+ _: (name: string, value: any) => T;
283
+ }
284
+ const visit: <T>(value: EojDataSourceConfigInput, visitor: Visitor<T>) => T;
285
+ }
286
+ export declare enum LogicalOperator {
287
+ AND = "AND",
288
+ }
289
+ export interface EoCloudCoverInput {
290
+ LowerBound: number | undefined;
291
+ UpperBound: number | undefined;
292
+ }
293
+ export interface LandsatCloudCoverLandInput {
294
+ LowerBound: number | undefined;
295
+ UpperBound: number | undefined;
296
+ }
297
+ export interface PlatformInput {
298
+ Value: string | undefined;
299
+ ComparisonOperator?: ComparisonOperator | string;
300
+ }
301
+ export interface ViewOffNadirInput {
302
+ LowerBound: number | undefined;
303
+ UpperBound: number | undefined;
304
+ }
305
+ export interface ViewSunAzimuthInput {
306
+ LowerBound: number | undefined;
307
+ UpperBound: number | undefined;
308
+ }
309
+ export interface ViewSunElevationInput {
310
+ LowerBound: number | undefined;
311
+ UpperBound: number | undefined;
312
+ }
313
+ export declare type Property =
314
+ | Property.EoCloudCoverMember
315
+ | Property.LandsatCloudCoverLandMember
316
+ | Property.PlatformMember
317
+ | Property.ViewOffNadirMember
318
+ | Property.ViewSunAzimuthMember
319
+ | Property.ViewSunElevationMember
320
+ | Property.$UnknownMember;
321
+ export declare namespace Property {
322
+ interface EoCloudCoverMember {
323
+ EoCloudCover: EoCloudCoverInput;
324
+ ViewOffNadir?: never;
325
+ ViewSunAzimuth?: never;
326
+ ViewSunElevation?: never;
327
+ Platform?: never;
328
+ LandsatCloudCoverLand?: never;
329
+ $unknown?: never;
330
+ }
331
+ interface ViewOffNadirMember {
332
+ EoCloudCover?: never;
333
+ ViewOffNadir: ViewOffNadirInput;
334
+ ViewSunAzimuth?: never;
335
+ ViewSunElevation?: never;
336
+ Platform?: never;
337
+ LandsatCloudCoverLand?: never;
338
+ $unknown?: never;
339
+ }
340
+ interface ViewSunAzimuthMember {
341
+ EoCloudCover?: never;
342
+ ViewOffNadir?: never;
343
+ ViewSunAzimuth: ViewSunAzimuthInput;
344
+ ViewSunElevation?: never;
345
+ Platform?: never;
346
+ LandsatCloudCoverLand?: never;
347
+ $unknown?: never;
348
+ }
349
+ interface ViewSunElevationMember {
350
+ EoCloudCover?: never;
351
+ ViewOffNadir?: never;
352
+ ViewSunAzimuth?: never;
353
+ ViewSunElevation: ViewSunElevationInput;
354
+ Platform?: never;
355
+ LandsatCloudCoverLand?: never;
356
+ $unknown?: never;
357
+ }
358
+ interface PlatformMember {
359
+ EoCloudCover?: never;
360
+ ViewOffNadir?: never;
361
+ ViewSunAzimuth?: never;
362
+ ViewSunElevation?: never;
363
+ Platform: PlatformInput;
364
+ LandsatCloudCoverLand?: never;
365
+ $unknown?: never;
366
+ }
367
+ interface LandsatCloudCoverLandMember {
368
+ EoCloudCover?: never;
369
+ ViewOffNadir?: never;
370
+ ViewSunAzimuth?: never;
371
+ ViewSunElevation?: never;
372
+ Platform?: never;
373
+ LandsatCloudCoverLand: LandsatCloudCoverLandInput;
374
+ $unknown?: never;
375
+ }
376
+ interface $UnknownMember {
377
+ EoCloudCover?: never;
378
+ ViewOffNadir?: never;
379
+ ViewSunAzimuth?: never;
380
+ ViewSunElevation?: never;
381
+ Platform?: never;
382
+ LandsatCloudCoverLand?: never;
383
+ $unknown: [string, any];
384
+ }
385
+ interface Visitor<T> {
386
+ EoCloudCover: (value: EoCloudCoverInput) => T;
387
+ ViewOffNadir: (value: ViewOffNadirInput) => T;
388
+ ViewSunAzimuth: (value: ViewSunAzimuthInput) => T;
389
+ ViewSunElevation: (value: ViewSunElevationInput) => T;
390
+ Platform: (value: PlatformInput) => T;
391
+ LandsatCloudCoverLand: (value: LandsatCloudCoverLandInput) => T;
392
+ _: (name: string, value: any) => T;
393
+ }
394
+ const visit: <T>(value: Property, visitor: Visitor<T>) => T;
395
+ }
396
+ export interface PropertyFilter {
397
+ Property: Property | undefined;
398
+ }
399
+ export interface PropertyFilters {
400
+ Properties?: PropertyFilter[];
401
+ LogicalOperator?: LogicalOperator | string;
402
+ }
403
+ export interface TimeRangeFilterInput {
404
+ StartTime: Date | undefined;
405
+ EndTime: Date | undefined;
406
+ }
407
+ export interface RasterDataCollectionQueryOutput {
408
+ RasterDataCollectionArn: string | undefined;
409
+ RasterDataCollectionName: string | undefined;
410
+ TimeRangeFilter: TimeRangeFilterInput | undefined;
411
+ AreaOfInterest?: AreaOfInterest;
412
+ PropertyFilters?: PropertyFilters;
413
+ }
414
+ export interface InputConfigOutput {
415
+ PreviousEarthObservationJobArn?: string;
416
+ DataSourceConfig?: EojDataSourceConfigInput;
417
+ RasterDataCollectionQuery?: RasterDataCollectionQueryOutput;
418
+ }
419
+ export interface GeoMosaicConfigInput {
420
+ AlgorithmName?: AlgorithmNameGeoMosaic | string;
421
+ TargetBands?: string[];
422
+ }
423
+ export interface LandCoverSegmentationConfigInput {}
424
+ export declare enum Unit {
425
+ METERS = "METERS",
426
+ }
427
+ export interface UserDefined {
428
+ Value: number | undefined;
429
+ Unit: Unit | string | undefined;
430
+ }
431
+ export interface OutputResolutionResamplingInput {
432
+ UserDefined: UserDefined | undefined;
433
+ }
434
+ export interface ResamplingConfigInput {
435
+ OutputResolution: OutputResolutionResamplingInput | undefined;
436
+ AlgorithmName?: AlgorithmNameResampling | string;
437
+ TargetBands?: string[];
438
+ }
439
+ export declare enum PredefinedResolution {
440
+ AVERAGE = "AVERAGE",
441
+ HIGHEST = "HIGHEST",
442
+ LOWEST = "LOWEST",
443
+ }
444
+ export interface OutputResolutionStackInput {
445
+ Predefined?: PredefinedResolution | string;
446
+ UserDefined?: UserDefined;
447
+ }
448
+ export interface StackConfigInput {
449
+ OutputResolution?: OutputResolutionStackInput;
450
+ TargetBands?: string[];
451
+ }
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
+ }
461
+ export interface TemporalStatisticsConfigInput {
462
+ GroupBy?: GroupBy | string;
463
+ Statistics: (TemporalStatistics | string)[] | undefined;
464
+ TargetBands?: string[];
465
+ }
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
+ }
474
+ export interface ZonalStatisticsConfigInput {
475
+ ZoneS3Path: string | undefined;
476
+ Statistics: (ZonalStatistics | string)[] | undefined;
477
+ TargetBands?: string[];
478
+ }
479
+ export declare type JobConfigInput =
480
+ | JobConfigInput.BandMathConfigMember
481
+ | JobConfigInput.CloudMaskingConfigMember
482
+ | JobConfigInput.CloudRemovalConfigMember
483
+ | JobConfigInput.GeoMosaicConfigMember
484
+ | JobConfigInput.LandCoverSegmentationConfigMember
485
+ | JobConfigInput.ResamplingConfigMember
486
+ | JobConfigInput.StackConfigMember
487
+ | JobConfigInput.TemporalStatisticsConfigMember
488
+ | JobConfigInput.ZonalStatisticsConfigMember
489
+ | JobConfigInput.$UnknownMember;
490
+ export declare namespace JobConfigInput {
491
+ interface BandMathConfigMember {
492
+ BandMathConfig: BandMathConfigInput;
493
+ ResamplingConfig?: never;
494
+ TemporalStatisticsConfig?: never;
495
+ CloudRemovalConfig?: never;
496
+ ZonalStatisticsConfig?: never;
497
+ GeoMosaicConfig?: never;
498
+ StackConfig?: never;
499
+ CloudMaskingConfig?: never;
500
+ LandCoverSegmentationConfig?: never;
501
+ $unknown?: never;
502
+ }
503
+ interface ResamplingConfigMember {
504
+ BandMathConfig?: never;
505
+ ResamplingConfig: ResamplingConfigInput;
506
+ TemporalStatisticsConfig?: never;
507
+ CloudRemovalConfig?: never;
508
+ ZonalStatisticsConfig?: never;
509
+ GeoMosaicConfig?: never;
510
+ StackConfig?: never;
511
+ CloudMaskingConfig?: never;
512
+ LandCoverSegmentationConfig?: never;
513
+ $unknown?: never;
514
+ }
515
+ interface TemporalStatisticsConfigMember {
516
+ BandMathConfig?: never;
517
+ ResamplingConfig?: never;
518
+ TemporalStatisticsConfig: TemporalStatisticsConfigInput;
519
+ CloudRemovalConfig?: never;
520
+ ZonalStatisticsConfig?: never;
521
+ GeoMosaicConfig?: never;
522
+ StackConfig?: never;
523
+ CloudMaskingConfig?: never;
524
+ LandCoverSegmentationConfig?: never;
525
+ $unknown?: never;
526
+ }
527
+ interface CloudRemovalConfigMember {
528
+ BandMathConfig?: never;
529
+ ResamplingConfig?: never;
530
+ TemporalStatisticsConfig?: never;
531
+ CloudRemovalConfig: CloudRemovalConfigInput;
532
+ ZonalStatisticsConfig?: never;
533
+ GeoMosaicConfig?: never;
534
+ StackConfig?: never;
535
+ CloudMaskingConfig?: never;
536
+ LandCoverSegmentationConfig?: never;
537
+ $unknown?: never;
538
+ }
539
+ interface ZonalStatisticsConfigMember {
540
+ BandMathConfig?: never;
541
+ ResamplingConfig?: never;
542
+ TemporalStatisticsConfig?: never;
543
+ CloudRemovalConfig?: never;
544
+ ZonalStatisticsConfig: ZonalStatisticsConfigInput;
545
+ GeoMosaicConfig?: never;
546
+ StackConfig?: never;
547
+ CloudMaskingConfig?: never;
548
+ LandCoverSegmentationConfig?: never;
549
+ $unknown?: never;
550
+ }
551
+ interface GeoMosaicConfigMember {
552
+ BandMathConfig?: never;
553
+ ResamplingConfig?: never;
554
+ TemporalStatisticsConfig?: never;
555
+ CloudRemovalConfig?: never;
556
+ ZonalStatisticsConfig?: never;
557
+ GeoMosaicConfig: GeoMosaicConfigInput;
558
+ StackConfig?: never;
559
+ CloudMaskingConfig?: never;
560
+ LandCoverSegmentationConfig?: never;
561
+ $unknown?: never;
562
+ }
563
+ interface StackConfigMember {
564
+ BandMathConfig?: never;
565
+ ResamplingConfig?: never;
566
+ TemporalStatisticsConfig?: never;
567
+ CloudRemovalConfig?: never;
568
+ ZonalStatisticsConfig?: never;
569
+ GeoMosaicConfig?: never;
570
+ StackConfig: StackConfigInput;
571
+ CloudMaskingConfig?: never;
572
+ LandCoverSegmentationConfig?: never;
573
+ $unknown?: never;
574
+ }
575
+ interface CloudMaskingConfigMember {
576
+ BandMathConfig?: never;
577
+ ResamplingConfig?: never;
578
+ TemporalStatisticsConfig?: never;
579
+ CloudRemovalConfig?: never;
580
+ ZonalStatisticsConfig?: never;
581
+ GeoMosaicConfig?: never;
582
+ StackConfig?: never;
583
+ CloudMaskingConfig: CloudMaskingConfigInput;
584
+ LandCoverSegmentationConfig?: never;
585
+ $unknown?: never;
586
+ }
587
+ interface LandCoverSegmentationConfigMember {
588
+ BandMathConfig?: never;
589
+ ResamplingConfig?: never;
590
+ TemporalStatisticsConfig?: never;
591
+ CloudRemovalConfig?: never;
592
+ ZonalStatisticsConfig?: never;
593
+ GeoMosaicConfig?: never;
594
+ StackConfig?: never;
595
+ CloudMaskingConfig?: never;
596
+ LandCoverSegmentationConfig: LandCoverSegmentationConfigInput;
597
+ $unknown?: never;
598
+ }
599
+ interface $UnknownMember {
600
+ BandMathConfig?: never;
601
+ ResamplingConfig?: never;
602
+ TemporalStatisticsConfig?: never;
603
+ CloudRemovalConfig?: never;
604
+ ZonalStatisticsConfig?: never;
605
+ GeoMosaicConfig?: never;
606
+ StackConfig?: never;
607
+ CloudMaskingConfig?: never;
608
+ LandCoverSegmentationConfig?: never;
609
+ $unknown: [string, any];
610
+ }
611
+ interface Visitor<T> {
612
+ BandMathConfig: (value: BandMathConfigInput) => T;
613
+ ResamplingConfig: (value: ResamplingConfigInput) => T;
614
+ TemporalStatisticsConfig: (value: TemporalStatisticsConfigInput) => T;
615
+ CloudRemovalConfig: (value: CloudRemovalConfigInput) => T;
616
+ ZonalStatisticsConfig: (value: ZonalStatisticsConfigInput) => T;
617
+ GeoMosaicConfig: (value: GeoMosaicConfigInput) => T;
618
+ StackConfig: (value: StackConfigInput) => T;
619
+ CloudMaskingConfig: (value: CloudMaskingConfigInput) => T;
620
+ LandCoverSegmentationConfig: (value: LandCoverSegmentationConfigInput) => T;
621
+ _: (name: string, value: any) => T;
622
+ }
623
+ const visit: <T>(value: JobConfigInput, visitor: Visitor<T>) => T;
624
+ }
625
+ export interface OutputBand {
626
+ BandName: string | undefined;
627
+ OutputDataType: OutputType | string | undefined;
628
+ }
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
+ }
639
+ export interface GetEarthObservationJobOutput {
640
+ Arn: string | undefined;
641
+ Name: string | undefined;
642
+ CreationTime: Date | undefined;
643
+ DurationInSeconds: number | undefined;
644
+ Status: EarthObservationJobStatus | string | undefined;
645
+ KmsKeyId?: string;
646
+ InputConfig: InputConfigOutput | undefined;
647
+ JobConfig: JobConfigInput | undefined;
648
+ OutputBands?: OutputBand[];
649
+ ExecutionRoleArn?: string;
650
+ ErrorDetails?: EarthObservationJobErrorDetails;
651
+ ExportStatus?: EarthObservationJobExportStatus | string;
652
+ ExportErrorDetails?: ExportErrorDetails;
653
+ Tags?: Record<string, string>;
654
+ }
655
+ export declare enum TargetOptions {
656
+ INPUT = "INPUT",
657
+ OUTPUT = "OUTPUT",
658
+ }
659
+ export interface GetTileInput {
660
+ x: number | undefined;
661
+ y: number | undefined;
662
+ z: number | undefined;
663
+ ImageAssets: string[] | undefined;
664
+ Target: TargetOptions | string | undefined;
665
+ Arn: string | undefined;
666
+ ImageMask?: boolean;
667
+ OutputFormat?: string;
668
+ TimeRangeFilter?: string;
669
+ PropertyFilters?: string;
670
+ OutputDataType?: OutputType | string;
671
+ }
672
+ export interface GetTileOutput {
673
+ BinaryFile?: Readable | ReadableStream | Blob;
674
+ }
675
+ export declare enum SortOrder {
676
+ ASCENDING = "ASCENDING",
677
+ DESCENDING = "DESCENDING",
678
+ }
679
+ export interface ListEarthObservationJobInput {
680
+ StatusEquals?: EarthObservationJobStatus | string;
681
+ SortOrder?: SortOrder | string;
682
+ SortBy?: string;
683
+ NextToken?: string;
684
+ MaxResults?: number;
685
+ }
686
+ export interface ListEarthObservationJobOutputConfig {
687
+ Arn: string | undefined;
688
+ Name: string | undefined;
689
+ CreationTime: Date | undefined;
690
+ DurationInSeconds: number | undefined;
691
+ Status: EarthObservationJobStatus | string | undefined;
692
+ OperationType: string | undefined;
693
+ Tags?: Record<string, string>;
694
+ }
695
+ export interface ListEarthObservationJobOutput {
696
+ EarthObservationJobSummaries:
697
+ | ListEarthObservationJobOutputConfig[]
698
+ | undefined;
699
+ NextToken?: string;
700
+ }
701
+ export interface RasterDataCollectionQueryInput {
702
+ RasterDataCollectionArn: string | undefined;
703
+ TimeRangeFilter: TimeRangeFilterInput | undefined;
704
+ AreaOfInterest?: AreaOfInterest;
705
+ PropertyFilters?: PropertyFilters;
706
+ }
707
+ export interface InputConfigInput {
708
+ PreviousEarthObservationJobArn?: string;
709
+ DataSourceConfig?: EojDataSourceConfigInput;
710
+ RasterDataCollectionQuery?: RasterDataCollectionQueryInput;
711
+ }
712
+ export interface StartEarthObservationJobInput {
713
+ Name: string | undefined;
714
+ ClientToken?: string;
715
+ KmsKeyId?: string;
716
+ InputConfig: InputConfigInput | undefined;
717
+ JobConfig: JobConfigInput | undefined;
718
+ ExecutionRoleArn?: string;
719
+ Tags?: Record<string, string>;
720
+ }
721
+ export interface StartEarthObservationJobOutput {
722
+ Name: string | undefined;
723
+ Arn: string | undefined;
724
+ CreationTime: Date | undefined;
725
+ DurationInSeconds: number | undefined;
726
+ Status: EarthObservationJobStatus | string | undefined;
727
+ KmsKeyId?: string;
728
+ InputConfig?: InputConfigOutput;
729
+ JobConfig: JobConfigInput | undefined;
730
+ ExecutionRoleArn?: string;
731
+ Tags?: Record<string, string>;
732
+ }
733
+ export interface StopEarthObservationJobInput {
734
+ Arn: string | undefined;
735
+ }
736
+ export interface StopEarthObservationJobOutput {}
737
+ export interface VectorEnrichmentJobS3Data {
738
+ S3Uri: string | undefined;
739
+ KmsKeyId?: string;
740
+ }
741
+ export interface ExportVectorEnrichmentJobOutputConfig {
742
+ S3Data: VectorEnrichmentJobS3Data | undefined;
743
+ }
744
+ export interface ExportVectorEnrichmentJobInput {
745
+ Arn: string | undefined;
746
+ ExecutionRoleArn: string | undefined;
747
+ OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
748
+ }
749
+ export declare enum VectorEnrichmentJobExportStatus {
750
+ FAILED = "FAILED",
751
+ IN_PROGRESS = "IN_PROGRESS",
752
+ SUCCEEDED = "SUCCEEDED",
753
+ }
754
+ export interface ExportVectorEnrichmentJobOutput {
755
+ Arn: string | undefined;
756
+ CreationTime: Date | undefined;
757
+ ExecutionRoleArn: string | undefined;
758
+ ExportStatus: VectorEnrichmentJobExportStatus | string | undefined;
759
+ OutputConfig: ExportVectorEnrichmentJobOutputConfig | undefined;
760
+ }
761
+ export interface Geometry {
762
+ Type: string | undefined;
763
+ Coordinates: number[][][] | undefined;
764
+ }
765
+ export interface GetRasterDataCollectionInput {
766
+ Arn: string | undefined;
767
+ }
768
+ export interface GetRasterDataCollectionOutput {
769
+ Name: string | undefined;
770
+ Arn: string | undefined;
771
+ Type: DataCollectionType | string | undefined;
772
+ Description: string | undefined;
773
+ DescriptionPageUrl: string | undefined;
774
+ SupportedFilters: Filter[] | undefined;
775
+ ImageSourceBands: string[] | undefined;
776
+ Tags?: Record<string, string>;
777
+ }
778
+ export interface GetVectorEnrichmentJobInput {
779
+ Arn: string | undefined;
780
+ }
781
+ export declare enum VectorEnrichmentJobErrorType {
782
+ CLIENT_ERROR = "CLIENT_ERROR",
783
+ SERVER_ERROR = "SERVER_ERROR",
784
+ }
785
+ export interface VectorEnrichmentJobErrorDetails {
786
+ ErrorType?: VectorEnrichmentJobErrorType | string;
787
+ ErrorMessage?: string;
788
+ }
789
+ export declare enum VectorEnrichmentJobExportErrorType {
790
+ CLIENT_ERROR = "CLIENT_ERROR",
791
+ SERVER_ERROR = "SERVER_ERROR",
792
+ }
793
+ export interface VectorEnrichmentJobExportErrorDetails {
794
+ Type?: VectorEnrichmentJobExportErrorType | string;
795
+ Message?: string;
796
+ }
797
+ export declare type VectorEnrichmentJobDataSourceConfigInput =
798
+ | VectorEnrichmentJobDataSourceConfigInput.S3DataMember
799
+ | VectorEnrichmentJobDataSourceConfigInput.$UnknownMember;
800
+ export declare namespace VectorEnrichmentJobDataSourceConfigInput {
801
+ interface S3DataMember {
802
+ S3Data: VectorEnrichmentJobS3Data;
803
+ $unknown?: never;
804
+ }
805
+ interface $UnknownMember {
806
+ S3Data?: never;
807
+ $unknown: [string, any];
808
+ }
809
+ interface Visitor<T> {
810
+ S3Data: (value: VectorEnrichmentJobS3Data) => T;
811
+ _: (name: string, value: any) => T;
812
+ }
813
+ const visit: <T>(
814
+ value: VectorEnrichmentJobDataSourceConfigInput,
815
+ visitor: Visitor<T>
816
+ ) => T;
817
+ }
818
+ export declare enum VectorEnrichmentJobDocumentType {
819
+ CSV = "CSV",
820
+ }
821
+ export interface VectorEnrichmentJobInputConfig {
822
+ DocumentType: VectorEnrichmentJobDocumentType | string | undefined;
823
+ DataSourceConfig: VectorEnrichmentJobDataSourceConfigInput | undefined;
824
+ }
825
+ export interface MapMatchingConfig {
826
+ IdAttributeName: string | undefined;
827
+ YAttributeName: string | undefined;
828
+ XAttributeName: string | undefined;
829
+ TimestampAttributeName: string | undefined;
830
+ }
831
+ export interface ReverseGeocodingConfig {
832
+ YAttributeName: string | undefined;
833
+ XAttributeName: string | undefined;
834
+ }
835
+ export declare type VectorEnrichmentJobConfig =
836
+ | VectorEnrichmentJobConfig.MapMatchingConfigMember
837
+ | VectorEnrichmentJobConfig.ReverseGeocodingConfigMember
838
+ | VectorEnrichmentJobConfig.$UnknownMember;
839
+ export declare namespace VectorEnrichmentJobConfig {
840
+ interface ReverseGeocodingConfigMember {
841
+ ReverseGeocodingConfig: ReverseGeocodingConfig;
842
+ MapMatchingConfig?: never;
843
+ $unknown?: never;
844
+ }
845
+ interface MapMatchingConfigMember {
846
+ ReverseGeocodingConfig?: never;
847
+ MapMatchingConfig: MapMatchingConfig;
848
+ $unknown?: never;
849
+ }
850
+ interface $UnknownMember {
851
+ ReverseGeocodingConfig?: never;
852
+ MapMatchingConfig?: never;
853
+ $unknown: [string, any];
854
+ }
855
+ interface Visitor<T> {
856
+ ReverseGeocodingConfig: (value: ReverseGeocodingConfig) => T;
857
+ MapMatchingConfig: (value: MapMatchingConfig) => T;
858
+ _: (name: string, value: any) => T;
859
+ }
860
+ const visit: <T>(value: VectorEnrichmentJobConfig, visitor: Visitor<T>) => T;
861
+ }
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
+ }
876
+ export interface GetVectorEnrichmentJobOutput {
877
+ Arn: string | undefined;
878
+ Type: VectorEnrichmentJobType | string | undefined;
879
+ Name: string | undefined;
880
+ CreationTime: Date | undefined;
881
+ DurationInSeconds: number | undefined;
882
+ Status: VectorEnrichmentJobStatus | string | undefined;
883
+ KmsKeyId?: string;
884
+ InputConfig: VectorEnrichmentJobInputConfig | undefined;
885
+ JobConfig: VectorEnrichmentJobConfig | undefined;
886
+ ExecutionRoleArn: string | undefined;
887
+ ErrorDetails?: VectorEnrichmentJobErrorDetails;
888
+ ExportStatus?: VectorEnrichmentJobExportStatus | string;
889
+ ExportErrorDetails?: VectorEnrichmentJobExportErrorDetails;
890
+ Tags?: Record<string, string>;
891
+ }
892
+ export interface Properties {
893
+ EoCloudCover?: number;
894
+ ViewOffNadir?: number;
895
+ ViewSunAzimuth?: number;
896
+ ViewSunElevation?: number;
897
+ Platform?: string;
898
+ LandsatCloudCoverLand?: number;
899
+ }
900
+ export interface ItemSource {
901
+ Id: string | undefined;
902
+ Geometry: Geometry | undefined;
903
+ Assets?: Record<string, AssetValue>;
904
+ DateTime: Date | undefined;
905
+ Properties?: Properties;
906
+ }
907
+ export interface ListRasterDataCollectionsInput {
908
+ NextToken?: string;
909
+ MaxResults?: number;
910
+ }
911
+ export interface ListRasterDataCollectionsOutput {
912
+ RasterDataCollectionSummaries: RasterDataCollectionMetadata[] | undefined;
913
+ NextToken?: string;
914
+ }
915
+ export interface ListTagsForResourceRequest {
916
+ ResourceArn: string | undefined;
917
+ }
918
+ export interface ListTagsForResourceResponse {
919
+ Tags?: Record<string, string>;
920
+ }
921
+ export interface ListVectorEnrichmentJobInput {
922
+ StatusEquals?: string;
923
+ SortOrder?: SortOrder | string;
924
+ SortBy?: string;
925
+ NextToken?: string;
926
+ MaxResults?: number;
927
+ }
928
+ export interface ListVectorEnrichmentJobOutputConfig {
929
+ Arn: string | undefined;
930
+ Name: string | undefined;
931
+ Type: VectorEnrichmentJobType | string | undefined;
932
+ CreationTime: Date | undefined;
933
+ DurationInSeconds: number | undefined;
934
+ Status: VectorEnrichmentJobStatus | string | undefined;
935
+ Tags?: Record<string, string>;
936
+ }
937
+ export interface ListVectorEnrichmentJobOutput {
938
+ VectorEnrichmentJobSummaries:
939
+ | ListVectorEnrichmentJobOutputConfig[]
940
+ | undefined;
941
+ NextToken?: string;
942
+ }
943
+ export interface RasterDataCollectionQueryWithBandFilterInput {
944
+ TimeRangeFilter: TimeRangeFilterInput | undefined;
945
+ AreaOfInterest?: AreaOfInterest;
946
+ PropertyFilters?: PropertyFilters;
947
+ BandFilter?: string[];
948
+ }
949
+ export interface SearchRasterDataCollectionInput {
950
+ Arn: string | undefined;
951
+ RasterDataCollectionQuery:
952
+ | RasterDataCollectionQueryWithBandFilterInput
953
+ | undefined;
954
+ NextToken?: string;
955
+ }
956
+ export interface SearchRasterDataCollectionOutput {
957
+ ApproximateResultCount: number | undefined;
958
+ NextToken?: string;
959
+ Items?: ItemSource[];
960
+ }
961
+ export interface TagResourceRequest {
962
+ ResourceArn: string | undefined;
963
+ Tags: Record<string, string> | undefined;
964
+ }
965
+ export interface TagResourceResponse {}
966
+ export interface UntagResourceRequest {
967
+ ResourceArn: string | undefined;
968
+ TagKeys: string[] | undefined;
969
+ }
970
+ export interface UntagResourceResponse {}
971
+ export interface StartVectorEnrichmentJobInput {
972
+ Name: string | undefined;
973
+ ClientToken?: string;
974
+ KmsKeyId?: string;
975
+ InputConfig: VectorEnrichmentJobInputConfig | undefined;
976
+ JobConfig: VectorEnrichmentJobConfig | undefined;
977
+ ExecutionRoleArn: string | undefined;
978
+ Tags?: Record<string, string>;
979
+ }
980
+ export interface StartVectorEnrichmentJobOutput {
981
+ Name: string | undefined;
982
+ Arn: string | undefined;
983
+ Type: VectorEnrichmentJobType | string | undefined;
984
+ CreationTime: Date | undefined;
985
+ DurationInSeconds: number | undefined;
986
+ Status: VectorEnrichmentJobStatus | string | undefined;
987
+ KmsKeyId?: string;
988
+ InputConfig: VectorEnrichmentJobInputConfig | undefined;
989
+ JobConfig: VectorEnrichmentJobConfig | undefined;
990
+ ExecutionRoleArn: string | undefined;
991
+ Tags?: Record<string, string>;
992
+ }
993
+ export interface StopVectorEnrichmentJobInput {
994
+ Arn: string | undefined;
995
+ }
996
+ export interface StopVectorEnrichmentJobOutput {}
997
+ export declare const MultiPolygonGeometryInputFilterSensitiveLog: (
998
+ obj: MultiPolygonGeometryInput
999
+ ) => any;
1000
+ export declare const PolygonGeometryInputFilterSensitiveLog: (
1001
+ obj: PolygonGeometryInput
1002
+ ) => any;
1003
+ export declare const AreaOfInterestGeometryFilterSensitiveLog: (
1004
+ obj: AreaOfInterestGeometry
1005
+ ) => any;
1006
+ export declare const AreaOfInterestFilterSensitiveLog: (
1007
+ obj: AreaOfInterest
1008
+ ) => any;
1009
+ export declare const AssetValueFilterSensitiveLog: (obj: AssetValue) => any;
1010
+ export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
1011
+ export declare const CustomIndicesInputFilterSensitiveLog: (
1012
+ obj: CustomIndicesInput
1013
+ ) => any;
1014
+ export declare const BandMathConfigInputFilterSensitiveLog: (
1015
+ obj: BandMathConfigInput
1016
+ ) => any;
1017
+ export declare const CloudMaskingConfigInputFilterSensitiveLog: (
1018
+ obj: CloudMaskingConfigInput
1019
+ ) => any;
1020
+ export declare const CloudRemovalConfigInputFilterSensitiveLog: (
1021
+ obj: CloudRemovalConfigInput
1022
+ ) => any;
1023
+ export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
1024
+ export declare const RasterDataCollectionMetadataFilterSensitiveLog: (
1025
+ obj: RasterDataCollectionMetadata
1026
+ ) => any;
1027
+ export declare const DeleteEarthObservationJobInputFilterSensitiveLog: (
1028
+ obj: DeleteEarthObservationJobInput
1029
+ ) => any;
1030
+ export declare const DeleteEarthObservationJobOutputFilterSensitiveLog: (
1031
+ obj: DeleteEarthObservationJobOutput
1032
+ ) => any;
1033
+ export declare const DeleteVectorEnrichmentJobInputFilterSensitiveLog: (
1034
+ obj: DeleteVectorEnrichmentJobInput
1035
+ ) => any;
1036
+ export declare const DeleteVectorEnrichmentJobOutputFilterSensitiveLog: (
1037
+ obj: DeleteVectorEnrichmentJobOutput
1038
+ ) => any;
1039
+ export declare const ExportS3DataInputFilterSensitiveLog: (
1040
+ obj: ExportS3DataInput
1041
+ ) => any;
1042
+ export declare const OutputConfigInputFilterSensitiveLog: (
1043
+ obj: OutputConfigInput
1044
+ ) => any;
1045
+ export declare const ExportEarthObservationJobInputFilterSensitiveLog: (
1046
+ obj: ExportEarthObservationJobInput
1047
+ ) => any;
1048
+ export declare const ExportEarthObservationJobOutputFilterSensitiveLog: (
1049
+ obj: ExportEarthObservationJobOutput
1050
+ ) => any;
1051
+ export declare const GetEarthObservationJobInputFilterSensitiveLog: (
1052
+ obj: GetEarthObservationJobInput
1053
+ ) => any;
1054
+ export declare const EarthObservationJobErrorDetailsFilterSensitiveLog: (
1055
+ obj: EarthObservationJobErrorDetails
1056
+ ) => any;
1057
+ export declare const ExportErrorDetailsOutputFilterSensitiveLog: (
1058
+ obj: ExportErrorDetailsOutput
1059
+ ) => any;
1060
+ export declare const ExportErrorDetailsFilterSensitiveLog: (
1061
+ obj: ExportErrorDetails
1062
+ ) => any;
1063
+ export declare const S3DataInputFilterSensitiveLog: (obj: S3DataInput) => any;
1064
+ export declare const EojDataSourceConfigInputFilterSensitiveLog: (
1065
+ obj: EojDataSourceConfigInput
1066
+ ) => any;
1067
+ export declare const EoCloudCoverInputFilterSensitiveLog: (
1068
+ obj: EoCloudCoverInput
1069
+ ) => any;
1070
+ export declare const LandsatCloudCoverLandInputFilterSensitiveLog: (
1071
+ obj: LandsatCloudCoverLandInput
1072
+ ) => any;
1073
+ export declare const PlatformInputFilterSensitiveLog: (
1074
+ obj: PlatformInput
1075
+ ) => any;
1076
+ export declare const ViewOffNadirInputFilterSensitiveLog: (
1077
+ obj: ViewOffNadirInput
1078
+ ) => any;
1079
+ export declare const ViewSunAzimuthInputFilterSensitiveLog: (
1080
+ obj: ViewSunAzimuthInput
1081
+ ) => any;
1082
+ export declare const ViewSunElevationInputFilterSensitiveLog: (
1083
+ obj: ViewSunElevationInput
1084
+ ) => any;
1085
+ export declare const PropertyFilterSensitiveLog: (obj: Property) => any;
1086
+ export declare const PropertyFilterFilterSensitiveLog: (
1087
+ obj: PropertyFilter
1088
+ ) => any;
1089
+ export declare const PropertyFiltersFilterSensitiveLog: (
1090
+ obj: PropertyFilters
1091
+ ) => any;
1092
+ export declare const TimeRangeFilterInputFilterSensitiveLog: (
1093
+ obj: TimeRangeFilterInput
1094
+ ) => any;
1095
+ export declare const RasterDataCollectionQueryOutputFilterSensitiveLog: (
1096
+ obj: RasterDataCollectionQueryOutput
1097
+ ) => any;
1098
+ export declare const InputConfigOutputFilterSensitiveLog: (
1099
+ obj: InputConfigOutput
1100
+ ) => any;
1101
+ export declare const GeoMosaicConfigInputFilterSensitiveLog: (
1102
+ obj: GeoMosaicConfigInput
1103
+ ) => any;
1104
+ export declare const LandCoverSegmentationConfigInputFilterSensitiveLog: (
1105
+ obj: LandCoverSegmentationConfigInput
1106
+ ) => any;
1107
+ export declare const UserDefinedFilterSensitiveLog: (obj: UserDefined) => any;
1108
+ export declare const OutputResolutionResamplingInputFilterSensitiveLog: (
1109
+ obj: OutputResolutionResamplingInput
1110
+ ) => any;
1111
+ export declare const ResamplingConfigInputFilterSensitiveLog: (
1112
+ obj: ResamplingConfigInput
1113
+ ) => any;
1114
+ export declare const OutputResolutionStackInputFilterSensitiveLog: (
1115
+ obj: OutputResolutionStackInput
1116
+ ) => any;
1117
+ export declare const StackConfigInputFilterSensitiveLog: (
1118
+ obj: StackConfigInput
1119
+ ) => any;
1120
+ export declare const TemporalStatisticsConfigInputFilterSensitiveLog: (
1121
+ obj: TemporalStatisticsConfigInput
1122
+ ) => any;
1123
+ export declare const ZonalStatisticsConfigInputFilterSensitiveLog: (
1124
+ obj: ZonalStatisticsConfigInput
1125
+ ) => any;
1126
+ export declare const JobConfigInputFilterSensitiveLog: (
1127
+ obj: JobConfigInput
1128
+ ) => any;
1129
+ export declare const OutputBandFilterSensitiveLog: (obj: OutputBand) => any;
1130
+ export declare const GetEarthObservationJobOutputFilterSensitiveLog: (
1131
+ obj: GetEarthObservationJobOutput
1132
+ ) => any;
1133
+ export declare const GetTileInputFilterSensitiveLog: (obj: GetTileInput) => any;
1134
+ export declare const GetTileOutputFilterSensitiveLog: (
1135
+ obj: GetTileOutput
1136
+ ) => any;
1137
+ export declare const ListEarthObservationJobInputFilterSensitiveLog: (
1138
+ obj: ListEarthObservationJobInput
1139
+ ) => any;
1140
+ export declare const ListEarthObservationJobOutputConfigFilterSensitiveLog: (
1141
+ obj: ListEarthObservationJobOutputConfig
1142
+ ) => any;
1143
+ export declare const ListEarthObservationJobOutputFilterSensitiveLog: (
1144
+ obj: ListEarthObservationJobOutput
1145
+ ) => any;
1146
+ export declare const RasterDataCollectionQueryInputFilterSensitiveLog: (
1147
+ obj: RasterDataCollectionQueryInput
1148
+ ) => any;
1149
+ export declare const InputConfigInputFilterSensitiveLog: (
1150
+ obj: InputConfigInput
1151
+ ) => any;
1152
+ export declare const StartEarthObservationJobInputFilterSensitiveLog: (
1153
+ obj: StartEarthObservationJobInput
1154
+ ) => any;
1155
+ export declare const StartEarthObservationJobOutputFilterSensitiveLog: (
1156
+ obj: StartEarthObservationJobOutput
1157
+ ) => any;
1158
+ export declare const StopEarthObservationJobInputFilterSensitiveLog: (
1159
+ obj: StopEarthObservationJobInput
1160
+ ) => any;
1161
+ export declare const StopEarthObservationJobOutputFilterSensitiveLog: (
1162
+ obj: StopEarthObservationJobOutput
1163
+ ) => any;
1164
+ export declare const VectorEnrichmentJobS3DataFilterSensitiveLog: (
1165
+ obj: VectorEnrichmentJobS3Data
1166
+ ) => any;
1167
+ export declare const ExportVectorEnrichmentJobOutputConfigFilterSensitiveLog: (
1168
+ obj: ExportVectorEnrichmentJobOutputConfig
1169
+ ) => any;
1170
+ export declare const ExportVectorEnrichmentJobInputFilterSensitiveLog: (
1171
+ obj: ExportVectorEnrichmentJobInput
1172
+ ) => any;
1173
+ export declare const ExportVectorEnrichmentJobOutputFilterSensitiveLog: (
1174
+ obj: ExportVectorEnrichmentJobOutput
1175
+ ) => any;
1176
+ export declare const GeometryFilterSensitiveLog: (obj: Geometry) => any;
1177
+ export declare const GetRasterDataCollectionInputFilterSensitiveLog: (
1178
+ obj: GetRasterDataCollectionInput
1179
+ ) => any;
1180
+ export declare const GetRasterDataCollectionOutputFilterSensitiveLog: (
1181
+ obj: GetRasterDataCollectionOutput
1182
+ ) => any;
1183
+ export declare const GetVectorEnrichmentJobInputFilterSensitiveLog: (
1184
+ obj: GetVectorEnrichmentJobInput
1185
+ ) => any;
1186
+ export declare const VectorEnrichmentJobErrorDetailsFilterSensitiveLog: (
1187
+ obj: VectorEnrichmentJobErrorDetails
1188
+ ) => any;
1189
+ export declare const VectorEnrichmentJobExportErrorDetailsFilterSensitiveLog: (
1190
+ obj: VectorEnrichmentJobExportErrorDetails
1191
+ ) => any;
1192
+ export declare const VectorEnrichmentJobDataSourceConfigInputFilterSensitiveLog: (
1193
+ obj: VectorEnrichmentJobDataSourceConfigInput
1194
+ ) => any;
1195
+ export declare const VectorEnrichmentJobInputConfigFilterSensitiveLog: (
1196
+ obj: VectorEnrichmentJobInputConfig
1197
+ ) => any;
1198
+ export declare const MapMatchingConfigFilterSensitiveLog: (
1199
+ obj: MapMatchingConfig
1200
+ ) => any;
1201
+ export declare const ReverseGeocodingConfigFilterSensitiveLog: (
1202
+ obj: ReverseGeocodingConfig
1203
+ ) => any;
1204
+ export declare const VectorEnrichmentJobConfigFilterSensitiveLog: (
1205
+ obj: VectorEnrichmentJobConfig
1206
+ ) => any;
1207
+ export declare const GetVectorEnrichmentJobOutputFilterSensitiveLog: (
1208
+ obj: GetVectorEnrichmentJobOutput
1209
+ ) => any;
1210
+ export declare const PropertiesFilterSensitiveLog: (obj: Properties) => any;
1211
+ export declare const ItemSourceFilterSensitiveLog: (obj: ItemSource) => any;
1212
+ export declare const ListRasterDataCollectionsInputFilterSensitiveLog: (
1213
+ obj: ListRasterDataCollectionsInput
1214
+ ) => any;
1215
+ export declare const ListRasterDataCollectionsOutputFilterSensitiveLog: (
1216
+ obj: ListRasterDataCollectionsOutput
1217
+ ) => any;
1218
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1219
+ obj: ListTagsForResourceRequest
1220
+ ) => any;
1221
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1222
+ obj: ListTagsForResourceResponse
1223
+ ) => any;
1224
+ export declare const ListVectorEnrichmentJobInputFilterSensitiveLog: (
1225
+ obj: ListVectorEnrichmentJobInput
1226
+ ) => any;
1227
+ export declare const ListVectorEnrichmentJobOutputConfigFilterSensitiveLog: (
1228
+ obj: ListVectorEnrichmentJobOutputConfig
1229
+ ) => any;
1230
+ export declare const ListVectorEnrichmentJobOutputFilterSensitiveLog: (
1231
+ obj: ListVectorEnrichmentJobOutput
1232
+ ) => any;
1233
+ export declare const RasterDataCollectionQueryWithBandFilterInputFilterSensitiveLog: (
1234
+ obj: RasterDataCollectionQueryWithBandFilterInput
1235
+ ) => any;
1236
+ export declare const SearchRasterDataCollectionInputFilterSensitiveLog: (
1237
+ obj: SearchRasterDataCollectionInput
1238
+ ) => any;
1239
+ export declare const SearchRasterDataCollectionOutputFilterSensitiveLog: (
1240
+ obj: SearchRasterDataCollectionOutput
1241
+ ) => any;
1242
+ export declare const TagResourceRequestFilterSensitiveLog: (
1243
+ obj: TagResourceRequest
1244
+ ) => any;
1245
+ export declare const TagResourceResponseFilterSensitiveLog: (
1246
+ obj: TagResourceResponse
1247
+ ) => any;
1248
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1249
+ obj: UntagResourceRequest
1250
+ ) => any;
1251
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1252
+ obj: UntagResourceResponse
1253
+ ) => any;
1254
+ export declare const StartVectorEnrichmentJobInputFilterSensitiveLog: (
1255
+ obj: StartVectorEnrichmentJobInput
1256
+ ) => any;
1257
+ export declare const StartVectorEnrichmentJobOutputFilterSensitiveLog: (
1258
+ obj: StartVectorEnrichmentJobOutput
1259
+ ) => any;
1260
+ export declare const StopVectorEnrichmentJobInputFilterSensitiveLog: (
1261
+ obj: StopVectorEnrichmentJobInput
1262
+ ) => any;
1263
+ export declare const StopVectorEnrichmentJobOutputFilterSensitiveLog: (
1264
+ obj: StopVectorEnrichmentJobOutput
1265
+ ) => any;