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