aws-sdk-sagemakergeospatial 1.1.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakergeospatial/client.rb +60 -41
- data/lib/aws-sdk-sagemakergeospatial/client_api.rb +63 -60
- data/lib/aws-sdk-sagemakergeospatial/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-sagemakergeospatial/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-sagemakergeospatial/types.rb +364 -73
- data/lib/aws-sdk-sagemakergeospatial.rb +1 -1
- metadata +2 -2
@@ -23,11 +23,15 @@ module Aws::SageMakerGeospatial
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# The geographic extent of the Earth Observation job.
|
27
|
+
#
|
26
28
|
# @note AreaOfInterest is a union - when making an API calls you must set exactly one of the members.
|
27
29
|
#
|
28
30
|
# @note AreaOfInterest is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AreaOfInterest corresponding to the set member.
|
29
31
|
#
|
30
32
|
# @!attribute [rw] area_of_interest_geometry
|
33
|
+
# A GeoJSON object representing the geographic extent in the
|
34
|
+
# coordinate space.
|
31
35
|
# @return [Types::AreaOfInterestGeometry]
|
32
36
|
#
|
33
37
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AreaOfInterest AWS API Documentation
|
@@ -43,14 +47,19 @@ module Aws::SageMakerGeospatial
|
|
43
47
|
class Unknown < AreaOfInterest; end
|
44
48
|
end
|
45
49
|
|
50
|
+
# A GeoJSON object representing the geographic extent in the coordinate
|
51
|
+
# space.
|
52
|
+
#
|
46
53
|
# @note AreaOfInterestGeometry is a union - when making an API calls you must set exactly one of the members.
|
47
54
|
#
|
48
55
|
# @note AreaOfInterestGeometry is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AreaOfInterestGeometry corresponding to the set member.
|
49
56
|
#
|
50
57
|
# @!attribute [rw] multi_polygon_geometry
|
58
|
+
# The structure representing the MultiPolygon Geometry.
|
51
59
|
# @return [Types::MultiPolygonGeometryInput]
|
52
60
|
#
|
53
61
|
# @!attribute [rw] polygon_geometry
|
62
|
+
# The structure representing Polygon Geometry.
|
54
63
|
# @return [Types::PolygonGeometryInput]
|
55
64
|
#
|
56
65
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AreaOfInterestGeometry AWS API Documentation
|
@@ -68,7 +77,10 @@ module Aws::SageMakerGeospatial
|
|
68
77
|
class Unknown < AreaOfInterestGeometry; end
|
69
78
|
end
|
70
79
|
|
80
|
+
# The structure containing the asset properties.
|
81
|
+
#
|
71
82
|
# @!attribute [rw] href
|
83
|
+
# Link to the asset object.
|
72
84
|
# @return [String]
|
73
85
|
#
|
74
86
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AssetValue AWS API Documentation
|
@@ -79,10 +91,17 @@ module Aws::SageMakerGeospatial
|
|
79
91
|
include Aws::Structure
|
80
92
|
end
|
81
93
|
|
94
|
+
# Input structure for the BandMath operation type. Defines Predefined
|
95
|
+
# and CustomIndices to be computed using BandMath.
|
96
|
+
#
|
82
97
|
# @!attribute [rw] custom_indices
|
98
|
+
# CustomIndices that are computed.
|
83
99
|
# @return [Types::CustomIndicesInput]
|
84
100
|
#
|
85
101
|
# @!attribute [rw] predefined_indices
|
102
|
+
# One or many of the supported predefined indices to compute. Allowed
|
103
|
+
# values: `NDVI`, `EVI2`, `MSAVI`, `NDWI`, `NDMI`, `NDSI`, and
|
104
|
+
# `WDRVI`.
|
86
105
|
# @return [Array<String>]
|
87
106
|
#
|
88
107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/BandMathConfigInput AWS API Documentation
|
@@ -94,12 +113,16 @@ module Aws::SageMakerGeospatial
|
|
94
113
|
include Aws::Structure
|
95
114
|
end
|
96
115
|
|
116
|
+
# Input structure for CloudMasking operation type.
|
117
|
+
#
|
97
118
|
# @api private
|
98
119
|
#
|
99
120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CloudMaskingConfigInput AWS API Documentation
|
100
121
|
#
|
101
122
|
class CloudMaskingConfigInput < Aws::EmptyStructure; end
|
102
123
|
|
124
|
+
# Input structure for Cloud Removal Operation type
|
125
|
+
#
|
103
126
|
# @!attribute [rw] algorithm_name
|
104
127
|
# The name of the algorithm used for cloud removal.
|
105
128
|
# @return [String]
|
@@ -109,6 +132,7 @@ module Aws::SageMakerGeospatial
|
|
109
132
|
# @return [String]
|
110
133
|
#
|
111
134
|
# @!attribute [rw] target_bands
|
135
|
+
# TargetBands to be returned in the output of CloudRemoval operation.
|
112
136
|
# @return [Array<String>]
|
113
137
|
#
|
114
138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CloudRemovalConfigInput AWS API Documentation
|
@@ -121,10 +145,13 @@ module Aws::SageMakerGeospatial
|
|
121
145
|
include Aws::Structure
|
122
146
|
end
|
123
147
|
|
148
|
+
# Updating or deleting a resource can cause an inconsistent state.
|
149
|
+
#
|
124
150
|
# @!attribute [rw] message
|
125
151
|
# @return [String]
|
126
152
|
#
|
127
153
|
# @!attribute [rw] resource_id
|
154
|
+
# Identifier of the resource affected.
|
128
155
|
# @return [String]
|
129
156
|
#
|
130
157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ConflictException AWS API Documentation
|
@@ -136,7 +163,10 @@ module Aws::SageMakerGeospatial
|
|
136
163
|
include Aws::Structure
|
137
164
|
end
|
138
165
|
|
166
|
+
# Input object defining the custom BandMath indices to compute.
|
167
|
+
#
|
139
168
|
# @!attribute [rw] operations
|
169
|
+
# A list of BandMath indices to compute.
|
140
170
|
# @return [Array<Types::Operation>]
|
141
171
|
#
|
142
172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CustomIndicesInput AWS API Documentation
|
@@ -184,9 +214,11 @@ module Aws::SageMakerGeospatial
|
|
184
214
|
# The structure representing the errors in an EarthObservationJob.
|
185
215
|
#
|
186
216
|
# @!attribute [rw] message
|
217
|
+
# A detailed message describing the error in an Earth Observation job.
|
187
218
|
# @return [String]
|
188
219
|
#
|
189
220
|
# @!attribute [rw] type
|
221
|
+
# The type of error in an Earth Observation job.
|
190
222
|
# @return [String]
|
191
223
|
#
|
192
224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EarthObservationJobErrorDetails AWS API Documentation
|
@@ -198,10 +230,14 @@ module Aws::SageMakerGeospatial
|
|
198
230
|
include Aws::Structure
|
199
231
|
end
|
200
232
|
|
233
|
+
# The structure representing the EoCloudCover filter.
|
234
|
+
#
|
201
235
|
# @!attribute [rw] lower_bound
|
236
|
+
# Lower bound for EoCloudCover.
|
202
237
|
# @return [Float]
|
203
238
|
#
|
204
239
|
# @!attribute [rw] upper_bound
|
240
|
+
# Upper bound for EoCloudCover.
|
205
241
|
# @return [Float]
|
206
242
|
#
|
207
243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EoCloudCoverInput AWS API Documentation
|
@@ -213,31 +249,19 @@ module Aws::SageMakerGeospatial
|
|
213
249
|
include Aws::Structure
|
214
250
|
end
|
215
251
|
|
216
|
-
# @note EojDataSourceConfigInput is a union - when making an API calls you must set exactly one of the members.
|
217
|
-
#
|
218
|
-
# @note EojDataSourceConfigInput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EojDataSourceConfigInput corresponding to the set member.
|
219
|
-
#
|
220
|
-
# @!attribute [rw] s3_data
|
221
|
-
# @return [Types::S3DataInput]
|
222
|
-
#
|
223
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EojDataSourceConfigInput AWS API Documentation
|
224
|
-
#
|
225
|
-
class EojDataSourceConfigInput < Struct.new(
|
226
|
-
:s3_data,
|
227
|
-
:unknown)
|
228
|
-
SENSITIVE = []
|
229
|
-
include Aws::Structure
|
230
|
-
include Aws::Structure::Union
|
231
|
-
|
232
|
-
class S3Data < EojDataSourceConfigInput; end
|
233
|
-
class Unknown < EojDataSourceConfigInput; end
|
234
|
-
end
|
235
|
-
|
236
252
|
# @!attribute [rw] arn
|
237
253
|
# The input Amazon Resource Name (ARN) of the Earth Observation job
|
238
254
|
# being exported.
|
239
255
|
# @return [String]
|
240
256
|
#
|
257
|
+
# @!attribute [rw] client_token
|
258
|
+
# A unique token that guarantees that the call to this API is
|
259
|
+
# idempotent.
|
260
|
+
#
|
261
|
+
# **A suitable default value is auto-generated.** You should normally
|
262
|
+
# not need to pass this option.
|
263
|
+
# @return [String]
|
264
|
+
#
|
241
265
|
# @!attribute [rw] execution_role_arn
|
242
266
|
# The Amazon Resource Name (ARN) of the IAM role that you specified
|
243
267
|
# for the job.
|
@@ -256,6 +280,7 @@ module Aws::SageMakerGeospatial
|
|
256
280
|
#
|
257
281
|
class ExportEarthObservationJobInput < Struct.new(
|
258
282
|
:arn,
|
283
|
+
:client_token,
|
259
284
|
:execution_role_arn,
|
260
285
|
:export_source_images,
|
261
286
|
:output_config)
|
@@ -308,9 +333,13 @@ module Aws::SageMakerGeospatial
|
|
308
333
|
# GetEarthObservationJob.
|
309
334
|
#
|
310
335
|
# @!attribute [rw] export_results
|
336
|
+
# The structure for returning the export error details while exporting
|
337
|
+
# results of an Earth Observation job.
|
311
338
|
# @return [Types::ExportErrorDetailsOutput]
|
312
339
|
#
|
313
340
|
# @!attribute [rw] export_source_images
|
341
|
+
# The structure for returning the export error details while exporting
|
342
|
+
# the source images of an Earth Observation job.
|
314
343
|
# @return [Types::ExportErrorDetailsOutput]
|
315
344
|
#
|
316
345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportErrorDetails AWS API Documentation
|
@@ -322,10 +351,16 @@ module Aws::SageMakerGeospatial
|
|
322
351
|
include Aws::Structure
|
323
352
|
end
|
324
353
|
|
354
|
+
# The structure representing the errors in an export EarthObservationJob
|
355
|
+
# operation.
|
356
|
+
#
|
325
357
|
# @!attribute [rw] message
|
358
|
+
# A detailed message describing the error in an export
|
359
|
+
# EarthObservationJob operation.
|
326
360
|
# @return [String]
|
327
361
|
#
|
328
362
|
# @!attribute [rw] type
|
363
|
+
# The type of error in an export EarthObservationJob operation.
|
329
364
|
# @return [String]
|
330
365
|
#
|
331
366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportErrorDetailsOutput AWS API Documentation
|
@@ -337,9 +372,11 @@ module Aws::SageMakerGeospatial
|
|
337
372
|
include Aws::Structure
|
338
373
|
end
|
339
374
|
|
375
|
+
# The structure containing the Amazon S3 path to export the Earth
|
376
|
+
# Observation job output.
|
377
|
+
#
|
340
378
|
# @!attribute [rw] kms_key_id
|
341
|
-
# The
|
342
|
-
# encryption.
|
379
|
+
# The Key Management Service key ID for server-side encryption.
|
343
380
|
# @return [String]
|
344
381
|
#
|
345
382
|
# @!attribute [rw] s3_uri
|
@@ -359,6 +396,14 @@ module Aws::SageMakerGeospatial
|
|
359
396
|
# The Amazon Resource Name (ARN) of the Vector Enrichment job.
|
360
397
|
# @return [String]
|
361
398
|
#
|
399
|
+
# @!attribute [rw] client_token
|
400
|
+
# A unique token that guarantees that the call to this API is
|
401
|
+
# idempotent.
|
402
|
+
#
|
403
|
+
# **A suitable default value is auto-generated.** You should normally
|
404
|
+
# not need to pass this option.
|
405
|
+
# @return [String]
|
406
|
+
#
|
362
407
|
# @!attribute [rw] execution_role_arn
|
363
408
|
# The Amazon Resource Name (ARN) of the IAM rolewith permission to
|
364
409
|
# upload to the location in OutputConfig.
|
@@ -373,6 +418,7 @@ module Aws::SageMakerGeospatial
|
|
373
418
|
#
|
374
419
|
class ExportVectorEnrichmentJobInput < Struct.new(
|
375
420
|
:arn,
|
421
|
+
:client_token,
|
376
422
|
:execution_role_arn,
|
377
423
|
:output_config)
|
378
424
|
SENSITIVE = []
|
@@ -417,6 +463,8 @@ module Aws::SageMakerGeospatial
|
|
417
463
|
# An object containing information about the output file.
|
418
464
|
#
|
419
465
|
# @!attribute [rw] s3_data
|
466
|
+
# The input structure for Amazon S3 data; representing the Amazon S3
|
467
|
+
# location of the input data objects.
|
420
468
|
# @return [Types::VectorEnrichmentJobS3Data]
|
421
469
|
#
|
422
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportVectorEnrichmentJobOutputConfig AWS API Documentation
|
@@ -476,10 +524,15 @@ module Aws::SageMakerGeospatial
|
|
476
524
|
include Aws::Structure
|
477
525
|
end
|
478
526
|
|
527
|
+
# The structure representing a Geometry in terms of Type and Coordinates
|
528
|
+
# as per GeoJson spec.
|
529
|
+
#
|
479
530
|
# @!attribute [rw] coordinates
|
531
|
+
# The coordinates of the GeoJson Geometry.
|
480
532
|
# @return [Array<Array<Array<Float>>>]
|
481
533
|
#
|
482
534
|
# @!attribute [rw] type
|
535
|
+
# GeoJson Geometry types like Polygon and MultiPolygon.
|
483
536
|
# @return [String]
|
484
537
|
#
|
485
538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Geometry AWS API Documentation
|
@@ -541,8 +594,7 @@ module Aws::SageMakerGeospatial
|
|
541
594
|
# @return [Types::JobConfigInput]
|
542
595
|
#
|
543
596
|
# @!attribute [rw] kms_key_id
|
544
|
-
# The
|
545
|
-
# encryption.
|
597
|
+
# The Key Management Service key ID for server-side encryption.
|
546
598
|
# @return [String]
|
547
599
|
#
|
548
600
|
# @!attribute [rw] name
|
@@ -550,6 +602,7 @@ module Aws::SageMakerGeospatial
|
|
550
602
|
# @return [String]
|
551
603
|
#
|
552
604
|
# @!attribute [rw] output_bands
|
605
|
+
# Bands available in the output of an operation.
|
553
606
|
# @return [Array<Types::OutputBand>]
|
554
607
|
#
|
555
608
|
# @!attribute [rw] status
|
@@ -606,6 +659,7 @@ module Aws::SageMakerGeospatial
|
|
606
659
|
# @return [String]
|
607
660
|
#
|
608
661
|
# @!attribute [rw] image_source_bands
|
662
|
+
# The list of image source bands in the raster data collection.
|
609
663
|
# @return [Array<String>]
|
610
664
|
#
|
611
665
|
# @!attribute [rw] name
|
@@ -643,6 +697,10 @@ module Aws::SageMakerGeospatial
|
|
643
697
|
# The Amazon Resource Name (ARN) of the tile operation.
|
644
698
|
# @return [String]
|
645
699
|
#
|
700
|
+
# @!attribute [rw] execution_role_arn
|
701
|
+
# The Amazon Resource Name (ARN) of the IAM role that you specify.
|
702
|
+
# @return [String]
|
703
|
+
#
|
646
704
|
# @!attribute [rw] image_assets
|
647
705
|
# The particular assets or bands to tile.
|
648
706
|
# @return [Array<String>]
|
@@ -689,6 +747,7 @@ module Aws::SageMakerGeospatial
|
|
689
747
|
#
|
690
748
|
class GetTileInput < Struct.new(
|
691
749
|
:arn,
|
750
|
+
:execution_role_arn,
|
692
751
|
:image_assets,
|
693
752
|
:image_mask,
|
694
753
|
:output_data_type,
|
@@ -766,8 +825,7 @@ module Aws::SageMakerGeospatial
|
|
766
825
|
# @return [Types::VectorEnrichmentJobConfig]
|
767
826
|
#
|
768
827
|
# @!attribute [rw] kms_key_id
|
769
|
-
# The
|
770
|
-
# encryption.
|
828
|
+
# The Key Management Service key ID for server-side encryption.
|
771
829
|
# @return [String]
|
772
830
|
#
|
773
831
|
# @!attribute [rw] name
|
@@ -809,22 +867,20 @@ module Aws::SageMakerGeospatial
|
|
809
867
|
|
810
868
|
# Input configuration information.
|
811
869
|
#
|
812
|
-
# @!attribute [rw] data_source_config
|
813
|
-
# The location of the input data.>
|
814
|
-
# @return [Types::EojDataSourceConfigInput]
|
815
|
-
#
|
816
870
|
# @!attribute [rw] previous_earth_observation_job_arn
|
817
871
|
# The Amazon Resource Name (ARN) of the previous Earth Observation
|
818
872
|
# job.
|
819
873
|
# @return [String]
|
820
874
|
#
|
821
875
|
# @!attribute [rw] raster_data_collection_query
|
876
|
+
# The structure representing the RasterDataCollection Query consisting
|
877
|
+
# of the Area of Interest, RasterDataCollectionArn,TimeRange and
|
878
|
+
# Property Filters.
|
822
879
|
# @return [Types::RasterDataCollectionQueryInput]
|
823
880
|
#
|
824
881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/InputConfigInput AWS API Documentation
|
825
882
|
#
|
826
883
|
class InputConfigInput < Struct.new(
|
827
|
-
:data_source_config,
|
828
884
|
:previous_earth_observation_job_arn,
|
829
885
|
:raster_data_collection_query)
|
830
886
|
SENSITIVE = []
|
@@ -833,22 +889,20 @@ module Aws::SageMakerGeospatial
|
|
833
889
|
|
834
890
|
# The InputConfig for an EarthObservationJob response.
|
835
891
|
#
|
836
|
-
# @!attribute [rw] data_source_config
|
837
|
-
# The location of the input data.
|
838
|
-
# @return [Types::EojDataSourceConfigInput]
|
839
|
-
#
|
840
892
|
# @!attribute [rw] previous_earth_observation_job_arn
|
841
893
|
# The Amazon Resource Name (ARN) of the previous Earth Observation
|
842
894
|
# job.
|
843
895
|
# @return [String]
|
844
896
|
#
|
845
897
|
# @!attribute [rw] raster_data_collection_query
|
898
|
+
# The structure representing the RasterDataCollection Query consisting
|
899
|
+
# of the Area of Interest, RasterDataCollectionArn,
|
900
|
+
# RasterDataCollectionName, TimeRange, and Property Filters.
|
846
901
|
# @return [Types::RasterDataCollectionQueryOutput]
|
847
902
|
#
|
848
903
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/InputConfigOutput AWS API Documentation
|
849
904
|
#
|
850
905
|
class InputConfigOutput < Struct.new(
|
851
|
-
:data_source_config,
|
852
906
|
:previous_earth_observation_job_arn,
|
853
907
|
:raster_data_collection_query)
|
854
908
|
SENSITIVE = []
|
@@ -873,16 +927,20 @@ module Aws::SageMakerGeospatial
|
|
873
927
|
include Aws::Structure
|
874
928
|
end
|
875
929
|
|
876
|
-
#
|
930
|
+
# The structure representing the items in the response for
|
877
931
|
# SearchRasterDataCollection.
|
878
932
|
#
|
879
933
|
# @!attribute [rw] assets
|
934
|
+
# This is a dictionary of Asset Objects data associated with the Item
|
935
|
+
# that can be downloaded or streamed, each with a unique key.
|
880
936
|
# @return [Hash<String,Types::AssetValue>]
|
881
937
|
#
|
882
938
|
# @!attribute [rw] date_time
|
939
|
+
# The searchable date and time of the item, in UTC.
|
883
940
|
# @return [Time]
|
884
941
|
#
|
885
942
|
# @!attribute [rw] geometry
|
943
|
+
# The item Geometry in GeoJson format.
|
886
944
|
# @return [Types::Geometry]
|
887
945
|
#
|
888
946
|
# @!attribute [rw] id
|
@@ -890,6 +948,7 @@ module Aws::SageMakerGeospatial
|
|
890
948
|
# @return [String]
|
891
949
|
#
|
892
950
|
# @!attribute [rw] properties
|
951
|
+
# This field contains additional properties of the item.
|
893
952
|
# @return [Types::Properties]
|
894
953
|
#
|
895
954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ItemSource AWS API Documentation
|
@@ -911,6 +970,8 @@ module Aws::SageMakerGeospatial
|
|
911
970
|
# @note JobConfigInput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobConfigInput corresponding to the set member.
|
912
971
|
#
|
913
972
|
# @!attribute [rw] band_math_config
|
973
|
+
# An object containing information about the job configuration for
|
974
|
+
# BandMath.
|
914
975
|
# @return [Types::BandMathConfigInput]
|
915
976
|
#
|
916
977
|
# @!attribute [rw] cloud_masking_config
|
@@ -939,6 +1000,8 @@ module Aws::SageMakerGeospatial
|
|
939
1000
|
# @return [Types::ResamplingConfigInput]
|
940
1001
|
#
|
941
1002
|
# @!attribute [rw] stack_config
|
1003
|
+
# An object containing information about the job configuration for a
|
1004
|
+
# Stacking Earth Observation job.
|
942
1005
|
# @return [Types::StackConfigInput]
|
943
1006
|
#
|
944
1007
|
# @!attribute [rw] temporal_statistics_config
|
@@ -980,16 +1043,27 @@ module Aws::SageMakerGeospatial
|
|
980
1043
|
class Unknown < JobConfigInput; end
|
981
1044
|
end
|
982
1045
|
|
1046
|
+
# The input structure for Land Cover Operation type.
|
1047
|
+
#
|
983
1048
|
# @api private
|
984
1049
|
#
|
985
1050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/LandCoverSegmentationConfigInput AWS API Documentation
|
986
1051
|
#
|
987
1052
|
class LandCoverSegmentationConfigInput < Aws::EmptyStructure; end
|
988
1053
|
|
1054
|
+
# The structure representing Land Cloud Cover property for Landsat data
|
1055
|
+
# collection.
|
1056
|
+
#
|
989
1057
|
# @!attribute [rw] lower_bound
|
1058
|
+
# The minimum value for Land Cloud Cover property filter. This will
|
1059
|
+
# filter items having Land Cloud Cover greater than or equal to this
|
1060
|
+
# value.
|
990
1061
|
# @return [Float]
|
991
1062
|
#
|
992
1063
|
# @!attribute [rw] upper_bound
|
1064
|
+
# The maximum value for Land Cloud Cover property filter. This will
|
1065
|
+
# filter items having Land Cloud Cover less than or equal to this
|
1066
|
+
# value.
|
993
1067
|
# @return [Float]
|
994
1068
|
#
|
995
1069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/LandsatCloudCoverLandInput AWS API Documentation
|
@@ -1073,6 +1147,7 @@ module Aws::SageMakerGeospatial
|
|
1073
1147
|
# @return [String]
|
1074
1148
|
#
|
1075
1149
|
# @!attribute [rw] operation_type
|
1150
|
+
# The operation type for an Earth Observation job.
|
1076
1151
|
# @return [String]
|
1077
1152
|
#
|
1078
1153
|
# @!attribute [rw] status
|
@@ -1254,7 +1329,12 @@ module Aws::SageMakerGeospatial
|
|
1254
1329
|
include Aws::Structure
|
1255
1330
|
end
|
1256
1331
|
|
1332
|
+
# The input structure for Map Matching operation type.
|
1333
|
+
#
|
1257
1334
|
# @!attribute [rw] id_attribute_name
|
1335
|
+
# The field name for the data that describes the identifier
|
1336
|
+
# representing a collection of GPS points belonging to an individual
|
1337
|
+
# trace.
|
1258
1338
|
# @return [String]
|
1259
1339
|
#
|
1260
1340
|
# @!attribute [rw] timestamp_attribute_name
|
@@ -1280,6 +1360,13 @@ module Aws::SageMakerGeospatial
|
|
1280
1360
|
include Aws::Structure
|
1281
1361
|
end
|
1282
1362
|
|
1363
|
+
# The structure representing Polygon Geometry based on the [GeoJson
|
1364
|
+
# spec][1].
|
1365
|
+
#
|
1366
|
+
#
|
1367
|
+
#
|
1368
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1369
|
+
#
|
1283
1370
|
# @!attribute [rw] coordinates
|
1284
1371
|
# The coordinates of the multipolygon geometry.
|
1285
1372
|
# @return [Array<Array<Array<Array<Float>>>>]
|
@@ -1292,7 +1379,11 @@ module Aws::SageMakerGeospatial
|
|
1292
1379
|
include Aws::Structure
|
1293
1380
|
end
|
1294
1381
|
|
1382
|
+
# Represents an arithmetic operation to compute spectral index.
|
1383
|
+
#
|
1295
1384
|
# @!attribute [rw] equation
|
1385
|
+
# Textual representation of the math operation; Equation used to
|
1386
|
+
# compute the spectral index.
|
1296
1387
|
# @return [String]
|
1297
1388
|
#
|
1298
1389
|
# @!attribute [rw] name
|
@@ -1348,7 +1439,12 @@ module Aws::SageMakerGeospatial
|
|
1348
1439
|
include Aws::Structure
|
1349
1440
|
end
|
1350
1441
|
|
1442
|
+
# OutputResolution Configuration indicating the target resolution for
|
1443
|
+
# the output of Resampling operation.
|
1444
|
+
#
|
1351
1445
|
# @!attribute [rw] user_defined
|
1446
|
+
# User Defined Resolution for the output of Resampling operation
|
1447
|
+
# defined by value and unit.
|
1352
1448
|
# @return [Types::UserDefined]
|
1353
1449
|
#
|
1354
1450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/OutputResolutionResamplingInput AWS API Documentation
|
@@ -1359,10 +1455,18 @@ module Aws::SageMakerGeospatial
|
|
1359
1455
|
include Aws::Structure
|
1360
1456
|
end
|
1361
1457
|
|
1458
|
+
# The input structure representing Output Resolution for Stacking
|
1459
|
+
# Operation.
|
1460
|
+
#
|
1362
1461
|
# @!attribute [rw] predefined
|
1462
|
+
# A string value representing Predefined Output Resolution for a
|
1463
|
+
# stacking operation. Allowed values are `HIGHEST`, `LOWEST`, and
|
1464
|
+
# `AVERAGE`.
|
1363
1465
|
# @return [String]
|
1364
1466
|
#
|
1365
1467
|
# @!attribute [rw] user_defined
|
1468
|
+
# The structure representing User Output Resolution for a Stacking
|
1469
|
+
# operation defined as a value and unit.
|
1366
1470
|
# @return [Types::UserDefined]
|
1367
1471
|
#
|
1368
1472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/OutputResolutionStackInput AWS API Documentation
|
@@ -1374,7 +1478,13 @@ module Aws::SageMakerGeospatial
|
|
1374
1478
|
include Aws::Structure
|
1375
1479
|
end
|
1376
1480
|
|
1481
|
+
# The input structure for specifying Platform. Platform refers to the
|
1482
|
+
# unique name of the specific platform the instrument is attached to.
|
1483
|
+
# For satellites it is the name of the satellite, eg. landsat-8
|
1484
|
+
# (Landsat-8), sentinel-2a.
|
1485
|
+
#
|
1377
1486
|
# @!attribute [rw] comparison_operator
|
1487
|
+
# The ComparisonOperator to use with PlatformInput.
|
1378
1488
|
# @return [String]
|
1379
1489
|
#
|
1380
1490
|
# @!attribute [rw] value
|
@@ -1390,7 +1500,19 @@ module Aws::SageMakerGeospatial
|
|
1390
1500
|
include Aws::Structure
|
1391
1501
|
end
|
1392
1502
|
|
1503
|
+
# The structure representing Polygon Geometry based on the [GeoJson
|
1504
|
+
# spec][1].
|
1505
|
+
#
|
1506
|
+
#
|
1507
|
+
#
|
1508
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1509
|
+
#
|
1393
1510
|
# @!attribute [rw] coordinates
|
1511
|
+
# Coordinates representing a Polygon based on the [GeoJson spec][1].
|
1512
|
+
#
|
1513
|
+
#
|
1514
|
+
#
|
1515
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1394
1516
|
# @return [Array<Array<Array<Float>>>]
|
1395
1517
|
#
|
1396
1518
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PolygonGeometryInput AWS API Documentation
|
@@ -1401,22 +1523,44 @@ module Aws::SageMakerGeospatial
|
|
1401
1523
|
include Aws::Structure
|
1402
1524
|
end
|
1403
1525
|
|
1526
|
+
# Properties associated with the Item.
|
1527
|
+
#
|
1404
1528
|
# @!attribute [rw] eo_cloud_cover
|
1529
|
+
# Estimate of cloud cover.
|
1405
1530
|
# @return [Float]
|
1406
1531
|
#
|
1407
1532
|
# @!attribute [rw] landsat_cloud_cover_land
|
1533
|
+
# Land cloud cover for Landsat Data Collection.
|
1408
1534
|
# @return [Float]
|
1409
1535
|
#
|
1410
1536
|
# @!attribute [rw] platform
|
1537
|
+
# Platform property. Platform refers to the unique name of the
|
1538
|
+
# specific platform the instrument is attached to. For satellites it
|
1539
|
+
# is the name of the satellite, eg. landsat-8 (Landsat-8),
|
1540
|
+
# sentinel-2a.
|
1411
1541
|
# @return [String]
|
1412
1542
|
#
|
1413
1543
|
# @!attribute [rw] view_off_nadir
|
1544
|
+
# The angle from the sensor between nadir (straight down) and the
|
1545
|
+
# scene center. Measured in degrees (0-90).
|
1414
1546
|
# @return [Float]
|
1415
1547
|
#
|
1416
1548
|
# @!attribute [rw] view_sun_azimuth
|
1549
|
+
# The sun azimuth angle. From the scene center point on the ground,
|
1550
|
+
# this is the angle between truth north and the sun. Measured
|
1551
|
+
# clockwise in degrees (0-360).
|
1417
1552
|
# @return [Float]
|
1418
1553
|
#
|
1419
1554
|
# @!attribute [rw] view_sun_elevation
|
1555
|
+
# The sun elevation angle. The angle from the tangent of the scene
|
1556
|
+
# center point to the sun. Measured from the horizon in degrees
|
1557
|
+
# (-90-90). Negative values indicate the sun is below the horizon,
|
1558
|
+
# e.g. sun elevation of -10° means the data was captured during
|
1559
|
+
# [nautical twilight][1].
|
1560
|
+
#
|
1561
|
+
#
|
1562
|
+
#
|
1563
|
+
# [1]: https://www.timeanddate.com/astronomy/different-types-twilight.html
|
1420
1564
|
# @return [Float]
|
1421
1565
|
#
|
1422
1566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Properties AWS API Documentation
|
@@ -1432,26 +1576,40 @@ module Aws::SageMakerGeospatial
|
|
1432
1576
|
include Aws::Structure
|
1433
1577
|
end
|
1434
1578
|
|
1579
|
+
# Represents a single searchable property to search on.
|
1580
|
+
#
|
1435
1581
|
# @note Property is a union - when making an API calls you must set exactly one of the members.
|
1436
1582
|
#
|
1437
1583
|
# @note Property is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Property corresponding to the set member.
|
1438
1584
|
#
|
1439
1585
|
# @!attribute [rw] eo_cloud_cover
|
1586
|
+
# The structure representing EoCloudCover property filter containing a
|
1587
|
+
# lower bound and upper bound.
|
1440
1588
|
# @return [Types::EoCloudCoverInput]
|
1441
1589
|
#
|
1442
1590
|
# @!attribute [rw] landsat_cloud_cover_land
|
1591
|
+
# The structure representing Land Cloud Cover property filter for
|
1592
|
+
# Landsat collection containing a lower bound and upper bound.
|
1443
1593
|
# @return [Types::LandsatCloudCoverLandInput]
|
1444
1594
|
#
|
1445
1595
|
# @!attribute [rw] platform
|
1596
|
+
# The structure representing Platform property filter consisting of
|
1597
|
+
# value and comparison operator.
|
1446
1598
|
# @return [Types::PlatformInput]
|
1447
1599
|
#
|
1448
1600
|
# @!attribute [rw] view_off_nadir
|
1601
|
+
# The structure representing ViewOffNadir property filter containing a
|
1602
|
+
# lower bound and upper bound.
|
1449
1603
|
# @return [Types::ViewOffNadirInput]
|
1450
1604
|
#
|
1451
1605
|
# @!attribute [rw] view_sun_azimuth
|
1606
|
+
# The structure representing ViewSunAzimuth property filter containing
|
1607
|
+
# a lower bound and upper bound.
|
1452
1608
|
# @return [Types::ViewSunAzimuthInput]
|
1453
1609
|
#
|
1454
1610
|
# @!attribute [rw] view_sun_elevation
|
1611
|
+
# The structure representing ViewSunElevation property filter
|
1612
|
+
# containing a lower bound and upper bound.
|
1455
1613
|
# @return [Types::ViewSunElevationInput]
|
1456
1614
|
#
|
1457
1615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Property AWS API Documentation
|
@@ -1477,7 +1635,11 @@ module Aws::SageMakerGeospatial
|
|
1477
1635
|
class Unknown < Property; end
|
1478
1636
|
end
|
1479
1637
|
|
1638
|
+
# The structure representing a single PropertyFilter.
|
1639
|
+
#
|
1480
1640
|
# @!attribute [rw] property
|
1641
|
+
# Represents a single property to match with when searching a raster
|
1642
|
+
# data collection.
|
1481
1643
|
# @return [Types::Property]
|
1482
1644
|
#
|
1483
1645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PropertyFilter AWS API Documentation
|
@@ -1488,10 +1650,14 @@ module Aws::SageMakerGeospatial
|
|
1488
1650
|
include Aws::Structure
|
1489
1651
|
end
|
1490
1652
|
|
1653
|
+
# A list of PropertyFilter objects.
|
1654
|
+
#
|
1491
1655
|
# @!attribute [rw] logical_operator
|
1656
|
+
# The Logical Operator used to combine the Property Filters.
|
1492
1657
|
# @return [String]
|
1493
1658
|
#
|
1494
1659
|
# @!attribute [rw] properties
|
1660
|
+
# A list of Property Filters.
|
1495
1661
|
# @return [Array<Types::PropertyFilter>]
|
1496
1662
|
#
|
1497
1663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PropertyFilters AWS API Documentation
|
@@ -1523,6 +1689,7 @@ module Aws::SageMakerGeospatial
|
|
1523
1689
|
# @return [String]
|
1524
1690
|
#
|
1525
1691
|
# @!attribute [rw] supported_filters
|
1692
|
+
# The list of filters supported by the raster data collection.
|
1526
1693
|
# @return [Array<Types::Filter>]
|
1527
1694
|
#
|
1528
1695
|
# @!attribute [rw] tags
|
@@ -1547,11 +1714,16 @@ module Aws::SageMakerGeospatial
|
|
1547
1714
|
include Aws::Structure
|
1548
1715
|
end
|
1549
1716
|
|
1717
|
+
# The input structure for Raster Data Collection Query containing the
|
1718
|
+
# Area of Interest, TimeRange Filters, and Property Filters.
|
1719
|
+
#
|
1550
1720
|
# @!attribute [rw] area_of_interest
|
1551
1721
|
# The area of interest being queried for the raster data collection.
|
1552
1722
|
# @return [Types::AreaOfInterest]
|
1553
1723
|
#
|
1554
1724
|
# @!attribute [rw] property_filters
|
1725
|
+
# The list of Property filters used in the Raster Data Collection
|
1726
|
+
# Query.
|
1555
1727
|
# @return [Types::PropertyFilters]
|
1556
1728
|
#
|
1557
1729
|
# @!attribute [rw] raster_data_collection_arn
|
@@ -1559,6 +1731,7 @@ module Aws::SageMakerGeospatial
|
|
1559
1731
|
# @return [String]
|
1560
1732
|
#
|
1561
1733
|
# @!attribute [rw] time_range_filter
|
1734
|
+
# The TimeRange Filter used in the RasterDataCollection Query.
|
1562
1735
|
# @return [Types::TimeRangeFilterInput]
|
1563
1736
|
#
|
1564
1737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryInput AWS API Documentation
|
@@ -1572,13 +1745,20 @@ module Aws::SageMakerGeospatial
|
|
1572
1745
|
include Aws::Structure
|
1573
1746
|
end
|
1574
1747
|
|
1748
|
+
# The output structure contains the Raster Data Collection Query input
|
1749
|
+
# along with some additional metadata.
|
1750
|
+
#
|
1575
1751
|
# @!attribute [rw] area_of_interest
|
1752
|
+
# The Area of Interest used in the search.
|
1576
1753
|
# @return [Types::AreaOfInterest]
|
1577
1754
|
#
|
1578
1755
|
# @!attribute [rw] property_filters
|
1756
|
+
# Property filters used in the search.
|
1579
1757
|
# @return [Types::PropertyFilters]
|
1580
1758
|
#
|
1581
1759
|
# @!attribute [rw] raster_data_collection_arn
|
1760
|
+
# The ARN of the Raster Data Collection against which the search is
|
1761
|
+
# done.
|
1582
1762
|
# @return [String]
|
1583
1763
|
#
|
1584
1764
|
# @!attribute [rw] raster_data_collection_name
|
@@ -1586,7 +1766,8 @@ module Aws::SageMakerGeospatial
|
|
1586
1766
|
# @return [String]
|
1587
1767
|
#
|
1588
1768
|
# @!attribute [rw] time_range_filter
|
1589
|
-
#
|
1769
|
+
# The TimeRange filter used in the search.
|
1770
|
+
# @return [Types::TimeRangeFilterOutput]
|
1590
1771
|
#
|
1591
1772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryOutput AWS API Documentation
|
1592
1773
|
#
|
@@ -1604,15 +1785,19 @@ module Aws::SageMakerGeospatial
|
|
1604
1785
|
# Time Range filter and Property filters.
|
1605
1786
|
#
|
1606
1787
|
# @!attribute [rw] area_of_interest
|
1788
|
+
# The Area of interest to be used in the search query.
|
1607
1789
|
# @return [Types::AreaOfInterest]
|
1608
1790
|
#
|
1609
1791
|
# @!attribute [rw] band_filter
|
1792
|
+
# The list of Bands to be displayed in the result for each item.
|
1610
1793
|
# @return [Array<String>]
|
1611
1794
|
#
|
1612
1795
|
# @!attribute [rw] property_filters
|
1796
|
+
# The Property Filters used in the search query.
|
1613
1797
|
# @return [Types::PropertyFilters]
|
1614
1798
|
#
|
1615
1799
|
# @!attribute [rw] time_range_filter
|
1800
|
+
# The TimeRange Filter used in the search query.
|
1616
1801
|
# @return [Types::TimeRangeFilterInput]
|
1617
1802
|
#
|
1618
1803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryWithBandFilterInput AWS API Documentation
|
@@ -1626,14 +1811,20 @@ module Aws::SageMakerGeospatial
|
|
1626
1811
|
include Aws::Structure
|
1627
1812
|
end
|
1628
1813
|
|
1814
|
+
# The structure representing input for resampling operation.
|
1815
|
+
#
|
1629
1816
|
# @!attribute [rw] algorithm_name
|
1630
1817
|
# The name of the algorithm used for resampling.
|
1631
1818
|
# @return [String]
|
1632
1819
|
#
|
1633
1820
|
# @!attribute [rw] output_resolution
|
1821
|
+
# The structure representing output resolution (in target
|
1822
|
+
# georeferenced units) of the result of resampling operation.
|
1634
1823
|
# @return [Types::OutputResolutionResamplingInput]
|
1635
1824
|
#
|
1636
1825
|
# @!attribute [rw] target_bands
|
1826
|
+
# Bands used in the operation. If no target bands are specified, it
|
1827
|
+
# uses all bands available in the input.
|
1637
1828
|
# @return [Array<String>]
|
1638
1829
|
#
|
1639
1830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ResamplingConfigInput AWS API Documentation
|
@@ -1646,10 +1837,13 @@ module Aws::SageMakerGeospatial
|
|
1646
1837
|
include Aws::Structure
|
1647
1838
|
end
|
1648
1839
|
|
1840
|
+
# The request references a resource which does not exist.
|
1841
|
+
#
|
1649
1842
|
# @!attribute [rw] message
|
1650
1843
|
# @return [String]
|
1651
1844
|
#
|
1652
1845
|
# @!attribute [rw] resource_id
|
1846
|
+
# Identifier of the resource that was not found.
|
1653
1847
|
# @return [String]
|
1654
1848
|
#
|
1655
1849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ResourceNotFoundException AWS API Documentation
|
@@ -1661,10 +1855,16 @@ module Aws::SageMakerGeospatial
|
|
1661
1855
|
include Aws::Structure
|
1662
1856
|
end
|
1663
1857
|
|
1858
|
+
# The input structure for Reverse Geocoding operation type.
|
1859
|
+
#
|
1664
1860
|
# @!attribute [rw] x_attribute_name
|
1861
|
+
# The field name for the data that describes x-axis coordinate, eg.
|
1862
|
+
# longitude of a point.
|
1665
1863
|
# @return [String]
|
1666
1864
|
#
|
1667
1865
|
# @!attribute [rw] y_attribute_name
|
1866
|
+
# The field name for the data that describes y-axis coordinate, eg.
|
1867
|
+
# latitude of a point.
|
1668
1868
|
# @return [String]
|
1669
1869
|
#
|
1670
1870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ReverseGeocodingConfig AWS API Documentation
|
@@ -1676,30 +1876,6 @@ module Aws::SageMakerGeospatial
|
|
1676
1876
|
include Aws::Structure
|
1677
1877
|
end
|
1678
1878
|
|
1679
|
-
# Path to Amazon S3 storage location for input data.
|
1680
|
-
#
|
1681
|
-
# @!attribute [rw] kms_key_id
|
1682
|
-
# The Amazon Key Management Service (KMS) key ID for server-side
|
1683
|
-
# encryption.
|
1684
|
-
# @return [String]
|
1685
|
-
#
|
1686
|
-
# @!attribute [rw] metadata_provider
|
1687
|
-
# @return [String]
|
1688
|
-
#
|
1689
|
-
# @!attribute [rw] s3_uri
|
1690
|
-
# The URL to the Amazon S3 input.
|
1691
|
-
# @return [String]
|
1692
|
-
#
|
1693
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/S3DataInput AWS API Documentation
|
1694
|
-
#
|
1695
|
-
class S3DataInput < Struct.new(
|
1696
|
-
:kms_key_id,
|
1697
|
-
:metadata_provider,
|
1698
|
-
:s3_uri)
|
1699
|
-
SENSITIVE = []
|
1700
|
-
include Aws::Structure
|
1701
|
-
end
|
1702
|
-
|
1703
1879
|
# @!attribute [rw] arn
|
1704
1880
|
# The Amazon Resource Name (ARN) of the raster data collection.
|
1705
1881
|
# @return [String]
|
@@ -1710,6 +1886,16 @@ module Aws::SageMakerGeospatial
|
|
1710
1886
|
# @return [String]
|
1711
1887
|
#
|
1712
1888
|
# @!attribute [rw] raster_data_collection_query
|
1889
|
+
# RasterDataCollectionQuery consisting of [AreaOfInterest(AOI)][1],
|
1890
|
+
# [PropertyFilters][2] and [TimeRangeFilterInput][3] used in
|
1891
|
+
# [SearchRasterDataCollection][4].
|
1892
|
+
#
|
1893
|
+
#
|
1894
|
+
#
|
1895
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html
|
1896
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html
|
1897
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html
|
1898
|
+
# [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html
|
1713
1899
|
# @return [Types::RasterDataCollectionQueryWithBandFilterInput]
|
1714
1900
|
#
|
1715
1901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/SearchRasterDataCollectionInput AWS API Documentation
|
@@ -1723,9 +1909,11 @@ module Aws::SageMakerGeospatial
|
|
1723
1909
|
end
|
1724
1910
|
|
1725
1911
|
# @!attribute [rw] approximate_result_count
|
1912
|
+
# Approximate number of results in the response.
|
1726
1913
|
# @return [Integer]
|
1727
1914
|
#
|
1728
1915
|
# @!attribute [rw] items
|
1916
|
+
# List of items matching the Raster DataCollectionQuery.
|
1729
1917
|
# @return [Array<Types::ItemSource>]
|
1730
1918
|
#
|
1731
1919
|
# @!attribute [rw] next_token
|
@@ -1749,6 +1937,7 @@ module Aws::SageMakerGeospatial
|
|
1749
1937
|
# @return [String]
|
1750
1938
|
#
|
1751
1939
|
# @!attribute [rw] resource_id
|
1940
|
+
# Identifier of the resource affected.
|
1752
1941
|
# @return [String]
|
1753
1942
|
#
|
1754
1943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ServiceQuotaExceededException AWS API Documentation
|
@@ -1760,10 +1949,18 @@ module Aws::SageMakerGeospatial
|
|
1760
1949
|
include Aws::Structure
|
1761
1950
|
end
|
1762
1951
|
|
1952
|
+
# The input structure for Stacking Operation.
|
1953
|
+
#
|
1763
1954
|
# @!attribute [rw] output_resolution
|
1955
|
+
# The structure representing output resolution (in target
|
1956
|
+
# georeferenced units) of the result of stacking operation.
|
1764
1957
|
# @return [Types::OutputResolutionStackInput]
|
1765
1958
|
#
|
1766
1959
|
# @!attribute [rw] target_bands
|
1960
|
+
# A list of bands to be stacked in the specified order. When the
|
1961
|
+
# parameter is not provided, all the available bands in the data
|
1962
|
+
# collection are stacked in the alphabetical order of their asset
|
1963
|
+
# names.
|
1767
1964
|
# @return [Array<String>]
|
1768
1965
|
#
|
1769
1966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/StackConfigInput AWS API Documentation
|
@@ -1797,8 +1994,7 @@ module Aws::SageMakerGeospatial
|
|
1797
1994
|
# @return [Types::JobConfigInput]
|
1798
1995
|
#
|
1799
1996
|
# @!attribute [rw] kms_key_id
|
1800
|
-
# The
|
1801
|
-
# encryption.
|
1997
|
+
# The Key Management Service key ID for server-side encryption.
|
1802
1998
|
# @return [String]
|
1803
1999
|
#
|
1804
2000
|
# @!attribute [rw] name
|
@@ -1849,8 +2045,7 @@ module Aws::SageMakerGeospatial
|
|
1849
2045
|
# @return [Types::JobConfigInput]
|
1850
2046
|
#
|
1851
2047
|
# @!attribute [rw] kms_key_id
|
1852
|
-
# The
|
1853
|
-
# encryption.
|
2048
|
+
# The Key Management Service key ID for server-side encryption.
|
1854
2049
|
# @return [String]
|
1855
2050
|
#
|
1856
2051
|
# @!attribute [rw] name
|
@@ -1904,8 +2099,7 @@ module Aws::SageMakerGeospatial
|
|
1904
2099
|
# @return [Types::VectorEnrichmentJobConfig]
|
1905
2100
|
#
|
1906
2101
|
# @!attribute [rw] kms_key_id
|
1907
|
-
# The
|
1908
|
-
# encryption.
|
2102
|
+
# The Key Management Service key ID for server-side encryption.
|
1909
2103
|
# @return [String]
|
1910
2104
|
#
|
1911
2105
|
# @!attribute [rw] name
|
@@ -1957,8 +2151,7 @@ module Aws::SageMakerGeospatial
|
|
1957
2151
|
# @return [Types::VectorEnrichmentJobConfig]
|
1958
2152
|
#
|
1959
2153
|
# @!attribute [rw] kms_key_id
|
1960
|
-
# The
|
1961
|
-
# encryption.
|
2154
|
+
# The Key Management Service key ID for server-side encryption.
|
1962
2155
|
# @return [String]
|
1963
2156
|
#
|
1964
2157
|
# @!attribute [rw] name
|
@@ -2049,13 +2242,21 @@ module Aws::SageMakerGeospatial
|
|
2049
2242
|
#
|
2050
2243
|
class TagResourceResponse < Aws::EmptyStructure; end
|
2051
2244
|
|
2245
|
+
# The structure representing the configuration for Temporal Statistics
|
2246
|
+
# operation.
|
2247
|
+
#
|
2052
2248
|
# @!attribute [rw] group_by
|
2249
|
+
# The input for the temporal statistics grouping by time frequency
|
2250
|
+
# option.
|
2053
2251
|
# @return [String]
|
2054
2252
|
#
|
2055
2253
|
# @!attribute [rw] statistics
|
2254
|
+
# The list of the statistics method options.
|
2056
2255
|
# @return [Array<String>]
|
2057
2256
|
#
|
2058
2257
|
# @!attribute [rw] target_bands
|
2258
|
+
# The list of target band names for the temporal statistic to
|
2259
|
+
# calculate.
|
2059
2260
|
# @return [Array<String>]
|
2060
2261
|
#
|
2061
2262
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/TemporalStatisticsConfigInput AWS API Documentation
|
@@ -2104,6 +2305,25 @@ module Aws::SageMakerGeospatial
|
|
2104
2305
|
include Aws::Structure
|
2105
2306
|
end
|
2106
2307
|
|
2308
|
+
# The output structure of the time range filter.
|
2309
|
+
#
|
2310
|
+
# @!attribute [rw] end_time
|
2311
|
+
# The ending time for the time range filter.
|
2312
|
+
# @return [Time]
|
2313
|
+
#
|
2314
|
+
# @!attribute [rw] start_time
|
2315
|
+
# The starting time for the time range filter.
|
2316
|
+
# @return [Time]
|
2317
|
+
#
|
2318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/TimeRangeFilterOutput AWS API Documentation
|
2319
|
+
#
|
2320
|
+
class TimeRangeFilterOutput < Struct.new(
|
2321
|
+
:end_time,
|
2322
|
+
:start_time)
|
2323
|
+
SENSITIVE = []
|
2324
|
+
include Aws::Structure
|
2325
|
+
end
|
2326
|
+
|
2107
2327
|
# @!attribute [rw] resource_arn
|
2108
2328
|
# The Amazon Resource Name (ARN) of the resource you want to untag.
|
2109
2329
|
# @return [String]
|
@@ -2125,10 +2345,15 @@ module Aws::SageMakerGeospatial
|
|
2125
2345
|
#
|
2126
2346
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2127
2347
|
|
2348
|
+
# The output resolution (in target georeferenced units) of the result of
|
2349
|
+
# the operation
|
2350
|
+
#
|
2128
2351
|
# @!attribute [rw] unit
|
2352
|
+
# The units for output resolution of the result.
|
2129
2353
|
# @return [String]
|
2130
2354
|
#
|
2131
2355
|
# @!attribute [rw] value
|
2356
|
+
# The value for output resolution of the result.
|
2132
2357
|
# @return [Float]
|
2133
2358
|
#
|
2134
2359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/UserDefined AWS API Documentation
|
@@ -2166,9 +2391,11 @@ module Aws::SageMakerGeospatial
|
|
2166
2391
|
# @note VectorEnrichmentJobConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VectorEnrichmentJobConfig corresponding to the set member.
|
2167
2392
|
#
|
2168
2393
|
# @!attribute [rw] map_matching_config
|
2394
|
+
# The input structure for Map Matching operation type.
|
2169
2395
|
# @return [Types::MapMatchingConfig]
|
2170
2396
|
#
|
2171
2397
|
# @!attribute [rw] reverse_geocoding_config
|
2398
|
+
# The input structure for Reverse Geocoding operation type.
|
2172
2399
|
# @return [Types::ReverseGeocodingConfig]
|
2173
2400
|
#
|
2174
2401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobConfig AWS API Documentation
|
@@ -2186,11 +2413,16 @@ module Aws::SageMakerGeospatial
|
|
2186
2413
|
class Unknown < VectorEnrichmentJobConfig; end
|
2187
2414
|
end
|
2188
2415
|
|
2416
|
+
# The input structure for the data source that represents the storage
|
2417
|
+
# type of the input data objects.
|
2418
|
+
#
|
2189
2419
|
# @note VectorEnrichmentJobDataSourceConfigInput is a union - when making an API calls you must set exactly one of the members.
|
2190
2420
|
#
|
2191
2421
|
# @note VectorEnrichmentJobDataSourceConfigInput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VectorEnrichmentJobDataSourceConfigInput corresponding to the set member.
|
2192
2422
|
#
|
2193
2423
|
# @!attribute [rw] s3_data
|
2424
|
+
# The input structure for the Amazon S3 data that represents the
|
2425
|
+
# Amazon S3 location of the input data objects.
|
2194
2426
|
# @return [Types::VectorEnrichmentJobS3Data]
|
2195
2427
|
#
|
2196
2428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobDataSourceConfigInput AWS API Documentation
|
@@ -2236,6 +2468,8 @@ module Aws::SageMakerGeospatial
|
|
2236
2468
|
# @return [String]
|
2237
2469
|
#
|
2238
2470
|
# @!attribute [rw] type
|
2471
|
+
# The output error details for an Export operation on a Vector
|
2472
|
+
# Enrichment job.
|
2239
2473
|
# @return [String]
|
2240
2474
|
#
|
2241
2475
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobExportErrorDetails AWS API Documentation
|
@@ -2250,9 +2484,12 @@ module Aws::SageMakerGeospatial
|
|
2250
2484
|
# The input structure for the InputConfig in a VectorEnrichmentJob.
|
2251
2485
|
#
|
2252
2486
|
# @!attribute [rw] data_source_config
|
2487
|
+
# The input structure for the data source that represents the storage
|
2488
|
+
# type of the input data objects.
|
2253
2489
|
# @return [Types::VectorEnrichmentJobDataSourceConfigInput]
|
2254
2490
|
#
|
2255
2491
|
# @!attribute [rw] document_type
|
2492
|
+
# The input structure that defines the data source file type.
|
2256
2493
|
# @return [String]
|
2257
2494
|
#
|
2258
2495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobInputConfig AWS API Documentation
|
@@ -2267,8 +2504,7 @@ module Aws::SageMakerGeospatial
|
|
2267
2504
|
# The Amazon S3 data for the Vector Enrichment job.
|
2268
2505
|
#
|
2269
2506
|
# @!attribute [rw] kms_key_id
|
2270
|
-
# The
|
2271
|
-
# encryption.
|
2507
|
+
# The Key Management Service key ID for server-side encryption.
|
2272
2508
|
# @return [String]
|
2273
2509
|
#
|
2274
2510
|
# @!attribute [rw] s3_uri
|
@@ -2284,10 +2520,18 @@ module Aws::SageMakerGeospatial
|
|
2284
2520
|
include Aws::Structure
|
2285
2521
|
end
|
2286
2522
|
|
2523
|
+
# The input structure for specifying ViewOffNadir property filter.
|
2524
|
+
# ViewOffNadir refers to the angle from the sensor between nadir
|
2525
|
+
# (straight down) and the scene center. Measured in degrees (0-90).
|
2526
|
+
#
|
2287
2527
|
# @!attribute [rw] lower_bound
|
2528
|
+
# The minimum value for ViewOffNadir property filter. This filters
|
2529
|
+
# items having ViewOffNadir greater than or equal to this value.
|
2288
2530
|
# @return [Float]
|
2289
2531
|
#
|
2290
2532
|
# @!attribute [rw] upper_bound
|
2533
|
+
# The maximum value for ViewOffNadir property filter. This filters
|
2534
|
+
# items having ViewOffNadir lesser than or equal to this value.
|
2291
2535
|
# @return [Float]
|
2292
2536
|
#
|
2293
2537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ViewOffNadirInput AWS API Documentation
|
@@ -2299,10 +2543,19 @@ module Aws::SageMakerGeospatial
|
|
2299
2543
|
include Aws::Structure
|
2300
2544
|
end
|
2301
2545
|
|
2546
|
+
# The input structure for specifying ViewSunAzimuth property filter.
|
2547
|
+
# ViewSunAzimuth refers to the Sun azimuth angle. From the scene center
|
2548
|
+
# point on the ground, this is the angle between truth north and the
|
2549
|
+
# sun. Measured clockwise in degrees (0-360).
|
2550
|
+
#
|
2302
2551
|
# @!attribute [rw] lower_bound
|
2552
|
+
# The minimum value for ViewSunAzimuth property filter. This filters
|
2553
|
+
# items having ViewSunAzimuth greater than or equal to this value.
|
2303
2554
|
# @return [Float]
|
2304
2555
|
#
|
2305
2556
|
# @!attribute [rw] upper_bound
|
2557
|
+
# The maximum value for ViewSunAzimuth property filter. This filters
|
2558
|
+
# items having ViewSunAzimuth lesser than or equal to this value.
|
2306
2559
|
# @return [Float]
|
2307
2560
|
#
|
2308
2561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ViewSunAzimuthInput AWS API Documentation
|
@@ -2314,6 +2567,9 @@ module Aws::SageMakerGeospatial
|
|
2314
2567
|
include Aws::Structure
|
2315
2568
|
end
|
2316
2569
|
|
2570
|
+
# The input structure for specifying ViewSunElevation angle property
|
2571
|
+
# filter.
|
2572
|
+
#
|
2317
2573
|
# @!attribute [rw] lower_bound
|
2318
2574
|
# The lower bound to view the sun elevation.
|
2319
2575
|
# @return [Float]
|
@@ -2331,13 +2587,47 @@ module Aws::SageMakerGeospatial
|
|
2331
2587
|
include Aws::Structure
|
2332
2588
|
end
|
2333
2589
|
|
2590
|
+
# The structure representing input configuration of ZonalStatistics
|
2591
|
+
# operation.
|
2592
|
+
#
|
2334
2593
|
# @!attribute [rw] statistics
|
2594
|
+
# List of zonal statistics to compute.
|
2335
2595
|
# @return [Array<String>]
|
2336
2596
|
#
|
2337
2597
|
# @!attribute [rw] target_bands
|
2598
|
+
# Bands used in the operation. If no target bands are specified, it
|
2599
|
+
# uses all bands available input.
|
2338
2600
|
# @return [Array<String>]
|
2339
2601
|
#
|
2340
2602
|
# @!attribute [rw] zone_s3_path
|
2603
|
+
# The Amazon S3 path pointing to the GeoJSON containing the polygonal
|
2604
|
+
# zones.
|
2605
|
+
# @return [String]
|
2606
|
+
#
|
2607
|
+
# @!attribute [rw] zone_s3_path_kms_key_id
|
2608
|
+
# The Amazon Resource Name (ARN) or an ID of a Amazon Web Services Key
|
2609
|
+
# Management Service (Amazon Web Services KMS) key that Amazon
|
2610
|
+
# SageMaker uses to decrypt your output artifacts with Amazon S3
|
2611
|
+
# server-side encryption. The SageMaker execution role must have
|
2612
|
+
# `kms:GenerateDataKey` permission.
|
2613
|
+
#
|
2614
|
+
# The `KmsKeyId` can be any of the following formats:
|
2615
|
+
#
|
2616
|
+
# * // KMS Key ID
|
2617
|
+
#
|
2618
|
+
# `"1234abcd-12ab-34cd-56ef-1234567890ab"`
|
2619
|
+
#
|
2620
|
+
# * // Amazon Resource Name (ARN) of a KMS Key
|
2621
|
+
#
|
2622
|
+
# `"arn:aws:kms:<region>:<account>:key/<key-id-12ab-34cd-56ef-1234567890ab>"`
|
2623
|
+
#
|
2624
|
+
# For more information about key identifiers, see [Key identifiers
|
2625
|
+
# (KeyID)][1] in the Amazon Web Services Key Management Service
|
2626
|
+
# (Amazon Web Services KMS) documentation.
|
2627
|
+
#
|
2628
|
+
#
|
2629
|
+
#
|
2630
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-id
|
2341
2631
|
# @return [String]
|
2342
2632
|
#
|
2343
2633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ZonalStatisticsConfigInput AWS API Documentation
|
@@ -2345,7 +2635,8 @@ module Aws::SageMakerGeospatial
|
|
2345
2635
|
class ZonalStatisticsConfigInput < Struct.new(
|
2346
2636
|
:statistics,
|
2347
2637
|
:target_bands,
|
2348
|
-
:zone_s3_path
|
2638
|
+
:zone_s3_path,
|
2639
|
+
:zone_s3_path_kms_key_id)
|
2349
2640
|
SENSITIVE = []
|
2350
2641
|
include Aws::Structure
|
2351
2642
|
end
|