aws-sdk-sagemakergeospatial 1.12.0 → 1.14.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,787 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SageMakerGeospatial
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AreaOfInterest
17
+ attr_accessor area_of_interest_geometry: Types::AreaOfInterestGeometry
18
+ attr_accessor unknown: untyped
19
+ SENSITIVE: []
20
+
21
+ class AreaOfInterestGeometry < AreaOfInterest
22
+ end
23
+ class Unknown < AreaOfInterest
24
+ end
25
+ end
26
+
27
+ class AreaOfInterestGeometry
28
+ attr_accessor multi_polygon_geometry: Types::MultiPolygonGeometryInput
29
+ attr_accessor polygon_geometry: Types::PolygonGeometryInput
30
+ attr_accessor unknown: untyped
31
+ SENSITIVE: []
32
+
33
+ class MultiPolygonGeometry < AreaOfInterestGeometry
34
+ end
35
+ class PolygonGeometry < AreaOfInterestGeometry
36
+ end
37
+ class Unknown < AreaOfInterestGeometry
38
+ end
39
+ end
40
+
41
+ class AssetValue
42
+ attr_accessor href: ::String
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class BandMathConfigInput
47
+ attr_accessor custom_indices: Types::CustomIndicesInput
48
+ attr_accessor predefined_indices: ::Array[::String]
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class CloudMaskingConfigInput < Aws::EmptyStructure
53
+ end
54
+
55
+ class CloudRemovalConfigInput
56
+ attr_accessor algorithm_name: ("INTERPOLATION")
57
+ attr_accessor interpolation_value: ::String
58
+ attr_accessor target_bands: ::Array[::String]
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class ConflictException
63
+ attr_accessor message: ::String
64
+ attr_accessor resource_id: ::String
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class CustomIndicesInput
69
+ attr_accessor operations: ::Array[Types::Operation]
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class DeleteEarthObservationJobInput
74
+ attr_accessor arn: ::String
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class DeleteEarthObservationJobOutput < Aws::EmptyStructure
79
+ end
80
+
81
+ class DeleteVectorEnrichmentJobInput
82
+ attr_accessor arn: ::String
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class DeleteVectorEnrichmentJobOutput < Aws::EmptyStructure
87
+ end
88
+
89
+ class EarthObservationJobErrorDetails
90
+ attr_accessor message: ::String
91
+ attr_accessor type: ("CLIENT_ERROR" | "SERVER_ERROR")
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class EoCloudCoverInput
96
+ attr_accessor lower_bound: ::Float
97
+ attr_accessor upper_bound: ::Float
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class ExportEarthObservationJobInput
102
+ attr_accessor arn: ::String
103
+ attr_accessor client_token: ::String
104
+ attr_accessor execution_role_arn: ::String
105
+ attr_accessor export_source_images: bool
106
+ attr_accessor output_config: Types::OutputConfigInput
107
+ SENSITIVE: []
108
+ end
109
+
110
+ class ExportEarthObservationJobOutput
111
+ attr_accessor arn: ::String
112
+ attr_accessor creation_time: ::Time
113
+ attr_accessor execution_role_arn: ::String
114
+ attr_accessor export_source_images: bool
115
+ attr_accessor export_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
116
+ attr_accessor output_config: Types::OutputConfigInput
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class ExportErrorDetails
121
+ attr_accessor export_results: Types::ExportErrorDetailsOutput
122
+ attr_accessor export_source_images: Types::ExportErrorDetailsOutput
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class ExportErrorDetailsOutput
127
+ attr_accessor message: ::String
128
+ attr_accessor type: ("CLIENT_ERROR" | "SERVER_ERROR")
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class ExportS3DataInput
133
+ attr_accessor kms_key_id: ::String
134
+ attr_accessor s3_uri: ::String
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class ExportVectorEnrichmentJobInput
139
+ attr_accessor arn: ::String
140
+ attr_accessor client_token: ::String
141
+ attr_accessor execution_role_arn: ::String
142
+ attr_accessor output_config: Types::ExportVectorEnrichmentJobOutputConfig
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class ExportVectorEnrichmentJobOutput
147
+ attr_accessor arn: ::String
148
+ attr_accessor creation_time: ::Time
149
+ attr_accessor execution_role_arn: ::String
150
+ attr_accessor export_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
151
+ attr_accessor output_config: Types::ExportVectorEnrichmentJobOutputConfig
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class ExportVectorEnrichmentJobOutputConfig
156
+ attr_accessor s3_data: Types::VectorEnrichmentJobS3Data
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class Filter
161
+ attr_accessor maximum: ::Float
162
+ attr_accessor minimum: ::Float
163
+ attr_accessor name: ::String
164
+ attr_accessor type: ::String
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class GeoMosaicConfigInput
169
+ attr_accessor algorithm_name: ("NEAR" | "BILINEAR" | "CUBIC" | "CUBICSPLINE" | "LANCZOS" | "AVERAGE" | "RMS" | "MODE" | "MAX" | "MIN" | "MED" | "Q1" | "Q3" | "SUM")
170
+ attr_accessor target_bands: ::Array[::String]
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class Geometry
175
+ attr_accessor coordinates: ::Array[::Array[::Array[::Float]]]
176
+ attr_accessor type: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class GetEarthObservationJobInput
181
+ attr_accessor arn: ::String
182
+ SENSITIVE: []
183
+ end
184
+
185
+ class GetEarthObservationJobOutput
186
+ attr_accessor arn: ::String
187
+ attr_accessor creation_time: ::Time
188
+ attr_accessor duration_in_seconds: ::Integer
189
+ attr_accessor error_details: Types::EarthObservationJobErrorDetails
190
+ attr_accessor execution_role_arn: ::String
191
+ attr_accessor export_error_details: Types::ExportErrorDetails
192
+ attr_accessor export_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
193
+ attr_accessor input_config: Types::InputConfigOutput
194
+ attr_accessor job_config: Types::JobConfigInput
195
+ attr_accessor kms_key_id: ::String
196
+ attr_accessor name: ::String
197
+ attr_accessor output_bands: ::Array[Types::OutputBand]
198
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
199
+ attr_accessor tags: ::Hash[::String, ::String]
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class GetRasterDataCollectionInput
204
+ attr_accessor arn: ::String
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class GetRasterDataCollectionOutput
209
+ attr_accessor arn: ::String
210
+ attr_accessor description: ::String
211
+ attr_accessor description_page_url: ::String
212
+ attr_accessor image_source_bands: ::Array[::String]
213
+ attr_accessor name: ::String
214
+ attr_accessor supported_filters: ::Array[Types::Filter]
215
+ attr_accessor tags: ::Hash[::String, ::String]
216
+ attr_accessor type: ("PUBLIC" | "PREMIUM" | "USER")
217
+ SENSITIVE: []
218
+ end
219
+
220
+ class GetTileInput
221
+ attr_accessor arn: ::String
222
+ attr_accessor execution_role_arn: ::String
223
+ attr_accessor image_assets: ::Array[::String]
224
+ attr_accessor image_mask: bool
225
+ attr_accessor output_data_type: ("INT32" | "FLOAT32" | "INT16" | "FLOAT64" | "UINT16")
226
+ attr_accessor output_format: ::String
227
+ attr_accessor property_filters: ::String
228
+ attr_accessor target: ("INPUT" | "OUTPUT")
229
+ attr_accessor time_range_filter: ::String
230
+ attr_accessor x: ::Integer
231
+ attr_accessor y: ::Integer
232
+ attr_accessor z: ::Integer
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class GetTileOutput
237
+ attr_accessor binary_file: ::IO
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class GetVectorEnrichmentJobInput
242
+ attr_accessor arn: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class GetVectorEnrichmentJobOutput
247
+ attr_accessor arn: ::String
248
+ attr_accessor creation_time: ::Time
249
+ attr_accessor duration_in_seconds: ::Integer
250
+ attr_accessor error_details: Types::VectorEnrichmentJobErrorDetails
251
+ attr_accessor execution_role_arn: ::String
252
+ attr_accessor export_error_details: Types::VectorEnrichmentJobExportErrorDetails
253
+ attr_accessor export_status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
254
+ attr_accessor input_config: Types::VectorEnrichmentJobInputConfig
255
+ attr_accessor job_config: Types::VectorEnrichmentJobConfig
256
+ attr_accessor kms_key_id: ::String
257
+ attr_accessor name: ::String
258
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "STOPPED" | "COMPLETED" | "FAILED" | "DELETING" | "DELETED")
259
+ attr_accessor tags: ::Hash[::String, ::String]
260
+ attr_accessor type: ("REVERSE_GEOCODING" | "MAP_MATCHING")
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class InputConfigInput
265
+ attr_accessor previous_earth_observation_job_arn: ::String
266
+ attr_accessor raster_data_collection_query: Types::RasterDataCollectionQueryInput
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class InputConfigOutput
271
+ attr_accessor previous_earth_observation_job_arn: ::String
272
+ attr_accessor raster_data_collection_query: Types::RasterDataCollectionQueryOutput
273
+ SENSITIVE: []
274
+ end
275
+
276
+ class InternalServerException
277
+ attr_accessor message: ::String
278
+ attr_accessor resource_id: ::String
279
+ SENSITIVE: []
280
+ end
281
+
282
+ class ItemSource
283
+ attr_accessor assets: ::Hash[::String, Types::AssetValue]
284
+ attr_accessor date_time: ::Time
285
+ attr_accessor geometry: Types::Geometry
286
+ attr_accessor id: ::String
287
+ attr_accessor properties: Types::Properties
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class JobConfigInput
292
+ attr_accessor band_math_config: Types::BandMathConfigInput
293
+ attr_accessor cloud_masking_config: Types::CloudMaskingConfigInput
294
+ attr_accessor cloud_removal_config: Types::CloudRemovalConfigInput
295
+ attr_accessor geo_mosaic_config: Types::GeoMosaicConfigInput
296
+ attr_accessor land_cover_segmentation_config: Types::LandCoverSegmentationConfigInput
297
+ attr_accessor resampling_config: Types::ResamplingConfigInput
298
+ attr_accessor stack_config: Types::StackConfigInput
299
+ attr_accessor temporal_statistics_config: Types::TemporalStatisticsConfigInput
300
+ attr_accessor zonal_statistics_config: Types::ZonalStatisticsConfigInput
301
+ attr_accessor unknown: untyped
302
+ SENSITIVE: []
303
+
304
+ class BandMathConfig < JobConfigInput
305
+ end
306
+ class CloudMaskingConfig < JobConfigInput
307
+ end
308
+ class CloudRemovalConfig < JobConfigInput
309
+ end
310
+ class GeoMosaicConfig < JobConfigInput
311
+ end
312
+ class LandCoverSegmentationConfig < JobConfigInput
313
+ end
314
+ class ResamplingConfig < JobConfigInput
315
+ end
316
+ class StackConfig < JobConfigInput
317
+ end
318
+ class TemporalStatisticsConfig < JobConfigInput
319
+ end
320
+ class ZonalStatisticsConfig < JobConfigInput
321
+ end
322
+ class Unknown < JobConfigInput
323
+ end
324
+ end
325
+
326
+ class LandCoverSegmentationConfigInput < Aws::EmptyStructure
327
+ end
328
+
329
+ class LandsatCloudCoverLandInput
330
+ attr_accessor lower_bound: ::Float
331
+ attr_accessor upper_bound: ::Float
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class ListEarthObservationJobInput
336
+ attr_accessor max_results: ::Integer
337
+ attr_accessor next_token: ::String
338
+ attr_accessor sort_by: ::String
339
+ attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
340
+ attr_accessor status_equals: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
341
+ SENSITIVE: [:next_token]
342
+ end
343
+
344
+ class ListEarthObservationJobOutput
345
+ attr_accessor earth_observation_job_summaries: ::Array[Types::ListEarthObservationJobOutputConfig]
346
+ attr_accessor next_token: ::String
347
+ SENSITIVE: [:next_token]
348
+ end
349
+
350
+ class ListEarthObservationJobOutputConfig
351
+ attr_accessor arn: ::String
352
+ attr_accessor creation_time: ::Time
353
+ attr_accessor duration_in_seconds: ::Integer
354
+ attr_accessor name: ::String
355
+ attr_accessor operation_type: ::String
356
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
357
+ attr_accessor tags: ::Hash[::String, ::String]
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class ListRasterDataCollectionsInput
362
+ attr_accessor max_results: ::Integer
363
+ attr_accessor next_token: ::String
364
+ SENSITIVE: [:next_token]
365
+ end
366
+
367
+ class ListRasterDataCollectionsOutput
368
+ attr_accessor next_token: ::String
369
+ attr_accessor raster_data_collection_summaries: ::Array[Types::RasterDataCollectionMetadata]
370
+ SENSITIVE: [:next_token]
371
+ end
372
+
373
+ class ListTagsForResourceRequest
374
+ attr_accessor resource_arn: ::String
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class ListTagsForResourceResponse
379
+ attr_accessor tags: ::Hash[::String, ::String]
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class ListVectorEnrichmentJobInput
384
+ attr_accessor max_results: ::Integer
385
+ attr_accessor next_token: ::String
386
+ attr_accessor sort_by: ::String
387
+ attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
388
+ attr_accessor status_equals: ::String
389
+ SENSITIVE: [:next_token]
390
+ end
391
+
392
+ class ListVectorEnrichmentJobOutput
393
+ attr_accessor next_token: ::String
394
+ attr_accessor vector_enrichment_job_summaries: ::Array[Types::ListVectorEnrichmentJobOutputConfig]
395
+ SENSITIVE: [:next_token]
396
+ end
397
+
398
+ class ListVectorEnrichmentJobOutputConfig
399
+ attr_accessor arn: ::String
400
+ attr_accessor creation_time: ::Time
401
+ attr_accessor duration_in_seconds: ::Integer
402
+ attr_accessor name: ::String
403
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "STOPPED" | "COMPLETED" | "FAILED" | "DELETING" | "DELETED")
404
+ attr_accessor tags: ::Hash[::String, ::String]
405
+ attr_accessor type: ("REVERSE_GEOCODING" | "MAP_MATCHING")
406
+ SENSITIVE: []
407
+ end
408
+
409
+ class MapMatchingConfig
410
+ attr_accessor id_attribute_name: ::String
411
+ attr_accessor timestamp_attribute_name: ::String
412
+ attr_accessor x_attribute_name: ::String
413
+ attr_accessor y_attribute_name: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class MultiPolygonGeometryInput
418
+ attr_accessor coordinates: ::Array[::Array[::Array[::Array[::Float]]]]
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class Operation
423
+ attr_accessor equation: ::String
424
+ attr_accessor name: ::String
425
+ attr_accessor output_type: ("INT32" | "FLOAT32" | "INT16" | "FLOAT64" | "UINT16")
426
+ SENSITIVE: []
427
+ end
428
+
429
+ class OutputBand
430
+ attr_accessor band_name: ::String
431
+ attr_accessor output_data_type: ("INT32" | "FLOAT32" | "INT16" | "FLOAT64" | "UINT16")
432
+ SENSITIVE: []
433
+ end
434
+
435
+ class OutputConfigInput
436
+ attr_accessor s3_data: Types::ExportS3DataInput
437
+ SENSITIVE: []
438
+ end
439
+
440
+ class OutputResolutionResamplingInput
441
+ attr_accessor user_defined: Types::UserDefined
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class OutputResolutionStackInput
446
+ attr_accessor predefined: ("HIGHEST" | "LOWEST" | "AVERAGE")
447
+ attr_accessor user_defined: Types::UserDefined
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class PlatformInput
452
+ attr_accessor comparison_operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH")
453
+ attr_accessor value: ::String
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class PolygonGeometryInput
458
+ attr_accessor coordinates: ::Array[::Array[::Array[::Float]]]
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class Properties
463
+ attr_accessor eo_cloud_cover: ::Float
464
+ attr_accessor landsat_cloud_cover_land: ::Float
465
+ attr_accessor platform: ::String
466
+ attr_accessor view_off_nadir: ::Float
467
+ attr_accessor view_sun_azimuth: ::Float
468
+ attr_accessor view_sun_elevation: ::Float
469
+ SENSITIVE: []
470
+ end
471
+
472
+ class Property
473
+ attr_accessor eo_cloud_cover: Types::EoCloudCoverInput
474
+ attr_accessor landsat_cloud_cover_land: Types::LandsatCloudCoverLandInput
475
+ attr_accessor platform: Types::PlatformInput
476
+ attr_accessor view_off_nadir: Types::ViewOffNadirInput
477
+ attr_accessor view_sun_azimuth: Types::ViewSunAzimuthInput
478
+ attr_accessor view_sun_elevation: Types::ViewSunElevationInput
479
+ attr_accessor unknown: untyped
480
+ SENSITIVE: []
481
+
482
+ class EoCloudCover < Property
483
+ end
484
+ class LandsatCloudCoverLand < Property
485
+ end
486
+ class Platform < Property
487
+ end
488
+ class ViewOffNadir < Property
489
+ end
490
+ class ViewSunAzimuth < Property
491
+ end
492
+ class ViewSunElevation < Property
493
+ end
494
+ class Unknown < Property
495
+ end
496
+ end
497
+
498
+ class PropertyFilter
499
+ attr_accessor property: Types::Property
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class PropertyFilters
504
+ attr_accessor logical_operator: ("AND")
505
+ attr_accessor properties: ::Array[Types::PropertyFilter]
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class RasterDataCollectionMetadata
510
+ attr_accessor arn: ::String
511
+ attr_accessor description: ::String
512
+ attr_accessor description_page_url: ::String
513
+ attr_accessor name: ::String
514
+ attr_accessor supported_filters: ::Array[Types::Filter]
515
+ attr_accessor tags: ::Hash[::String, ::String]
516
+ attr_accessor type: ("PUBLIC" | "PREMIUM" | "USER")
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class RasterDataCollectionQueryInput
521
+ attr_accessor area_of_interest: Types::AreaOfInterest
522
+ attr_accessor property_filters: Types::PropertyFilters
523
+ attr_accessor raster_data_collection_arn: ::String
524
+ attr_accessor time_range_filter: Types::TimeRangeFilterInput
525
+ SENSITIVE: [:time_range_filter]
526
+ end
527
+
528
+ class RasterDataCollectionQueryOutput
529
+ attr_accessor area_of_interest: Types::AreaOfInterest
530
+ attr_accessor property_filters: Types::PropertyFilters
531
+ attr_accessor raster_data_collection_arn: ::String
532
+ attr_accessor raster_data_collection_name: ::String
533
+ attr_accessor time_range_filter: Types::TimeRangeFilterOutput
534
+ SENSITIVE: [:time_range_filter]
535
+ end
536
+
537
+ class RasterDataCollectionQueryWithBandFilterInput
538
+ attr_accessor area_of_interest: Types::AreaOfInterest
539
+ attr_accessor band_filter: ::Array[::String]
540
+ attr_accessor property_filters: Types::PropertyFilters
541
+ attr_accessor time_range_filter: Types::TimeRangeFilterInput
542
+ SENSITIVE: [:time_range_filter]
543
+ end
544
+
545
+ class ResamplingConfigInput
546
+ attr_accessor algorithm_name: ("NEAR" | "BILINEAR" | "CUBIC" | "CUBICSPLINE" | "LANCZOS" | "AVERAGE" | "RMS" | "MODE" | "MAX" | "MIN" | "MED" | "Q1" | "Q3" | "SUM")
547
+ attr_accessor output_resolution: Types::OutputResolutionResamplingInput
548
+ attr_accessor target_bands: ::Array[::String]
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class ResourceNotFoundException
553
+ attr_accessor message: ::String
554
+ attr_accessor resource_id: ::String
555
+ SENSITIVE: []
556
+ end
557
+
558
+ class ReverseGeocodingConfig
559
+ attr_accessor x_attribute_name: ::String
560
+ attr_accessor y_attribute_name: ::String
561
+ SENSITIVE: []
562
+ end
563
+
564
+ class SearchRasterDataCollectionInput
565
+ attr_accessor arn: ::String
566
+ attr_accessor next_token: ::String
567
+ attr_accessor raster_data_collection_query: Types::RasterDataCollectionQueryWithBandFilterInput
568
+ SENSITIVE: [:next_token]
569
+ end
570
+
571
+ class SearchRasterDataCollectionOutput
572
+ attr_accessor approximate_result_count: ::Integer
573
+ attr_accessor items: ::Array[Types::ItemSource]
574
+ attr_accessor next_token: ::String
575
+ SENSITIVE: [:next_token]
576
+ end
577
+
578
+ class ServiceQuotaExceededException
579
+ attr_accessor message: ::String
580
+ attr_accessor resource_id: ::String
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class StackConfigInput
585
+ attr_accessor output_resolution: Types::OutputResolutionStackInput
586
+ attr_accessor target_bands: ::Array[::String]
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class StartEarthObservationJobInput
591
+ attr_accessor client_token: ::String
592
+ attr_accessor execution_role_arn: ::String
593
+ attr_accessor input_config: Types::InputConfigInput
594
+ attr_accessor job_config: Types::JobConfigInput
595
+ attr_accessor kms_key_id: ::String
596
+ attr_accessor name: ::String
597
+ attr_accessor tags: ::Hash[::String, ::String]
598
+ SENSITIVE: []
599
+ end
600
+
601
+ class StartEarthObservationJobOutput
602
+ attr_accessor arn: ::String
603
+ attr_accessor creation_time: ::Time
604
+ attr_accessor duration_in_seconds: ::Integer
605
+ attr_accessor execution_role_arn: ::String
606
+ attr_accessor input_config: Types::InputConfigOutput
607
+ attr_accessor job_config: Types::JobConfigInput
608
+ attr_accessor kms_key_id: ::String
609
+ attr_accessor name: ::String
610
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
611
+ attr_accessor tags: ::Hash[::String, ::String]
612
+ SENSITIVE: []
613
+ end
614
+
615
+ class StartVectorEnrichmentJobInput
616
+ attr_accessor client_token: ::String
617
+ attr_accessor execution_role_arn: ::String
618
+ attr_accessor input_config: Types::VectorEnrichmentJobInputConfig
619
+ attr_accessor job_config: Types::VectorEnrichmentJobConfig
620
+ attr_accessor kms_key_id: ::String
621
+ attr_accessor name: ::String
622
+ attr_accessor tags: ::Hash[::String, ::String]
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class StartVectorEnrichmentJobOutput
627
+ attr_accessor arn: ::String
628
+ attr_accessor creation_time: ::Time
629
+ attr_accessor duration_in_seconds: ::Integer
630
+ attr_accessor execution_role_arn: ::String
631
+ attr_accessor input_config: Types::VectorEnrichmentJobInputConfig
632
+ attr_accessor job_config: Types::VectorEnrichmentJobConfig
633
+ attr_accessor kms_key_id: ::String
634
+ attr_accessor name: ::String
635
+ attr_accessor status: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "STOPPED" | "COMPLETED" | "FAILED" | "DELETING" | "DELETED")
636
+ attr_accessor tags: ::Hash[::String, ::String]
637
+ attr_accessor type: ("REVERSE_GEOCODING" | "MAP_MATCHING")
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class StopEarthObservationJobInput
642
+ attr_accessor arn: ::String
643
+ SENSITIVE: []
644
+ end
645
+
646
+ class StopEarthObservationJobOutput < Aws::EmptyStructure
647
+ end
648
+
649
+ class StopVectorEnrichmentJobInput
650
+ attr_accessor arn: ::String
651
+ SENSITIVE: []
652
+ end
653
+
654
+ class StopVectorEnrichmentJobOutput < Aws::EmptyStructure
655
+ end
656
+
657
+ class TagResourceRequest
658
+ attr_accessor resource_arn: ::String
659
+ attr_accessor tags: ::Hash[::String, ::String]
660
+ SENSITIVE: []
661
+ end
662
+
663
+ class TagResourceResponse < Aws::EmptyStructure
664
+ end
665
+
666
+ class TemporalStatisticsConfigInput
667
+ attr_accessor group_by: ("ALL" | "YEARLY")
668
+ attr_accessor statistics: ::Array[("MEAN" | "MEDIAN" | "STANDARD_DEVIATION")]
669
+ attr_accessor target_bands: ::Array[::String]
670
+ SENSITIVE: []
671
+ end
672
+
673
+ class ThrottlingException
674
+ attr_accessor message: ::String
675
+ attr_accessor resource_id: ::String
676
+ SENSITIVE: []
677
+ end
678
+
679
+ class TimeRangeFilterInput
680
+ attr_accessor end_time: ::Time
681
+ attr_accessor start_time: ::Time
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class TimeRangeFilterOutput
686
+ attr_accessor end_time: ::Time
687
+ attr_accessor start_time: ::Time
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class UntagResourceRequest
692
+ attr_accessor resource_arn: ::String
693
+ attr_accessor tag_keys: ::Array[::String]
694
+ SENSITIVE: []
695
+ end
696
+
697
+ class UntagResourceResponse < Aws::EmptyStructure
698
+ end
699
+
700
+ class UserDefined
701
+ attr_accessor unit: ("METERS")
702
+ attr_accessor value: ::Float
703
+ SENSITIVE: []
704
+ end
705
+
706
+ class ValidationException
707
+ attr_accessor message: ::String
708
+ attr_accessor resource_id: ::String
709
+ SENSITIVE: []
710
+ end
711
+
712
+ class VectorEnrichmentJobConfig
713
+ attr_accessor map_matching_config: Types::MapMatchingConfig
714
+ attr_accessor reverse_geocoding_config: Types::ReverseGeocodingConfig
715
+ attr_accessor unknown: untyped
716
+ SENSITIVE: []
717
+
718
+ class MapMatchingConfig < VectorEnrichmentJobConfig
719
+ end
720
+ class ReverseGeocodingConfig < VectorEnrichmentJobConfig
721
+ end
722
+ class Unknown < VectorEnrichmentJobConfig
723
+ end
724
+ end
725
+
726
+ class VectorEnrichmentJobDataSourceConfigInput
727
+ attr_accessor s3_data: Types::VectorEnrichmentJobS3Data
728
+ attr_accessor unknown: untyped
729
+ SENSITIVE: []
730
+
731
+ class S3Data < VectorEnrichmentJobDataSourceConfigInput
732
+ end
733
+ class Unknown < VectorEnrichmentJobDataSourceConfigInput
734
+ end
735
+ end
736
+
737
+ class VectorEnrichmentJobErrorDetails
738
+ attr_accessor error_message: ::String
739
+ attr_accessor error_type: ("CLIENT_ERROR" | "SERVER_ERROR")
740
+ SENSITIVE: []
741
+ end
742
+
743
+ class VectorEnrichmentJobExportErrorDetails
744
+ attr_accessor message: ::String
745
+ attr_accessor type: ("CLIENT_ERROR" | "SERVER_ERROR")
746
+ SENSITIVE: []
747
+ end
748
+
749
+ class VectorEnrichmentJobInputConfig
750
+ attr_accessor data_source_config: Types::VectorEnrichmentJobDataSourceConfigInput
751
+ attr_accessor document_type: ("CSV")
752
+ SENSITIVE: []
753
+ end
754
+
755
+ class VectorEnrichmentJobS3Data
756
+ attr_accessor kms_key_id: ::String
757
+ attr_accessor s3_uri: ::String
758
+ SENSITIVE: []
759
+ end
760
+
761
+ class ViewOffNadirInput
762
+ attr_accessor lower_bound: ::Float
763
+ attr_accessor upper_bound: ::Float
764
+ SENSITIVE: []
765
+ end
766
+
767
+ class ViewSunAzimuthInput
768
+ attr_accessor lower_bound: ::Float
769
+ attr_accessor upper_bound: ::Float
770
+ SENSITIVE: []
771
+ end
772
+
773
+ class ViewSunElevationInput
774
+ attr_accessor lower_bound: ::Float
775
+ attr_accessor upper_bound: ::Float
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class ZonalStatisticsConfigInput
780
+ attr_accessor statistics: ::Array[("MEAN" | "MEDIAN" | "STANDARD_DEVIATION" | "MAX" | "MIN" | "SUM")]
781
+ attr_accessor target_bands: ::Array[::String]
782
+ attr_accessor zone_s3_path: ::String
783
+ attr_accessor zone_s3_path_kms_key_id: ::String
784
+ SENSITIVE: []
785
+ end
786
+ end
787
+ end