@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,748 @@
1
+ import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
+ import { SageMakerGeospatialServiceException as __BaseException } from "./SageMakerGeospatialServiceException";
3
+ export class AccessDeniedException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccessDeniedException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccessDeniedException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export var AlgorithmNameCloudRemoval;
17
+ (function (AlgorithmNameCloudRemoval) {
18
+ AlgorithmNameCloudRemoval["INTERPOLATION"] = "INTERPOLATION";
19
+ })(AlgorithmNameCloudRemoval || (AlgorithmNameCloudRemoval = {}));
20
+ export var AlgorithmNameGeoMosaic;
21
+ (function (AlgorithmNameGeoMosaic) {
22
+ AlgorithmNameGeoMosaic["AVERAGE"] = "AVERAGE";
23
+ AlgorithmNameGeoMosaic["BILINEAR"] = "BILINEAR";
24
+ AlgorithmNameGeoMosaic["CUBIC"] = "CUBIC";
25
+ AlgorithmNameGeoMosaic["CUBICSPLINE"] = "CUBICSPLINE";
26
+ AlgorithmNameGeoMosaic["LANCZOS"] = "LANCZOS";
27
+ AlgorithmNameGeoMosaic["MAX"] = "MAX";
28
+ AlgorithmNameGeoMosaic["MED"] = "MED";
29
+ AlgorithmNameGeoMosaic["MIN"] = "MIN";
30
+ AlgorithmNameGeoMosaic["MODE"] = "MODE";
31
+ AlgorithmNameGeoMosaic["NEAR"] = "NEAR";
32
+ AlgorithmNameGeoMosaic["Q1"] = "Q1";
33
+ AlgorithmNameGeoMosaic["Q3"] = "Q3";
34
+ AlgorithmNameGeoMosaic["RMS"] = "RMS";
35
+ AlgorithmNameGeoMosaic["SUM"] = "SUM";
36
+ })(AlgorithmNameGeoMosaic || (AlgorithmNameGeoMosaic = {}));
37
+ export var AlgorithmNameResampling;
38
+ (function (AlgorithmNameResampling) {
39
+ AlgorithmNameResampling["AVERAGE"] = "AVERAGE";
40
+ AlgorithmNameResampling["BILINEAR"] = "BILINEAR";
41
+ AlgorithmNameResampling["CUBIC"] = "CUBIC";
42
+ AlgorithmNameResampling["CUBICSPLINE"] = "CUBICSPLINE";
43
+ AlgorithmNameResampling["LANCZOS"] = "LANCZOS";
44
+ AlgorithmNameResampling["MAX"] = "MAX";
45
+ AlgorithmNameResampling["MED"] = "MED";
46
+ AlgorithmNameResampling["MIN"] = "MIN";
47
+ AlgorithmNameResampling["MODE"] = "MODE";
48
+ AlgorithmNameResampling["NEAR"] = "NEAR";
49
+ AlgorithmNameResampling["Q1"] = "Q1";
50
+ AlgorithmNameResampling["Q3"] = "Q3";
51
+ AlgorithmNameResampling["RMS"] = "RMS";
52
+ AlgorithmNameResampling["SUM"] = "SUM";
53
+ })(AlgorithmNameResampling || (AlgorithmNameResampling = {}));
54
+ export var AreaOfInterestGeometry;
55
+ (function (AreaOfInterestGeometry) {
56
+ AreaOfInterestGeometry.visit = (value, visitor) => {
57
+ if (value.PolygonGeometry !== undefined)
58
+ return visitor.PolygonGeometry(value.PolygonGeometry);
59
+ if (value.MultiPolygonGeometry !== undefined)
60
+ return visitor.MultiPolygonGeometry(value.MultiPolygonGeometry);
61
+ return visitor._(value.$unknown[0], value.$unknown[1]);
62
+ };
63
+ })(AreaOfInterestGeometry || (AreaOfInterestGeometry = {}));
64
+ export var AreaOfInterest;
65
+ (function (AreaOfInterest) {
66
+ AreaOfInterest.visit = (value, visitor) => {
67
+ if (value.AreaOfInterestGeometry !== undefined)
68
+ return visitor.AreaOfInterestGeometry(value.AreaOfInterestGeometry);
69
+ return visitor._(value.$unknown[0], value.$unknown[1]);
70
+ };
71
+ })(AreaOfInterest || (AreaOfInterest = {}));
72
+ export var OutputType;
73
+ (function (OutputType) {
74
+ OutputType["FLOAT32"] = "FLOAT32";
75
+ OutputType["FLOAT64"] = "FLOAT64";
76
+ OutputType["INT16"] = "INT16";
77
+ OutputType["INT32"] = "INT32";
78
+ OutputType["UINT16"] = "UINT16";
79
+ })(OutputType || (OutputType = {}));
80
+ export var ComparisonOperator;
81
+ (function (ComparisonOperator) {
82
+ ComparisonOperator["EQUALS"] = "EQUALS";
83
+ ComparisonOperator["NOT_EQUALS"] = "NOT_EQUALS";
84
+ ComparisonOperator["STARTS_WITH"] = "STARTS_WITH";
85
+ })(ComparisonOperator || (ComparisonOperator = {}));
86
+ export class ConflictException extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "ConflictException",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "ConflictException";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, ConflictException.prototype);
96
+ this.Message = opts.Message;
97
+ this.ResourceId = opts.ResourceId;
98
+ }
99
+ }
100
+ export var DataCollectionType;
101
+ (function (DataCollectionType) {
102
+ DataCollectionType["PREMIUM"] = "PREMIUM";
103
+ DataCollectionType["PUBLIC"] = "PUBLIC";
104
+ DataCollectionType["USER"] = "USER";
105
+ })(DataCollectionType || (DataCollectionType = {}));
106
+ export class InternalServerException extends __BaseException {
107
+ constructor(opts) {
108
+ super({
109
+ name: "InternalServerException",
110
+ $fault: "server",
111
+ ...opts,
112
+ });
113
+ this.name = "InternalServerException";
114
+ this.$fault = "server";
115
+ Object.setPrototypeOf(this, InternalServerException.prototype);
116
+ this.Message = opts.Message;
117
+ this.ResourceId = opts.ResourceId;
118
+ }
119
+ }
120
+ export class ResourceNotFoundException extends __BaseException {
121
+ constructor(opts) {
122
+ super({
123
+ name: "ResourceNotFoundException",
124
+ $fault: "client",
125
+ ...opts,
126
+ });
127
+ this.name = "ResourceNotFoundException";
128
+ this.$fault = "client";
129
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
130
+ this.Message = opts.Message;
131
+ this.ResourceId = opts.ResourceId;
132
+ }
133
+ }
134
+ export class ThrottlingException extends __BaseException {
135
+ constructor(opts) {
136
+ super({
137
+ name: "ThrottlingException",
138
+ $fault: "client",
139
+ ...opts,
140
+ });
141
+ this.name = "ThrottlingException";
142
+ this.$fault = "client";
143
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
144
+ this.Message = opts.Message;
145
+ this.ResourceId = opts.ResourceId;
146
+ }
147
+ }
148
+ export class ValidationException extends __BaseException {
149
+ constructor(opts) {
150
+ super({
151
+ name: "ValidationException",
152
+ $fault: "client",
153
+ ...opts,
154
+ });
155
+ this.name = "ValidationException";
156
+ this.$fault = "client";
157
+ Object.setPrototypeOf(this, ValidationException.prototype);
158
+ this.Message = opts.Message;
159
+ this.ResourceId = opts.ResourceId;
160
+ }
161
+ }
162
+ export var EarthObservationJobExportStatus;
163
+ (function (EarthObservationJobExportStatus) {
164
+ EarthObservationJobExportStatus["FAILED"] = "FAILED";
165
+ EarthObservationJobExportStatus["IN_PROGRESS"] = "IN_PROGRESS";
166
+ EarthObservationJobExportStatus["SUCCEEDED"] = "SUCCEEDED";
167
+ })(EarthObservationJobExportStatus || (EarthObservationJobExportStatus = {}));
168
+ export class ServiceQuotaExceededException extends __BaseException {
169
+ constructor(opts) {
170
+ super({
171
+ name: "ServiceQuotaExceededException",
172
+ $fault: "client",
173
+ ...opts,
174
+ });
175
+ this.name = "ServiceQuotaExceededException";
176
+ this.$fault = "client";
177
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
178
+ this.Message = opts.Message;
179
+ this.ResourceId = opts.ResourceId;
180
+ }
181
+ }
182
+ export var EarthObservationJobErrorType;
183
+ (function (EarthObservationJobErrorType) {
184
+ EarthObservationJobErrorType["CLIENT_ERROR"] = "CLIENT_ERROR";
185
+ EarthObservationJobErrorType["SERVER_ERROR"] = "SERVER_ERROR";
186
+ })(EarthObservationJobErrorType || (EarthObservationJobErrorType = {}));
187
+ export var ExportErrorType;
188
+ (function (ExportErrorType) {
189
+ ExportErrorType["CLIENT_ERROR"] = "CLIENT_ERROR";
190
+ ExportErrorType["SERVER_ERROR"] = "SERVER_ERROR";
191
+ })(ExportErrorType || (ExportErrorType = {}));
192
+ export var MetadataProvider;
193
+ (function (MetadataProvider) {
194
+ MetadataProvider["PLANET_ORDER"] = "PLANET_ORDER";
195
+ })(MetadataProvider || (MetadataProvider = {}));
196
+ export var EojDataSourceConfigInput;
197
+ (function (EojDataSourceConfigInput) {
198
+ EojDataSourceConfigInput.visit = (value, visitor) => {
199
+ if (value.S3Data !== undefined)
200
+ return visitor.S3Data(value.S3Data);
201
+ return visitor._(value.$unknown[0], value.$unknown[1]);
202
+ };
203
+ })(EojDataSourceConfigInput || (EojDataSourceConfigInput = {}));
204
+ export var LogicalOperator;
205
+ (function (LogicalOperator) {
206
+ LogicalOperator["AND"] = "AND";
207
+ })(LogicalOperator || (LogicalOperator = {}));
208
+ export var Property;
209
+ (function (Property) {
210
+ Property.visit = (value, visitor) => {
211
+ if (value.EoCloudCover !== undefined)
212
+ return visitor.EoCloudCover(value.EoCloudCover);
213
+ if (value.ViewOffNadir !== undefined)
214
+ return visitor.ViewOffNadir(value.ViewOffNadir);
215
+ if (value.ViewSunAzimuth !== undefined)
216
+ return visitor.ViewSunAzimuth(value.ViewSunAzimuth);
217
+ if (value.ViewSunElevation !== undefined)
218
+ return visitor.ViewSunElevation(value.ViewSunElevation);
219
+ if (value.Platform !== undefined)
220
+ return visitor.Platform(value.Platform);
221
+ if (value.LandsatCloudCoverLand !== undefined)
222
+ return visitor.LandsatCloudCoverLand(value.LandsatCloudCoverLand);
223
+ return visitor._(value.$unknown[0], value.$unknown[1]);
224
+ };
225
+ })(Property || (Property = {}));
226
+ export var Unit;
227
+ (function (Unit) {
228
+ Unit["METERS"] = "METERS";
229
+ })(Unit || (Unit = {}));
230
+ export var PredefinedResolution;
231
+ (function (PredefinedResolution) {
232
+ PredefinedResolution["AVERAGE"] = "AVERAGE";
233
+ PredefinedResolution["HIGHEST"] = "HIGHEST";
234
+ PredefinedResolution["LOWEST"] = "LOWEST";
235
+ })(PredefinedResolution || (PredefinedResolution = {}));
236
+ export var GroupBy;
237
+ (function (GroupBy) {
238
+ GroupBy["ALL"] = "ALL";
239
+ GroupBy["YEARLY"] = "YEARLY";
240
+ })(GroupBy || (GroupBy = {}));
241
+ export var TemporalStatistics;
242
+ (function (TemporalStatistics) {
243
+ TemporalStatistics["MEAN"] = "MEAN";
244
+ TemporalStatistics["MEDIAN"] = "MEDIAN";
245
+ TemporalStatistics["STANDARD_DEVIATION"] = "STANDARD_DEVIATION";
246
+ })(TemporalStatistics || (TemporalStatistics = {}));
247
+ export var ZonalStatistics;
248
+ (function (ZonalStatistics) {
249
+ ZonalStatistics["MAX"] = "MAX";
250
+ ZonalStatistics["MEAN"] = "MEAN";
251
+ ZonalStatistics["MEDIAN"] = "MEDIAN";
252
+ ZonalStatistics["MIN"] = "MIN";
253
+ ZonalStatistics["STANDARD_DEVIATION"] = "STANDARD_DEVIATION";
254
+ ZonalStatistics["SUM"] = "SUM";
255
+ })(ZonalStatistics || (ZonalStatistics = {}));
256
+ export var JobConfigInput;
257
+ (function (JobConfigInput) {
258
+ JobConfigInput.visit = (value, visitor) => {
259
+ if (value.BandMathConfig !== undefined)
260
+ return visitor.BandMathConfig(value.BandMathConfig);
261
+ if (value.ResamplingConfig !== undefined)
262
+ return visitor.ResamplingConfig(value.ResamplingConfig);
263
+ if (value.TemporalStatisticsConfig !== undefined)
264
+ return visitor.TemporalStatisticsConfig(value.TemporalStatisticsConfig);
265
+ if (value.CloudRemovalConfig !== undefined)
266
+ return visitor.CloudRemovalConfig(value.CloudRemovalConfig);
267
+ if (value.ZonalStatisticsConfig !== undefined)
268
+ return visitor.ZonalStatisticsConfig(value.ZonalStatisticsConfig);
269
+ if (value.GeoMosaicConfig !== undefined)
270
+ return visitor.GeoMosaicConfig(value.GeoMosaicConfig);
271
+ if (value.StackConfig !== undefined)
272
+ return visitor.StackConfig(value.StackConfig);
273
+ if (value.CloudMaskingConfig !== undefined)
274
+ return visitor.CloudMaskingConfig(value.CloudMaskingConfig);
275
+ if (value.LandCoverSegmentationConfig !== undefined)
276
+ return visitor.LandCoverSegmentationConfig(value.LandCoverSegmentationConfig);
277
+ return visitor._(value.$unknown[0], value.$unknown[1]);
278
+ };
279
+ })(JobConfigInput || (JobConfigInput = {}));
280
+ export var EarthObservationJobStatus;
281
+ (function (EarthObservationJobStatus) {
282
+ EarthObservationJobStatus["COMPLETED"] = "COMPLETED";
283
+ EarthObservationJobStatus["DELETED"] = "DELETED";
284
+ EarthObservationJobStatus["DELETING"] = "DELETING";
285
+ EarthObservationJobStatus["FAILED"] = "FAILED";
286
+ EarthObservationJobStatus["INITIALIZING"] = "INITIALIZING";
287
+ EarthObservationJobStatus["IN_PROGRESS"] = "IN_PROGRESS";
288
+ EarthObservationJobStatus["STOPPED"] = "STOPPED";
289
+ EarthObservationJobStatus["STOPPING"] = "STOPPING";
290
+ })(EarthObservationJobStatus || (EarthObservationJobStatus = {}));
291
+ export var TargetOptions;
292
+ (function (TargetOptions) {
293
+ TargetOptions["INPUT"] = "INPUT";
294
+ TargetOptions["OUTPUT"] = "OUTPUT";
295
+ })(TargetOptions || (TargetOptions = {}));
296
+ export var SortOrder;
297
+ (function (SortOrder) {
298
+ SortOrder["ASCENDING"] = "ASCENDING";
299
+ SortOrder["DESCENDING"] = "DESCENDING";
300
+ })(SortOrder || (SortOrder = {}));
301
+ export var VectorEnrichmentJobExportStatus;
302
+ (function (VectorEnrichmentJobExportStatus) {
303
+ VectorEnrichmentJobExportStatus["FAILED"] = "FAILED";
304
+ VectorEnrichmentJobExportStatus["IN_PROGRESS"] = "IN_PROGRESS";
305
+ VectorEnrichmentJobExportStatus["SUCCEEDED"] = "SUCCEEDED";
306
+ })(VectorEnrichmentJobExportStatus || (VectorEnrichmentJobExportStatus = {}));
307
+ export var VectorEnrichmentJobErrorType;
308
+ (function (VectorEnrichmentJobErrorType) {
309
+ VectorEnrichmentJobErrorType["CLIENT_ERROR"] = "CLIENT_ERROR";
310
+ VectorEnrichmentJobErrorType["SERVER_ERROR"] = "SERVER_ERROR";
311
+ })(VectorEnrichmentJobErrorType || (VectorEnrichmentJobErrorType = {}));
312
+ export var VectorEnrichmentJobExportErrorType;
313
+ (function (VectorEnrichmentJobExportErrorType) {
314
+ VectorEnrichmentJobExportErrorType["CLIENT_ERROR"] = "CLIENT_ERROR";
315
+ VectorEnrichmentJobExportErrorType["SERVER_ERROR"] = "SERVER_ERROR";
316
+ })(VectorEnrichmentJobExportErrorType || (VectorEnrichmentJobExportErrorType = {}));
317
+ export var VectorEnrichmentJobDataSourceConfigInput;
318
+ (function (VectorEnrichmentJobDataSourceConfigInput) {
319
+ VectorEnrichmentJobDataSourceConfigInput.visit = (value, visitor) => {
320
+ if (value.S3Data !== undefined)
321
+ return visitor.S3Data(value.S3Data);
322
+ return visitor._(value.$unknown[0], value.$unknown[1]);
323
+ };
324
+ })(VectorEnrichmentJobDataSourceConfigInput || (VectorEnrichmentJobDataSourceConfigInput = {}));
325
+ export var VectorEnrichmentJobDocumentType;
326
+ (function (VectorEnrichmentJobDocumentType) {
327
+ VectorEnrichmentJobDocumentType["CSV"] = "CSV";
328
+ })(VectorEnrichmentJobDocumentType || (VectorEnrichmentJobDocumentType = {}));
329
+ export var VectorEnrichmentJobConfig;
330
+ (function (VectorEnrichmentJobConfig) {
331
+ VectorEnrichmentJobConfig.visit = (value, visitor) => {
332
+ if (value.ReverseGeocodingConfig !== undefined)
333
+ return visitor.ReverseGeocodingConfig(value.ReverseGeocodingConfig);
334
+ if (value.MapMatchingConfig !== undefined)
335
+ return visitor.MapMatchingConfig(value.MapMatchingConfig);
336
+ return visitor._(value.$unknown[0], value.$unknown[1]);
337
+ };
338
+ })(VectorEnrichmentJobConfig || (VectorEnrichmentJobConfig = {}));
339
+ export var VectorEnrichmentJobStatus;
340
+ (function (VectorEnrichmentJobStatus) {
341
+ VectorEnrichmentJobStatus["COMPLETED"] = "COMPLETED";
342
+ VectorEnrichmentJobStatus["DELETED"] = "DELETED";
343
+ VectorEnrichmentJobStatus["DELETING"] = "DELETING";
344
+ VectorEnrichmentJobStatus["FAILED"] = "FAILED";
345
+ VectorEnrichmentJobStatus["INITIALIZING"] = "INITIALIZING";
346
+ VectorEnrichmentJobStatus["IN_PROGRESS"] = "IN_PROGRESS";
347
+ VectorEnrichmentJobStatus["STOPPED"] = "STOPPED";
348
+ VectorEnrichmentJobStatus["STOPPING"] = "STOPPING";
349
+ })(VectorEnrichmentJobStatus || (VectorEnrichmentJobStatus = {}));
350
+ export var VectorEnrichmentJobType;
351
+ (function (VectorEnrichmentJobType) {
352
+ VectorEnrichmentJobType["MAP_MATCHING"] = "MAP_MATCHING";
353
+ VectorEnrichmentJobType["REVERSE_GEOCODING"] = "REVERSE_GEOCODING";
354
+ })(VectorEnrichmentJobType || (VectorEnrichmentJobType = {}));
355
+ export const MultiPolygonGeometryInputFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ ...(obj.Coordinates && { Coordinates: obj.Coordinates.map((item) => item.map((item) => SENSITIVE_STRING)) }),
358
+ });
359
+ export const PolygonGeometryInputFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ ...(obj.Coordinates && { Coordinates: obj.Coordinates.map((item) => SENSITIVE_STRING) }),
362
+ });
363
+ export const AreaOfInterestGeometryFilterSensitiveLog = (obj) => {
364
+ if (obj.PolygonGeometry !== undefined)
365
+ return { PolygonGeometry: PolygonGeometryInputFilterSensitiveLog(obj.PolygonGeometry) };
366
+ if (obj.MultiPolygonGeometry !== undefined)
367
+ return { MultiPolygonGeometry: MultiPolygonGeometryInputFilterSensitiveLog(obj.MultiPolygonGeometry) };
368
+ if (obj.$unknown !== undefined)
369
+ return { [obj.$unknown[0]]: "UNKNOWN" };
370
+ };
371
+ export const AreaOfInterestFilterSensitiveLog = (obj) => {
372
+ if (obj.AreaOfInterestGeometry !== undefined)
373
+ return { AreaOfInterestGeometry: AreaOfInterestGeometryFilterSensitiveLog(obj.AreaOfInterestGeometry) };
374
+ if (obj.$unknown !== undefined)
375
+ return { [obj.$unknown[0]]: "UNKNOWN" };
376
+ };
377
+ export const AssetValueFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const OperationFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const CustomIndicesInputFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const BandMathConfigInputFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const CloudMaskingConfigInputFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const CloudRemovalConfigInputFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const FilterFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const RasterDataCollectionMetadataFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const DeleteEarthObservationJobInputFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const DeleteEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const DeleteVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const DeleteVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const ExportS3DataInputFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const OutputConfigInputFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const ExportEarthObservationJobInputFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const ExportEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const GetEarthObservationJobInputFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const EarthObservationJobErrorDetailsFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const ExportErrorDetailsOutputFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const ExportErrorDetailsFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ });
437
+ export const S3DataInputFilterSensitiveLog = (obj) => ({
438
+ ...obj,
439
+ });
440
+ export const EojDataSourceConfigInputFilterSensitiveLog = (obj) => {
441
+ if (obj.S3Data !== undefined)
442
+ return { S3Data: S3DataInputFilterSensitiveLog(obj.S3Data) };
443
+ if (obj.$unknown !== undefined)
444
+ return { [obj.$unknown[0]]: "UNKNOWN" };
445
+ };
446
+ export const EoCloudCoverInputFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const LandsatCloudCoverLandInputFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const PlatformInputFilterSensitiveLog = (obj) => ({
453
+ ...obj,
454
+ });
455
+ export const ViewOffNadirInputFilterSensitiveLog = (obj) => ({
456
+ ...obj,
457
+ });
458
+ export const ViewSunAzimuthInputFilterSensitiveLog = (obj) => ({
459
+ ...obj,
460
+ });
461
+ export const ViewSunElevationInputFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ });
464
+ export const PropertyFilterSensitiveLog = (obj) => {
465
+ if (obj.EoCloudCover !== undefined)
466
+ return { EoCloudCover: EoCloudCoverInputFilterSensitiveLog(obj.EoCloudCover) };
467
+ if (obj.ViewOffNadir !== undefined)
468
+ return { ViewOffNadir: ViewOffNadirInputFilterSensitiveLog(obj.ViewOffNadir) };
469
+ if (obj.ViewSunAzimuth !== undefined)
470
+ return { ViewSunAzimuth: ViewSunAzimuthInputFilterSensitiveLog(obj.ViewSunAzimuth) };
471
+ if (obj.ViewSunElevation !== undefined)
472
+ return { ViewSunElevation: ViewSunElevationInputFilterSensitiveLog(obj.ViewSunElevation) };
473
+ if (obj.Platform !== undefined)
474
+ return { Platform: PlatformInputFilterSensitiveLog(obj.Platform) };
475
+ if (obj.LandsatCloudCoverLand !== undefined)
476
+ return { LandsatCloudCoverLand: LandsatCloudCoverLandInputFilterSensitiveLog(obj.LandsatCloudCoverLand) };
477
+ if (obj.$unknown !== undefined)
478
+ return { [obj.$unknown[0]]: "UNKNOWN" };
479
+ };
480
+ export const PropertyFilterFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ ...(obj.Property && { Property: PropertyFilterSensitiveLog(obj.Property) }),
483
+ });
484
+ export const PropertyFiltersFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ ...(obj.Properties && { Properties: obj.Properties.map((item) => PropertyFilterFilterSensitiveLog(item)) }),
487
+ });
488
+ export const TimeRangeFilterInputFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ });
491
+ export const RasterDataCollectionQueryOutputFilterSensitiveLog = (obj) => ({
492
+ ...obj,
493
+ ...(obj.TimeRangeFilter && { TimeRangeFilter: SENSITIVE_STRING }),
494
+ ...(obj.AreaOfInterest && { AreaOfInterest: AreaOfInterestFilterSensitiveLog(obj.AreaOfInterest) }),
495
+ ...(obj.PropertyFilters && { PropertyFilters: PropertyFiltersFilterSensitiveLog(obj.PropertyFilters) }),
496
+ });
497
+ export const InputConfigOutputFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ ...(obj.DataSourceConfig && { DataSourceConfig: EojDataSourceConfigInputFilterSensitiveLog(obj.DataSourceConfig) }),
500
+ ...(obj.RasterDataCollectionQuery && {
501
+ RasterDataCollectionQuery: RasterDataCollectionQueryOutputFilterSensitiveLog(obj.RasterDataCollectionQuery),
502
+ }),
503
+ });
504
+ export const GeoMosaicConfigInputFilterSensitiveLog = (obj) => ({
505
+ ...obj,
506
+ });
507
+ export const LandCoverSegmentationConfigInputFilterSensitiveLog = (obj) => ({
508
+ ...obj,
509
+ });
510
+ export const UserDefinedFilterSensitiveLog = (obj) => ({
511
+ ...obj,
512
+ });
513
+ export const OutputResolutionResamplingInputFilterSensitiveLog = (obj) => ({
514
+ ...obj,
515
+ });
516
+ export const ResamplingConfigInputFilterSensitiveLog = (obj) => ({
517
+ ...obj,
518
+ });
519
+ export const OutputResolutionStackInputFilterSensitiveLog = (obj) => ({
520
+ ...obj,
521
+ });
522
+ export const StackConfigInputFilterSensitiveLog = (obj) => ({
523
+ ...obj,
524
+ });
525
+ export const TemporalStatisticsConfigInputFilterSensitiveLog = (obj) => ({
526
+ ...obj,
527
+ });
528
+ export const ZonalStatisticsConfigInputFilterSensitiveLog = (obj) => ({
529
+ ...obj,
530
+ });
531
+ export const JobConfigInputFilterSensitiveLog = (obj) => {
532
+ if (obj.BandMathConfig !== undefined)
533
+ return { BandMathConfig: BandMathConfigInputFilterSensitiveLog(obj.BandMathConfig) };
534
+ if (obj.ResamplingConfig !== undefined)
535
+ return { ResamplingConfig: ResamplingConfigInputFilterSensitiveLog(obj.ResamplingConfig) };
536
+ if (obj.TemporalStatisticsConfig !== undefined)
537
+ return { TemporalStatisticsConfig: TemporalStatisticsConfigInputFilterSensitiveLog(obj.TemporalStatisticsConfig) };
538
+ if (obj.CloudRemovalConfig !== undefined)
539
+ return { CloudRemovalConfig: CloudRemovalConfigInputFilterSensitiveLog(obj.CloudRemovalConfig) };
540
+ if (obj.ZonalStatisticsConfig !== undefined)
541
+ return { ZonalStatisticsConfig: ZonalStatisticsConfigInputFilterSensitiveLog(obj.ZonalStatisticsConfig) };
542
+ if (obj.GeoMosaicConfig !== undefined)
543
+ return { GeoMosaicConfig: GeoMosaicConfigInputFilterSensitiveLog(obj.GeoMosaicConfig) };
544
+ if (obj.StackConfig !== undefined)
545
+ return { StackConfig: StackConfigInputFilterSensitiveLog(obj.StackConfig) };
546
+ if (obj.CloudMaskingConfig !== undefined)
547
+ return { CloudMaskingConfig: CloudMaskingConfigInputFilterSensitiveLog(obj.CloudMaskingConfig) };
548
+ if (obj.LandCoverSegmentationConfig !== undefined)
549
+ return {
550
+ LandCoverSegmentationConfig: LandCoverSegmentationConfigInputFilterSensitiveLog(obj.LandCoverSegmentationConfig),
551
+ };
552
+ if (obj.$unknown !== undefined)
553
+ return { [obj.$unknown[0]]: "UNKNOWN" };
554
+ };
555
+ export const OutputBandFilterSensitiveLog = (obj) => ({
556
+ ...obj,
557
+ });
558
+ export const GetEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
559
+ ...obj,
560
+ ...(obj.InputConfig && { InputConfig: InputConfigOutputFilterSensitiveLog(obj.InputConfig) }),
561
+ ...(obj.JobConfig && { JobConfig: JobConfigInputFilterSensitiveLog(obj.JobConfig) }),
562
+ });
563
+ export const GetTileInputFilterSensitiveLog = (obj) => ({
564
+ ...obj,
565
+ });
566
+ export const GetTileOutputFilterSensitiveLog = (obj) => ({
567
+ ...obj,
568
+ });
569
+ export const ListEarthObservationJobInputFilterSensitiveLog = (obj) => ({
570
+ ...obj,
571
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
572
+ });
573
+ export const ListEarthObservationJobOutputConfigFilterSensitiveLog = (obj) => ({
574
+ ...obj,
575
+ });
576
+ export const ListEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
577
+ ...obj,
578
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
579
+ });
580
+ export const RasterDataCollectionQueryInputFilterSensitiveLog = (obj) => ({
581
+ ...obj,
582
+ ...(obj.TimeRangeFilter && { TimeRangeFilter: SENSITIVE_STRING }),
583
+ ...(obj.AreaOfInterest && { AreaOfInterest: AreaOfInterestFilterSensitiveLog(obj.AreaOfInterest) }),
584
+ ...(obj.PropertyFilters && { PropertyFilters: PropertyFiltersFilterSensitiveLog(obj.PropertyFilters) }),
585
+ });
586
+ export const InputConfigInputFilterSensitiveLog = (obj) => ({
587
+ ...obj,
588
+ ...(obj.DataSourceConfig && { DataSourceConfig: EojDataSourceConfigInputFilterSensitiveLog(obj.DataSourceConfig) }),
589
+ ...(obj.RasterDataCollectionQuery && {
590
+ RasterDataCollectionQuery: RasterDataCollectionQueryInputFilterSensitiveLog(obj.RasterDataCollectionQuery),
591
+ }),
592
+ });
593
+ export const StartEarthObservationJobInputFilterSensitiveLog = (obj) => ({
594
+ ...obj,
595
+ ...(obj.InputConfig && { InputConfig: InputConfigInputFilterSensitiveLog(obj.InputConfig) }),
596
+ ...(obj.JobConfig && { JobConfig: JobConfigInputFilterSensitiveLog(obj.JobConfig) }),
597
+ });
598
+ export const StartEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
599
+ ...obj,
600
+ ...(obj.InputConfig && { InputConfig: InputConfigOutputFilterSensitiveLog(obj.InputConfig) }),
601
+ ...(obj.JobConfig && { JobConfig: JobConfigInputFilterSensitiveLog(obj.JobConfig) }),
602
+ });
603
+ export const StopEarthObservationJobInputFilterSensitiveLog = (obj) => ({
604
+ ...obj,
605
+ });
606
+ export const StopEarthObservationJobOutputFilterSensitiveLog = (obj) => ({
607
+ ...obj,
608
+ });
609
+ export const VectorEnrichmentJobS3DataFilterSensitiveLog = (obj) => ({
610
+ ...obj,
611
+ });
612
+ export const ExportVectorEnrichmentJobOutputConfigFilterSensitiveLog = (obj) => ({
613
+ ...obj,
614
+ });
615
+ export const ExportVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
616
+ ...obj,
617
+ });
618
+ export const ExportVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
619
+ ...obj,
620
+ });
621
+ export const GeometryFilterSensitiveLog = (obj) => ({
622
+ ...obj,
623
+ ...(obj.Coordinates && { Coordinates: obj.Coordinates.map((item) => SENSITIVE_STRING) }),
624
+ });
625
+ export const GetRasterDataCollectionInputFilterSensitiveLog = (obj) => ({
626
+ ...obj,
627
+ });
628
+ export const GetRasterDataCollectionOutputFilterSensitiveLog = (obj) => ({
629
+ ...obj,
630
+ });
631
+ export const GetVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
632
+ ...obj,
633
+ });
634
+ export const VectorEnrichmentJobErrorDetailsFilterSensitiveLog = (obj) => ({
635
+ ...obj,
636
+ });
637
+ export const VectorEnrichmentJobExportErrorDetailsFilterSensitiveLog = (obj) => ({
638
+ ...obj,
639
+ });
640
+ export const VectorEnrichmentJobDataSourceConfigInputFilterSensitiveLog = (obj) => {
641
+ if (obj.S3Data !== undefined)
642
+ return { S3Data: VectorEnrichmentJobS3DataFilterSensitiveLog(obj.S3Data) };
643
+ if (obj.$unknown !== undefined)
644
+ return { [obj.$unknown[0]]: "UNKNOWN" };
645
+ };
646
+ export const VectorEnrichmentJobInputConfigFilterSensitiveLog = (obj) => ({
647
+ ...obj,
648
+ ...(obj.DataSourceConfig && {
649
+ DataSourceConfig: VectorEnrichmentJobDataSourceConfigInputFilterSensitiveLog(obj.DataSourceConfig),
650
+ }),
651
+ });
652
+ export const MapMatchingConfigFilterSensitiveLog = (obj) => ({
653
+ ...obj,
654
+ });
655
+ export const ReverseGeocodingConfigFilterSensitiveLog = (obj) => ({
656
+ ...obj,
657
+ });
658
+ export const VectorEnrichmentJobConfigFilterSensitiveLog = (obj) => {
659
+ if (obj.ReverseGeocodingConfig !== undefined)
660
+ return { ReverseGeocodingConfig: ReverseGeocodingConfigFilterSensitiveLog(obj.ReverseGeocodingConfig) };
661
+ if (obj.MapMatchingConfig !== undefined)
662
+ return { MapMatchingConfig: MapMatchingConfigFilterSensitiveLog(obj.MapMatchingConfig) };
663
+ if (obj.$unknown !== undefined)
664
+ return { [obj.$unknown[0]]: "UNKNOWN" };
665
+ };
666
+ export const GetVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
667
+ ...obj,
668
+ ...(obj.InputConfig && { InputConfig: VectorEnrichmentJobInputConfigFilterSensitiveLog(obj.InputConfig) }),
669
+ ...(obj.JobConfig && { JobConfig: VectorEnrichmentJobConfigFilterSensitiveLog(obj.JobConfig) }),
670
+ });
671
+ export const PropertiesFilterSensitiveLog = (obj) => ({
672
+ ...obj,
673
+ });
674
+ export const ItemSourceFilterSensitiveLog = (obj) => ({
675
+ ...obj,
676
+ ...(obj.Geometry && { Geometry: GeometryFilterSensitiveLog(obj.Geometry) }),
677
+ });
678
+ export const ListRasterDataCollectionsInputFilterSensitiveLog = (obj) => ({
679
+ ...obj,
680
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
681
+ });
682
+ export const ListRasterDataCollectionsOutputFilterSensitiveLog = (obj) => ({
683
+ ...obj,
684
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
685
+ });
686
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
687
+ ...obj,
688
+ });
689
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
690
+ ...obj,
691
+ });
692
+ export const ListVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
693
+ ...obj,
694
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
695
+ });
696
+ export const ListVectorEnrichmentJobOutputConfigFilterSensitiveLog = (obj) => ({
697
+ ...obj,
698
+ });
699
+ export const ListVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
700
+ ...obj,
701
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
702
+ });
703
+ export const RasterDataCollectionQueryWithBandFilterInputFilterSensitiveLog = (obj) => ({
704
+ ...obj,
705
+ ...(obj.TimeRangeFilter && { TimeRangeFilter: SENSITIVE_STRING }),
706
+ ...(obj.AreaOfInterest && { AreaOfInterest: AreaOfInterestFilterSensitiveLog(obj.AreaOfInterest) }),
707
+ ...(obj.PropertyFilters && { PropertyFilters: PropertyFiltersFilterSensitiveLog(obj.PropertyFilters) }),
708
+ });
709
+ export const SearchRasterDataCollectionInputFilterSensitiveLog = (obj) => ({
710
+ ...obj,
711
+ ...(obj.RasterDataCollectionQuery && {
712
+ RasterDataCollectionQuery: RasterDataCollectionQueryWithBandFilterInputFilterSensitiveLog(obj.RasterDataCollectionQuery),
713
+ }),
714
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
715
+ });
716
+ export const SearchRasterDataCollectionOutputFilterSensitiveLog = (obj) => ({
717
+ ...obj,
718
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
719
+ ...(obj.Items && { Items: obj.Items.map((item) => ItemSourceFilterSensitiveLog(item)) }),
720
+ });
721
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
722
+ ...obj,
723
+ });
724
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
725
+ ...obj,
726
+ });
727
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
728
+ ...obj,
729
+ });
730
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
731
+ ...obj,
732
+ });
733
+ export const StartVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
734
+ ...obj,
735
+ ...(obj.InputConfig && { InputConfig: VectorEnrichmentJobInputConfigFilterSensitiveLog(obj.InputConfig) }),
736
+ ...(obj.JobConfig && { JobConfig: VectorEnrichmentJobConfigFilterSensitiveLog(obj.JobConfig) }),
737
+ });
738
+ export const StartVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
739
+ ...obj,
740
+ ...(obj.InputConfig && { InputConfig: VectorEnrichmentJobInputConfigFilterSensitiveLog(obj.InputConfig) }),
741
+ ...(obj.JobConfig && { JobConfig: VectorEnrichmentJobConfigFilterSensitiveLog(obj.JobConfig) }),
742
+ });
743
+ export const StopVectorEnrichmentJobInputFilterSensitiveLog = (obj) => ({
744
+ ...obj,
745
+ });
746
+ export const StopVectorEnrichmentJobOutputFilterSensitiveLog = (obj) => ({
747
+ ...obj,
748
+ });