aws-sdk-sagemakergeospatial 1.0.0 → 1.2.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakergeospatial/client.rb +61 -29
- data/lib/aws-sdk-sagemakergeospatial/client_api.rb +65 -46
- data/lib/aws-sdk-sagemakergeospatial/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-sagemakergeospatial/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-sagemakergeospatial/types.rb +403 -21
- data/lib/aws-sdk-sagemakergeospatial.rb +1 -1
- metadata +2 -2
@@ -23,7 +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
|
+
#
|
28
|
+
# @note AreaOfInterest is a union - when making an API calls you must set exactly one of the members.
|
29
|
+
#
|
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.
|
31
|
+
#
|
26
32
|
# @!attribute [rw] area_of_interest_geometry
|
33
|
+
# A GeoJSON object representing the geographic extent in the
|
34
|
+
# coordinate space.
|
27
35
|
# @return [Types::AreaOfInterestGeometry]
|
28
36
|
#
|
29
37
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AreaOfInterest AWS API Documentation
|
@@ -39,10 +47,19 @@ module Aws::SageMakerGeospatial
|
|
39
47
|
class Unknown < AreaOfInterest; end
|
40
48
|
end
|
41
49
|
|
50
|
+
# A GeoJSON object representing the geographic extent in the coordinate
|
51
|
+
# space.
|
52
|
+
#
|
53
|
+
# @note AreaOfInterestGeometry is a union - when making an API calls you must set exactly one of the members.
|
54
|
+
#
|
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.
|
56
|
+
#
|
42
57
|
# @!attribute [rw] multi_polygon_geometry
|
58
|
+
# The structure representing the MultiPolygon Geometry.
|
43
59
|
# @return [Types::MultiPolygonGeometryInput]
|
44
60
|
#
|
45
61
|
# @!attribute [rw] polygon_geometry
|
62
|
+
# The structure representing Polygon Geometry.
|
46
63
|
# @return [Types::PolygonGeometryInput]
|
47
64
|
#
|
48
65
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AreaOfInterestGeometry AWS API Documentation
|
@@ -60,7 +77,10 @@ module Aws::SageMakerGeospatial
|
|
60
77
|
class Unknown < AreaOfInterestGeometry; end
|
61
78
|
end
|
62
79
|
|
80
|
+
# The structure containing the asset properties.
|
81
|
+
#
|
63
82
|
# @!attribute [rw] href
|
83
|
+
# Link to the asset object.
|
64
84
|
# @return [String]
|
65
85
|
#
|
66
86
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/AssetValue AWS API Documentation
|
@@ -71,10 +91,17 @@ module Aws::SageMakerGeospatial
|
|
71
91
|
include Aws::Structure
|
72
92
|
end
|
73
93
|
|
94
|
+
# Input structure for the BandMath operation type. Defines Predefined
|
95
|
+
# and CustomIndices to be computed using BandMath.
|
96
|
+
#
|
74
97
|
# @!attribute [rw] custom_indices
|
98
|
+
# CustomIndices that are computed.
|
75
99
|
# @return [Types::CustomIndicesInput]
|
76
100
|
#
|
77
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`.
|
78
105
|
# @return [Array<String>]
|
79
106
|
#
|
80
107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/BandMathConfigInput AWS API Documentation
|
@@ -86,10 +113,16 @@ module Aws::SageMakerGeospatial
|
|
86
113
|
include Aws::Structure
|
87
114
|
end
|
88
115
|
|
116
|
+
# Input structure for CloudMasking operation type.
|
117
|
+
#
|
118
|
+
# @api private
|
119
|
+
#
|
89
120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CloudMaskingConfigInput AWS API Documentation
|
90
121
|
#
|
91
122
|
class CloudMaskingConfigInput < Aws::EmptyStructure; end
|
92
123
|
|
124
|
+
# Input structure for Cloud Removal Operation type
|
125
|
+
#
|
93
126
|
# @!attribute [rw] algorithm_name
|
94
127
|
# The name of the algorithm used for cloud removal.
|
95
128
|
# @return [String]
|
@@ -99,6 +132,7 @@ module Aws::SageMakerGeospatial
|
|
99
132
|
# @return [String]
|
100
133
|
#
|
101
134
|
# @!attribute [rw] target_bands
|
135
|
+
# TargetBands to be returned in the output of CloudRemoval operation.
|
102
136
|
# @return [Array<String>]
|
103
137
|
#
|
104
138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CloudRemovalConfigInput AWS API Documentation
|
@@ -111,10 +145,13 @@ module Aws::SageMakerGeospatial
|
|
111
145
|
include Aws::Structure
|
112
146
|
end
|
113
147
|
|
148
|
+
# Updating or deleting a resource can cause an inconsistent state.
|
149
|
+
#
|
114
150
|
# @!attribute [rw] message
|
115
151
|
# @return [String]
|
116
152
|
#
|
117
153
|
# @!attribute [rw] resource_id
|
154
|
+
# Identifier of the resource affected.
|
118
155
|
# @return [String]
|
119
156
|
#
|
120
157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ConflictException AWS API Documentation
|
@@ -126,7 +163,10 @@ module Aws::SageMakerGeospatial
|
|
126
163
|
include Aws::Structure
|
127
164
|
end
|
128
165
|
|
166
|
+
# Input object defining the custom BandMath indices to compute.
|
167
|
+
#
|
129
168
|
# @!attribute [rw] operations
|
169
|
+
# A list of BandMath indices to compute.
|
130
170
|
# @return [Array<Types::Operation>]
|
131
171
|
#
|
132
172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/CustomIndicesInput AWS API Documentation
|
@@ -174,9 +214,11 @@ module Aws::SageMakerGeospatial
|
|
174
214
|
# The structure representing the errors in an EarthObservationJob.
|
175
215
|
#
|
176
216
|
# @!attribute [rw] message
|
217
|
+
# A detailed message describing the error in an Earth Observation job.
|
177
218
|
# @return [String]
|
178
219
|
#
|
179
220
|
# @!attribute [rw] type
|
221
|
+
# The type of error in an Earth Observation job.
|
180
222
|
# @return [String]
|
181
223
|
#
|
182
224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EarthObservationJobErrorDetails AWS API Documentation
|
@@ -188,10 +230,14 @@ module Aws::SageMakerGeospatial
|
|
188
230
|
include Aws::Structure
|
189
231
|
end
|
190
232
|
|
233
|
+
# The structure representing the EoCloudCover filter.
|
234
|
+
#
|
191
235
|
# @!attribute [rw] lower_bound
|
236
|
+
# Lower bound for EoCloudCover.
|
192
237
|
# @return [Float]
|
193
238
|
#
|
194
239
|
# @!attribute [rw] upper_bound
|
240
|
+
# Upper bound for EoCloudCover.
|
195
241
|
# @return [Float]
|
196
242
|
#
|
197
243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EoCloudCoverInput AWS API Documentation
|
@@ -203,7 +249,16 @@ module Aws::SageMakerGeospatial
|
|
203
249
|
include Aws::Structure
|
204
250
|
end
|
205
251
|
|
252
|
+
# Union representing different data sources to be used as input for an
|
253
|
+
# Earth Observation job.
|
254
|
+
#
|
255
|
+
# @note EojDataSourceConfigInput is a union - when making an API calls you must set exactly one of the members.
|
256
|
+
#
|
257
|
+
# @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.
|
258
|
+
#
|
206
259
|
# @!attribute [rw] s3_data
|
260
|
+
# The input structure for S3Data; representing the Amazon S3 location
|
261
|
+
# of the input data objects.
|
207
262
|
# @return [Types::S3DataInput]
|
208
263
|
#
|
209
264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/EojDataSourceConfigInput AWS API Documentation
|
@@ -224,6 +279,14 @@ module Aws::SageMakerGeospatial
|
|
224
279
|
# being exported.
|
225
280
|
# @return [String]
|
226
281
|
#
|
282
|
+
# @!attribute [rw] client_token
|
283
|
+
# A unique token that guarantees that the call to this API is
|
284
|
+
# idempotent.
|
285
|
+
#
|
286
|
+
# **A suitable default value is auto-generated.** You should normally
|
287
|
+
# not need to pass this option.
|
288
|
+
# @return [String]
|
289
|
+
#
|
227
290
|
# @!attribute [rw] execution_role_arn
|
228
291
|
# The Amazon Resource Name (ARN) of the IAM role that you specified
|
229
292
|
# for the job.
|
@@ -242,6 +305,7 @@ module Aws::SageMakerGeospatial
|
|
242
305
|
#
|
243
306
|
class ExportEarthObservationJobInput < Struct.new(
|
244
307
|
:arn,
|
308
|
+
:client_token,
|
245
309
|
:execution_role_arn,
|
246
310
|
:export_source_images,
|
247
311
|
:output_config)
|
@@ -294,9 +358,13 @@ module Aws::SageMakerGeospatial
|
|
294
358
|
# GetEarthObservationJob.
|
295
359
|
#
|
296
360
|
# @!attribute [rw] export_results
|
361
|
+
# The structure for returning the export error details while exporting
|
362
|
+
# results of an Earth Observation job.
|
297
363
|
# @return [Types::ExportErrorDetailsOutput]
|
298
364
|
#
|
299
365
|
# @!attribute [rw] export_source_images
|
366
|
+
# The structure for returning the export error details while exporting
|
367
|
+
# the source images of an Earth Observation job.
|
300
368
|
# @return [Types::ExportErrorDetailsOutput]
|
301
369
|
#
|
302
370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportErrorDetails AWS API Documentation
|
@@ -308,10 +376,16 @@ module Aws::SageMakerGeospatial
|
|
308
376
|
include Aws::Structure
|
309
377
|
end
|
310
378
|
|
379
|
+
# The structure representing the errors in an export EarthObservationJob
|
380
|
+
# operation.
|
381
|
+
#
|
311
382
|
# @!attribute [rw] message
|
383
|
+
# A detailed message describing the error in an export
|
384
|
+
# EarthObservationJob operation.
|
312
385
|
# @return [String]
|
313
386
|
#
|
314
387
|
# @!attribute [rw] type
|
388
|
+
# The type of error in an export EarthObservationJob operation.
|
315
389
|
# @return [String]
|
316
390
|
#
|
317
391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportErrorDetailsOutput AWS API Documentation
|
@@ -323,9 +397,11 @@ module Aws::SageMakerGeospatial
|
|
323
397
|
include Aws::Structure
|
324
398
|
end
|
325
399
|
|
400
|
+
# The structure containing the Amazon S3 path to export the Earth
|
401
|
+
# Observation job output.
|
402
|
+
#
|
326
403
|
# @!attribute [rw] kms_key_id
|
327
|
-
# The
|
328
|
-
# encryption.
|
404
|
+
# The Key Management Service key ID for server-side encryption.
|
329
405
|
# @return [String]
|
330
406
|
#
|
331
407
|
# @!attribute [rw] s3_uri
|
@@ -345,6 +421,14 @@ module Aws::SageMakerGeospatial
|
|
345
421
|
# The Amazon Resource Name (ARN) of the Vector Enrichment job.
|
346
422
|
# @return [String]
|
347
423
|
#
|
424
|
+
# @!attribute [rw] client_token
|
425
|
+
# A unique token that guarantees that the call to this API is
|
426
|
+
# idempotent.
|
427
|
+
#
|
428
|
+
# **A suitable default value is auto-generated.** You should normally
|
429
|
+
# not need to pass this option.
|
430
|
+
# @return [String]
|
431
|
+
#
|
348
432
|
# @!attribute [rw] execution_role_arn
|
349
433
|
# The Amazon Resource Name (ARN) of the IAM rolewith permission to
|
350
434
|
# upload to the location in OutputConfig.
|
@@ -359,6 +443,7 @@ module Aws::SageMakerGeospatial
|
|
359
443
|
#
|
360
444
|
class ExportVectorEnrichmentJobInput < Struct.new(
|
361
445
|
:arn,
|
446
|
+
:client_token,
|
362
447
|
:execution_role_arn,
|
363
448
|
:output_config)
|
364
449
|
SENSITIVE = []
|
@@ -403,6 +488,8 @@ module Aws::SageMakerGeospatial
|
|
403
488
|
# An object containing information about the output file.
|
404
489
|
#
|
405
490
|
# @!attribute [rw] s3_data
|
491
|
+
# The input structure for Amazon S3 data; representing the Amazon S3
|
492
|
+
# location of the input data objects.
|
406
493
|
# @return [Types::VectorEnrichmentJobS3Data]
|
407
494
|
#
|
408
495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ExportVectorEnrichmentJobOutputConfig AWS API Documentation
|
@@ -462,10 +549,15 @@ module Aws::SageMakerGeospatial
|
|
462
549
|
include Aws::Structure
|
463
550
|
end
|
464
551
|
|
552
|
+
# The structure representing a Geometry in terms of Type and Coordinates
|
553
|
+
# as per GeoJson spec.
|
554
|
+
#
|
465
555
|
# @!attribute [rw] coordinates
|
556
|
+
# The coordinates of the GeoJson Geometry.
|
466
557
|
# @return [Array<Array<Array<Float>>>]
|
467
558
|
#
|
468
559
|
# @!attribute [rw] type
|
560
|
+
# GeoJson Geometry types like Polygon and MultiPolygon.
|
469
561
|
# @return [String]
|
470
562
|
#
|
471
563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Geometry AWS API Documentation
|
@@ -527,8 +619,7 @@ module Aws::SageMakerGeospatial
|
|
527
619
|
# @return [Types::JobConfigInput]
|
528
620
|
#
|
529
621
|
# @!attribute [rw] kms_key_id
|
530
|
-
# The
|
531
|
-
# encryption.
|
622
|
+
# The Key Management Service key ID for server-side encryption.
|
532
623
|
# @return [String]
|
533
624
|
#
|
534
625
|
# @!attribute [rw] name
|
@@ -536,6 +627,7 @@ module Aws::SageMakerGeospatial
|
|
536
627
|
# @return [String]
|
537
628
|
#
|
538
629
|
# @!attribute [rw] output_bands
|
630
|
+
# Bands available in the output of an operation.
|
539
631
|
# @return [Array<Types::OutputBand>]
|
540
632
|
#
|
541
633
|
# @!attribute [rw] status
|
@@ -592,6 +684,7 @@ module Aws::SageMakerGeospatial
|
|
592
684
|
# @return [String]
|
593
685
|
#
|
594
686
|
# @!attribute [rw] image_source_bands
|
687
|
+
# The list of image source bands in the raster data collection.
|
595
688
|
# @return [Array<String>]
|
596
689
|
#
|
597
690
|
# @!attribute [rw] name
|
@@ -629,6 +722,10 @@ module Aws::SageMakerGeospatial
|
|
629
722
|
# The Amazon Resource Name (ARN) of the tile operation.
|
630
723
|
# @return [String]
|
631
724
|
#
|
725
|
+
# @!attribute [rw] execution_role_arn
|
726
|
+
# The Amazon Resource Name (ARN) of the IAM role that you specify.
|
727
|
+
# @return [String]
|
728
|
+
#
|
632
729
|
# @!attribute [rw] image_assets
|
633
730
|
# The particular assets or bands to tile.
|
634
731
|
# @return [Array<String>]
|
@@ -675,6 +772,7 @@ module Aws::SageMakerGeospatial
|
|
675
772
|
#
|
676
773
|
class GetTileInput < Struct.new(
|
677
774
|
:arn,
|
775
|
+
:execution_role_arn,
|
678
776
|
:image_assets,
|
679
777
|
:image_mask,
|
680
778
|
:output_data_type,
|
@@ -752,8 +850,7 @@ module Aws::SageMakerGeospatial
|
|
752
850
|
# @return [Types::VectorEnrichmentJobConfig]
|
753
851
|
#
|
754
852
|
# @!attribute [rw] kms_key_id
|
755
|
-
# The
|
756
|
-
# encryption.
|
853
|
+
# The Key Management Service key ID for server-side encryption.
|
757
854
|
# @return [String]
|
758
855
|
#
|
759
856
|
# @!attribute [rw] name
|
@@ -805,6 +902,9 @@ module Aws::SageMakerGeospatial
|
|
805
902
|
# @return [String]
|
806
903
|
#
|
807
904
|
# @!attribute [rw] raster_data_collection_query
|
905
|
+
# The structure representing the RasterDataCollection Query consisting
|
906
|
+
# of the Area of Interest, RasterDataCollectionArn,TimeRange and
|
907
|
+
# Property Filters.
|
808
908
|
# @return [Types::RasterDataCollectionQueryInput]
|
809
909
|
#
|
810
910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/InputConfigInput AWS API Documentation
|
@@ -829,6 +929,9 @@ module Aws::SageMakerGeospatial
|
|
829
929
|
# @return [String]
|
830
930
|
#
|
831
931
|
# @!attribute [rw] raster_data_collection_query
|
932
|
+
# The structure representing the RasterDataCollection Query consisting
|
933
|
+
# of the Area of Interest, RasterDataCollectionArn,
|
934
|
+
# RasterDataCollectionName, TimeRange, and Property Filters.
|
832
935
|
# @return [Types::RasterDataCollectionQueryOutput]
|
833
936
|
#
|
834
937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/InputConfigOutput AWS API Documentation
|
@@ -859,16 +962,20 @@ module Aws::SageMakerGeospatial
|
|
859
962
|
include Aws::Structure
|
860
963
|
end
|
861
964
|
|
862
|
-
#
|
965
|
+
# The structure representing the items in the response for
|
863
966
|
# SearchRasterDataCollection.
|
864
967
|
#
|
865
968
|
# @!attribute [rw] assets
|
969
|
+
# This is a dictionary of Asset Objects data associated with the Item
|
970
|
+
# that can be downloaded or streamed, each with a unique key.
|
866
971
|
# @return [Hash<String,Types::AssetValue>]
|
867
972
|
#
|
868
973
|
# @!attribute [rw] date_time
|
974
|
+
# The searchable date and time of the item, in UTC.
|
869
975
|
# @return [Time]
|
870
976
|
#
|
871
977
|
# @!attribute [rw] geometry
|
978
|
+
# The item Geometry in GeoJson format.
|
872
979
|
# @return [Types::Geometry]
|
873
980
|
#
|
874
981
|
# @!attribute [rw] id
|
@@ -876,6 +983,7 @@ module Aws::SageMakerGeospatial
|
|
876
983
|
# @return [String]
|
877
984
|
#
|
878
985
|
# @!attribute [rw] properties
|
986
|
+
# This field contains additional properties of the item.
|
879
987
|
# @return [Types::Properties]
|
880
988
|
#
|
881
989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ItemSource AWS API Documentation
|
@@ -892,7 +1000,13 @@ module Aws::SageMakerGeospatial
|
|
892
1000
|
|
893
1001
|
# The input structure for the JobConfig in an EarthObservationJob.
|
894
1002
|
#
|
1003
|
+
# @note JobConfigInput is a union - when making an API calls you must set exactly one of the members.
|
1004
|
+
#
|
1005
|
+
# @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.
|
1006
|
+
#
|
895
1007
|
# @!attribute [rw] band_math_config
|
1008
|
+
# An object containing information about the job configuration for
|
1009
|
+
# BandMath.
|
896
1010
|
# @return [Types::BandMathConfigInput]
|
897
1011
|
#
|
898
1012
|
# @!attribute [rw] cloud_masking_config
|
@@ -921,6 +1035,8 @@ module Aws::SageMakerGeospatial
|
|
921
1035
|
# @return [Types::ResamplingConfigInput]
|
922
1036
|
#
|
923
1037
|
# @!attribute [rw] stack_config
|
1038
|
+
# An object containing information about the job configuration for a
|
1039
|
+
# Stacking Earth Observation job.
|
924
1040
|
# @return [Types::StackConfigInput]
|
925
1041
|
#
|
926
1042
|
# @!attribute [rw] temporal_statistics_config
|
@@ -962,14 +1078,27 @@ module Aws::SageMakerGeospatial
|
|
962
1078
|
class Unknown < JobConfigInput; end
|
963
1079
|
end
|
964
1080
|
|
1081
|
+
# The input structure for Land Cover Operation type.
|
1082
|
+
#
|
1083
|
+
# @api private
|
1084
|
+
#
|
965
1085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/LandCoverSegmentationConfigInput AWS API Documentation
|
966
1086
|
#
|
967
1087
|
class LandCoverSegmentationConfigInput < Aws::EmptyStructure; end
|
968
1088
|
|
1089
|
+
# The structure representing Land Cloud Cover property for Landsat data
|
1090
|
+
# collection.
|
1091
|
+
#
|
969
1092
|
# @!attribute [rw] lower_bound
|
1093
|
+
# The minimum value for Land Cloud Cover property filter. This will
|
1094
|
+
# filter items having Land Cloud Cover greater than or equal to this
|
1095
|
+
# value.
|
970
1096
|
# @return [Float]
|
971
1097
|
#
|
972
1098
|
# @!attribute [rw] upper_bound
|
1099
|
+
# The maximum value for Land Cloud Cover property filter. This will
|
1100
|
+
# filter items having Land Cloud Cover less than or equal to this
|
1101
|
+
# value.
|
973
1102
|
# @return [Float]
|
974
1103
|
#
|
975
1104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/LandsatCloudCoverLandInput AWS API Documentation
|
@@ -1053,6 +1182,7 @@ module Aws::SageMakerGeospatial
|
|
1053
1182
|
# @return [String]
|
1054
1183
|
#
|
1055
1184
|
# @!attribute [rw] operation_type
|
1185
|
+
# The operation type for an Earth Observation job.
|
1056
1186
|
# @return [String]
|
1057
1187
|
#
|
1058
1188
|
# @!attribute [rw] status
|
@@ -1234,7 +1364,12 @@ module Aws::SageMakerGeospatial
|
|
1234
1364
|
include Aws::Structure
|
1235
1365
|
end
|
1236
1366
|
|
1367
|
+
# The input structure for Map Matching operation type.
|
1368
|
+
#
|
1237
1369
|
# @!attribute [rw] id_attribute_name
|
1370
|
+
# The field name for the data that describes the identifier
|
1371
|
+
# representing a collection of GPS points belonging to an individual
|
1372
|
+
# trace.
|
1238
1373
|
# @return [String]
|
1239
1374
|
#
|
1240
1375
|
# @!attribute [rw] timestamp_attribute_name
|
@@ -1260,6 +1395,13 @@ module Aws::SageMakerGeospatial
|
|
1260
1395
|
include Aws::Structure
|
1261
1396
|
end
|
1262
1397
|
|
1398
|
+
# The structure representing Polygon Geometry based on the [GeoJson
|
1399
|
+
# spec][1].
|
1400
|
+
#
|
1401
|
+
#
|
1402
|
+
#
|
1403
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1404
|
+
#
|
1263
1405
|
# @!attribute [rw] coordinates
|
1264
1406
|
# The coordinates of the multipolygon geometry.
|
1265
1407
|
# @return [Array<Array<Array<Array<Float>>>>]
|
@@ -1272,7 +1414,11 @@ module Aws::SageMakerGeospatial
|
|
1272
1414
|
include Aws::Structure
|
1273
1415
|
end
|
1274
1416
|
|
1417
|
+
# Represents an arithmetic operation to compute spectral index.
|
1418
|
+
#
|
1275
1419
|
# @!attribute [rw] equation
|
1420
|
+
# Textual representation of the math operation; Equation used to
|
1421
|
+
# compute the spectral index.
|
1276
1422
|
# @return [String]
|
1277
1423
|
#
|
1278
1424
|
# @!attribute [rw] name
|
@@ -1328,7 +1474,12 @@ module Aws::SageMakerGeospatial
|
|
1328
1474
|
include Aws::Structure
|
1329
1475
|
end
|
1330
1476
|
|
1477
|
+
# OutputResolution Configuration indicating the target resolution for
|
1478
|
+
# the output of Resampling operation.
|
1479
|
+
#
|
1331
1480
|
# @!attribute [rw] user_defined
|
1481
|
+
# User Defined Resolution for the output of Resampling operation
|
1482
|
+
# defined by value and unit.
|
1332
1483
|
# @return [Types::UserDefined]
|
1333
1484
|
#
|
1334
1485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/OutputResolutionResamplingInput AWS API Documentation
|
@@ -1339,10 +1490,18 @@ module Aws::SageMakerGeospatial
|
|
1339
1490
|
include Aws::Structure
|
1340
1491
|
end
|
1341
1492
|
|
1493
|
+
# The input structure representing Output Resolution for Stacking
|
1494
|
+
# Operation.
|
1495
|
+
#
|
1342
1496
|
# @!attribute [rw] predefined
|
1497
|
+
# A string value representing Predefined Output Resolution for a
|
1498
|
+
# stacking operation. Allowed values are `HIGHEST`, `LOWEST`, and
|
1499
|
+
# `AVERAGE`.
|
1343
1500
|
# @return [String]
|
1344
1501
|
#
|
1345
1502
|
# @!attribute [rw] user_defined
|
1503
|
+
# The structure representing User Output Resolution for a Stacking
|
1504
|
+
# operation defined as a value and unit.
|
1346
1505
|
# @return [Types::UserDefined]
|
1347
1506
|
#
|
1348
1507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/OutputResolutionStackInput AWS API Documentation
|
@@ -1354,7 +1513,13 @@ module Aws::SageMakerGeospatial
|
|
1354
1513
|
include Aws::Structure
|
1355
1514
|
end
|
1356
1515
|
|
1516
|
+
# The input structure for specifying Platform. Platform refers to the
|
1517
|
+
# unique name of the specific platform the instrument is attached to.
|
1518
|
+
# For satellites it is the name of the satellite, eg. landsat-8
|
1519
|
+
# (Landsat-8), sentinel-2a.
|
1520
|
+
#
|
1357
1521
|
# @!attribute [rw] comparison_operator
|
1522
|
+
# The ComparisonOperator to use with PlatformInput.
|
1358
1523
|
# @return [String]
|
1359
1524
|
#
|
1360
1525
|
# @!attribute [rw] value
|
@@ -1370,7 +1535,19 @@ module Aws::SageMakerGeospatial
|
|
1370
1535
|
include Aws::Structure
|
1371
1536
|
end
|
1372
1537
|
|
1538
|
+
# The structure representing Polygon Geometry based on the [GeoJson
|
1539
|
+
# spec][1].
|
1540
|
+
#
|
1541
|
+
#
|
1542
|
+
#
|
1543
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1544
|
+
#
|
1373
1545
|
# @!attribute [rw] coordinates
|
1546
|
+
# Coordinates representing a Polygon based on the [GeoJson spec][1].
|
1547
|
+
#
|
1548
|
+
#
|
1549
|
+
#
|
1550
|
+
# [1]: https://www.rfc-editor.org/rfc/rfc7946#section-3.1.6
|
1374
1551
|
# @return [Array<Array<Array<Float>>>]
|
1375
1552
|
#
|
1376
1553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PolygonGeometryInput AWS API Documentation
|
@@ -1381,22 +1558,44 @@ module Aws::SageMakerGeospatial
|
|
1381
1558
|
include Aws::Structure
|
1382
1559
|
end
|
1383
1560
|
|
1561
|
+
# Properties associated with the Item.
|
1562
|
+
#
|
1384
1563
|
# @!attribute [rw] eo_cloud_cover
|
1564
|
+
# Estimate of cloud cover.
|
1385
1565
|
# @return [Float]
|
1386
1566
|
#
|
1387
1567
|
# @!attribute [rw] landsat_cloud_cover_land
|
1568
|
+
# Land cloud cover for Landsat Data Collection.
|
1388
1569
|
# @return [Float]
|
1389
1570
|
#
|
1390
1571
|
# @!attribute [rw] platform
|
1572
|
+
# Platform property. Platform refers to the unique name of the
|
1573
|
+
# specific platform the instrument is attached to. For satellites it
|
1574
|
+
# is the name of the satellite, eg. landsat-8 (Landsat-8),
|
1575
|
+
# sentinel-2a.
|
1391
1576
|
# @return [String]
|
1392
1577
|
#
|
1393
1578
|
# @!attribute [rw] view_off_nadir
|
1579
|
+
# The angle from the sensor between nadir (straight down) and the
|
1580
|
+
# scene center. Measured in degrees (0-90).
|
1394
1581
|
# @return [Float]
|
1395
1582
|
#
|
1396
1583
|
# @!attribute [rw] view_sun_azimuth
|
1584
|
+
# The sun azimuth angle. From the scene center point on the ground,
|
1585
|
+
# this is the angle between truth north and the sun. Measured
|
1586
|
+
# clockwise in degrees (0-360).
|
1397
1587
|
# @return [Float]
|
1398
1588
|
#
|
1399
1589
|
# @!attribute [rw] view_sun_elevation
|
1590
|
+
# The sun elevation angle. The angle from the tangent of the scene
|
1591
|
+
# center point to the sun. Measured from the horizon in degrees
|
1592
|
+
# (-90-90). Negative values indicate the sun is below the horizon,
|
1593
|
+
# e.g. sun elevation of -10° means the data was captured during
|
1594
|
+
# [nautical twilight][1].
|
1595
|
+
#
|
1596
|
+
#
|
1597
|
+
#
|
1598
|
+
# [1]: https://www.timeanddate.com/astronomy/different-types-twilight.html
|
1400
1599
|
# @return [Float]
|
1401
1600
|
#
|
1402
1601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Properties AWS API Documentation
|
@@ -1412,22 +1611,40 @@ module Aws::SageMakerGeospatial
|
|
1412
1611
|
include Aws::Structure
|
1413
1612
|
end
|
1414
1613
|
|
1614
|
+
# Represents a single searchable property to search on.
|
1615
|
+
#
|
1616
|
+
# @note Property is a union - when making an API calls you must set exactly one of the members.
|
1617
|
+
#
|
1618
|
+
# @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.
|
1619
|
+
#
|
1415
1620
|
# @!attribute [rw] eo_cloud_cover
|
1621
|
+
# The structure representing EoCloudCover property filter containing a
|
1622
|
+
# lower bound and upper bound.
|
1416
1623
|
# @return [Types::EoCloudCoverInput]
|
1417
1624
|
#
|
1418
1625
|
# @!attribute [rw] landsat_cloud_cover_land
|
1626
|
+
# The structure representing Land Cloud Cover property filter for
|
1627
|
+
# Landsat collection containing a lower bound and upper bound.
|
1419
1628
|
# @return [Types::LandsatCloudCoverLandInput]
|
1420
1629
|
#
|
1421
1630
|
# @!attribute [rw] platform
|
1631
|
+
# The structure representing Platform property filter consisting of
|
1632
|
+
# value and comparison operator.
|
1422
1633
|
# @return [Types::PlatformInput]
|
1423
1634
|
#
|
1424
1635
|
# @!attribute [rw] view_off_nadir
|
1636
|
+
# The structure representing ViewOffNadir property filter containing a
|
1637
|
+
# lower bound and upper bound.
|
1425
1638
|
# @return [Types::ViewOffNadirInput]
|
1426
1639
|
#
|
1427
1640
|
# @!attribute [rw] view_sun_azimuth
|
1641
|
+
# The structure representing ViewSunAzimuth property filter containing
|
1642
|
+
# a lower bound and upper bound.
|
1428
1643
|
# @return [Types::ViewSunAzimuthInput]
|
1429
1644
|
#
|
1430
1645
|
# @!attribute [rw] view_sun_elevation
|
1646
|
+
# The structure representing ViewSunElevation property filter
|
1647
|
+
# containing a lower bound and upper bound.
|
1431
1648
|
# @return [Types::ViewSunElevationInput]
|
1432
1649
|
#
|
1433
1650
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/Property AWS API Documentation
|
@@ -1453,7 +1670,11 @@ module Aws::SageMakerGeospatial
|
|
1453
1670
|
class Unknown < Property; end
|
1454
1671
|
end
|
1455
1672
|
|
1673
|
+
# The structure representing a single PropertyFilter.
|
1674
|
+
#
|
1456
1675
|
# @!attribute [rw] property
|
1676
|
+
# Represents a single property to match with when searching a raster
|
1677
|
+
# data collection.
|
1457
1678
|
# @return [Types::Property]
|
1458
1679
|
#
|
1459
1680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PropertyFilter AWS API Documentation
|
@@ -1464,10 +1685,14 @@ module Aws::SageMakerGeospatial
|
|
1464
1685
|
include Aws::Structure
|
1465
1686
|
end
|
1466
1687
|
|
1688
|
+
# A list of PropertyFilter objects.
|
1689
|
+
#
|
1467
1690
|
# @!attribute [rw] logical_operator
|
1691
|
+
# The Logical Operator used to combine the Property Filters.
|
1468
1692
|
# @return [String]
|
1469
1693
|
#
|
1470
1694
|
# @!attribute [rw] properties
|
1695
|
+
# A list of Property Filters.
|
1471
1696
|
# @return [Array<Types::PropertyFilter>]
|
1472
1697
|
#
|
1473
1698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/PropertyFilters AWS API Documentation
|
@@ -1499,6 +1724,7 @@ module Aws::SageMakerGeospatial
|
|
1499
1724
|
# @return [String]
|
1500
1725
|
#
|
1501
1726
|
# @!attribute [rw] supported_filters
|
1727
|
+
# The list of filters supported by the raster data collection.
|
1502
1728
|
# @return [Array<Types::Filter>]
|
1503
1729
|
#
|
1504
1730
|
# @!attribute [rw] tags
|
@@ -1523,11 +1749,16 @@ module Aws::SageMakerGeospatial
|
|
1523
1749
|
include Aws::Structure
|
1524
1750
|
end
|
1525
1751
|
|
1752
|
+
# The input structure for Raster Data Collection Query containing the
|
1753
|
+
# Area of Interest, TimeRange Filters, and Property Filters.
|
1754
|
+
#
|
1526
1755
|
# @!attribute [rw] area_of_interest
|
1527
1756
|
# The area of interest being queried for the raster data collection.
|
1528
1757
|
# @return [Types::AreaOfInterest]
|
1529
1758
|
#
|
1530
1759
|
# @!attribute [rw] property_filters
|
1760
|
+
# The list of Property filters used in the Raster Data Collection
|
1761
|
+
# Query.
|
1531
1762
|
# @return [Types::PropertyFilters]
|
1532
1763
|
#
|
1533
1764
|
# @!attribute [rw] raster_data_collection_arn
|
@@ -1535,6 +1766,7 @@ module Aws::SageMakerGeospatial
|
|
1535
1766
|
# @return [String]
|
1536
1767
|
#
|
1537
1768
|
# @!attribute [rw] time_range_filter
|
1769
|
+
# The TimeRange Filter used in the RasterDataCollection Query.
|
1538
1770
|
# @return [Types::TimeRangeFilterInput]
|
1539
1771
|
#
|
1540
1772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryInput AWS API Documentation
|
@@ -1548,13 +1780,20 @@ module Aws::SageMakerGeospatial
|
|
1548
1780
|
include Aws::Structure
|
1549
1781
|
end
|
1550
1782
|
|
1783
|
+
# The output structure contains the Raster Data Collection Query input
|
1784
|
+
# along with some additional metadata.
|
1785
|
+
#
|
1551
1786
|
# @!attribute [rw] area_of_interest
|
1787
|
+
# The Area of Interest used in the search.
|
1552
1788
|
# @return [Types::AreaOfInterest]
|
1553
1789
|
#
|
1554
1790
|
# @!attribute [rw] property_filters
|
1791
|
+
# Property filters used in the search.
|
1555
1792
|
# @return [Types::PropertyFilters]
|
1556
1793
|
#
|
1557
1794
|
# @!attribute [rw] raster_data_collection_arn
|
1795
|
+
# The ARN of the Raster Data Collection against which the search is
|
1796
|
+
# done.
|
1558
1797
|
# @return [String]
|
1559
1798
|
#
|
1560
1799
|
# @!attribute [rw] raster_data_collection_name
|
@@ -1562,7 +1801,8 @@ module Aws::SageMakerGeospatial
|
|
1562
1801
|
# @return [String]
|
1563
1802
|
#
|
1564
1803
|
# @!attribute [rw] time_range_filter
|
1565
|
-
#
|
1804
|
+
# The TimeRange filter used in the search.
|
1805
|
+
# @return [Types::TimeRangeFilterOutput]
|
1566
1806
|
#
|
1567
1807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryOutput AWS API Documentation
|
1568
1808
|
#
|
@@ -1580,15 +1820,19 @@ module Aws::SageMakerGeospatial
|
|
1580
1820
|
# Time Range filter and Property filters.
|
1581
1821
|
#
|
1582
1822
|
# @!attribute [rw] area_of_interest
|
1823
|
+
# The Area of interest to be used in the search query.
|
1583
1824
|
# @return [Types::AreaOfInterest]
|
1584
1825
|
#
|
1585
1826
|
# @!attribute [rw] band_filter
|
1827
|
+
# The list of Bands to be displayed in the result for each item.
|
1586
1828
|
# @return [Array<String>]
|
1587
1829
|
#
|
1588
1830
|
# @!attribute [rw] property_filters
|
1831
|
+
# The Property Filters used in the search query.
|
1589
1832
|
# @return [Types::PropertyFilters]
|
1590
1833
|
#
|
1591
1834
|
# @!attribute [rw] time_range_filter
|
1835
|
+
# The TimeRange Filter used in the search query.
|
1592
1836
|
# @return [Types::TimeRangeFilterInput]
|
1593
1837
|
#
|
1594
1838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/RasterDataCollectionQueryWithBandFilterInput AWS API Documentation
|
@@ -1602,14 +1846,20 @@ module Aws::SageMakerGeospatial
|
|
1602
1846
|
include Aws::Structure
|
1603
1847
|
end
|
1604
1848
|
|
1849
|
+
# The structure representing input for resampling operation.
|
1850
|
+
#
|
1605
1851
|
# @!attribute [rw] algorithm_name
|
1606
1852
|
# The name of the algorithm used for resampling.
|
1607
1853
|
# @return [String]
|
1608
1854
|
#
|
1609
1855
|
# @!attribute [rw] output_resolution
|
1856
|
+
# The structure representing output resolution (in target
|
1857
|
+
# georeferenced units) of the result of resampling operation.
|
1610
1858
|
# @return [Types::OutputResolutionResamplingInput]
|
1611
1859
|
#
|
1612
1860
|
# @!attribute [rw] target_bands
|
1861
|
+
# Bands used in the operation. If no target bands are specified, it
|
1862
|
+
# uses all bands available in the input.
|
1613
1863
|
# @return [Array<String>]
|
1614
1864
|
#
|
1615
1865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ResamplingConfigInput AWS API Documentation
|
@@ -1622,10 +1872,13 @@ module Aws::SageMakerGeospatial
|
|
1622
1872
|
include Aws::Structure
|
1623
1873
|
end
|
1624
1874
|
|
1875
|
+
# The request references a resource which does not exist.
|
1876
|
+
#
|
1625
1877
|
# @!attribute [rw] message
|
1626
1878
|
# @return [String]
|
1627
1879
|
#
|
1628
1880
|
# @!attribute [rw] resource_id
|
1881
|
+
# Identifier of the resource that was not found.
|
1629
1882
|
# @return [String]
|
1630
1883
|
#
|
1631
1884
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ResourceNotFoundException AWS API Documentation
|
@@ -1637,10 +1890,16 @@ module Aws::SageMakerGeospatial
|
|
1637
1890
|
include Aws::Structure
|
1638
1891
|
end
|
1639
1892
|
|
1893
|
+
# The input structure for Reverse Geocoding operation type.
|
1894
|
+
#
|
1640
1895
|
# @!attribute [rw] x_attribute_name
|
1896
|
+
# The field name for the data that describes x-axis coordinate, eg.
|
1897
|
+
# longitude of a point.
|
1641
1898
|
# @return [String]
|
1642
1899
|
#
|
1643
1900
|
# @!attribute [rw] y_attribute_name
|
1901
|
+
# The field name for the data that describes y-axis coordinate, eg.
|
1902
|
+
# latitude of a point.
|
1644
1903
|
# @return [String]
|
1645
1904
|
#
|
1646
1905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ReverseGeocodingConfig AWS API Documentation
|
@@ -1655,11 +1914,11 @@ module Aws::SageMakerGeospatial
|
|
1655
1914
|
# Path to Amazon S3 storage location for input data.
|
1656
1915
|
#
|
1657
1916
|
# @!attribute [rw] kms_key_id
|
1658
|
-
# The
|
1659
|
-
# encryption.
|
1917
|
+
# The Key Management Service key ID for server-side encryption.
|
1660
1918
|
# @return [String]
|
1661
1919
|
#
|
1662
1920
|
# @!attribute [rw] metadata_provider
|
1921
|
+
# Metadata provider from whom the Amazon S3 data has been acquired.
|
1663
1922
|
# @return [String]
|
1664
1923
|
#
|
1665
1924
|
# @!attribute [rw] s3_uri
|
@@ -1686,6 +1945,16 @@ module Aws::SageMakerGeospatial
|
|
1686
1945
|
# @return [String]
|
1687
1946
|
#
|
1688
1947
|
# @!attribute [rw] raster_data_collection_query
|
1948
|
+
# RasterDataCollectionQuery consisting of [AreaOfInterest(AOI)][1],
|
1949
|
+
# [PropertyFilters][2] and [TimeRangeFilterInput][3] used in
|
1950
|
+
# [SearchRasterDataCollection][4].
|
1951
|
+
#
|
1952
|
+
#
|
1953
|
+
#
|
1954
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html
|
1955
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html
|
1956
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html
|
1957
|
+
# [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html
|
1689
1958
|
# @return [Types::RasterDataCollectionQueryWithBandFilterInput]
|
1690
1959
|
#
|
1691
1960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/SearchRasterDataCollectionInput AWS API Documentation
|
@@ -1699,9 +1968,11 @@ module Aws::SageMakerGeospatial
|
|
1699
1968
|
end
|
1700
1969
|
|
1701
1970
|
# @!attribute [rw] approximate_result_count
|
1971
|
+
# Approximate number of results in the response.
|
1702
1972
|
# @return [Integer]
|
1703
1973
|
#
|
1704
1974
|
# @!attribute [rw] items
|
1975
|
+
# List of items matching the Raster DataCollectionQuery.
|
1705
1976
|
# @return [Array<Types::ItemSource>]
|
1706
1977
|
#
|
1707
1978
|
# @!attribute [rw] next_token
|
@@ -1725,6 +1996,7 @@ module Aws::SageMakerGeospatial
|
|
1725
1996
|
# @return [String]
|
1726
1997
|
#
|
1727
1998
|
# @!attribute [rw] resource_id
|
1999
|
+
# Identifier of the resource affected.
|
1728
2000
|
# @return [String]
|
1729
2001
|
#
|
1730
2002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ServiceQuotaExceededException AWS API Documentation
|
@@ -1736,10 +2008,18 @@ module Aws::SageMakerGeospatial
|
|
1736
2008
|
include Aws::Structure
|
1737
2009
|
end
|
1738
2010
|
|
2011
|
+
# The input structure for Stacking Operation.
|
2012
|
+
#
|
1739
2013
|
# @!attribute [rw] output_resolution
|
2014
|
+
# The structure representing output resolution (in target
|
2015
|
+
# georeferenced units) of the result of stacking operation.
|
1740
2016
|
# @return [Types::OutputResolutionStackInput]
|
1741
2017
|
#
|
1742
2018
|
# @!attribute [rw] target_bands
|
2019
|
+
# A list of bands to be stacked in the specified order. When the
|
2020
|
+
# parameter is not provided, all the available bands in the data
|
2021
|
+
# collection are stacked in the alphabetical order of their asset
|
2022
|
+
# names.
|
1743
2023
|
# @return [Array<String>]
|
1744
2024
|
#
|
1745
2025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/StackConfigInput AWS API Documentation
|
@@ -1773,8 +2053,7 @@ module Aws::SageMakerGeospatial
|
|
1773
2053
|
# @return [Types::JobConfigInput]
|
1774
2054
|
#
|
1775
2055
|
# @!attribute [rw] kms_key_id
|
1776
|
-
# The
|
1777
|
-
# encryption.
|
2056
|
+
# The Key Management Service key ID for server-side encryption.
|
1778
2057
|
# @return [String]
|
1779
2058
|
#
|
1780
2059
|
# @!attribute [rw] name
|
@@ -1825,8 +2104,7 @@ module Aws::SageMakerGeospatial
|
|
1825
2104
|
# @return [Types::JobConfigInput]
|
1826
2105
|
#
|
1827
2106
|
# @!attribute [rw] kms_key_id
|
1828
|
-
# The
|
1829
|
-
# encryption.
|
2107
|
+
# The Key Management Service key ID for server-side encryption.
|
1830
2108
|
# @return [String]
|
1831
2109
|
#
|
1832
2110
|
# @!attribute [rw] name
|
@@ -1880,8 +2158,7 @@ module Aws::SageMakerGeospatial
|
|
1880
2158
|
# @return [Types::VectorEnrichmentJobConfig]
|
1881
2159
|
#
|
1882
2160
|
# @!attribute [rw] kms_key_id
|
1883
|
-
# The
|
1884
|
-
# encryption.
|
2161
|
+
# The Key Management Service key ID for server-side encryption.
|
1885
2162
|
# @return [String]
|
1886
2163
|
#
|
1887
2164
|
# @!attribute [rw] name
|
@@ -1933,8 +2210,7 @@ module Aws::SageMakerGeospatial
|
|
1933
2210
|
# @return [Types::VectorEnrichmentJobConfig]
|
1934
2211
|
#
|
1935
2212
|
# @!attribute [rw] kms_key_id
|
1936
|
-
# The
|
1937
|
-
# encryption.
|
2213
|
+
# The Key Management Service key ID for server-side encryption.
|
1938
2214
|
# @return [String]
|
1939
2215
|
#
|
1940
2216
|
# @!attribute [rw] name
|
@@ -2025,13 +2301,21 @@ module Aws::SageMakerGeospatial
|
|
2025
2301
|
#
|
2026
2302
|
class TagResourceResponse < Aws::EmptyStructure; end
|
2027
2303
|
|
2304
|
+
# The structure representing the configuration for Temporal Statistics
|
2305
|
+
# operation.
|
2306
|
+
#
|
2028
2307
|
# @!attribute [rw] group_by
|
2308
|
+
# The input for the temporal statistics grouping by time frequency
|
2309
|
+
# option.
|
2029
2310
|
# @return [String]
|
2030
2311
|
#
|
2031
2312
|
# @!attribute [rw] statistics
|
2313
|
+
# The list of the statistics method options.
|
2032
2314
|
# @return [Array<String>]
|
2033
2315
|
#
|
2034
2316
|
# @!attribute [rw] target_bands
|
2317
|
+
# The list of target band names for the temporal statistic to
|
2318
|
+
# calculate.
|
2035
2319
|
# @return [Array<String>]
|
2036
2320
|
#
|
2037
2321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/TemporalStatisticsConfigInput AWS API Documentation
|
@@ -2080,6 +2364,25 @@ module Aws::SageMakerGeospatial
|
|
2080
2364
|
include Aws::Structure
|
2081
2365
|
end
|
2082
2366
|
|
2367
|
+
# The output structure of the time range filter.
|
2368
|
+
#
|
2369
|
+
# @!attribute [rw] end_time
|
2370
|
+
# The ending time for the time range filter.
|
2371
|
+
# @return [Time]
|
2372
|
+
#
|
2373
|
+
# @!attribute [rw] start_time
|
2374
|
+
# The starting time for the time range filter.
|
2375
|
+
# @return [Time]
|
2376
|
+
#
|
2377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/TimeRangeFilterOutput AWS API Documentation
|
2378
|
+
#
|
2379
|
+
class TimeRangeFilterOutput < Struct.new(
|
2380
|
+
:end_time,
|
2381
|
+
:start_time)
|
2382
|
+
SENSITIVE = []
|
2383
|
+
include Aws::Structure
|
2384
|
+
end
|
2385
|
+
|
2083
2386
|
# @!attribute [rw] resource_arn
|
2084
2387
|
# The Amazon Resource Name (ARN) of the resource you want to untag.
|
2085
2388
|
# @return [String]
|
@@ -2101,10 +2404,15 @@ module Aws::SageMakerGeospatial
|
|
2101
2404
|
#
|
2102
2405
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2103
2406
|
|
2407
|
+
# The output resolution (in target georeferenced units) of the result of
|
2408
|
+
# the operation
|
2409
|
+
#
|
2104
2410
|
# @!attribute [rw] unit
|
2411
|
+
# The units for output resolution of the result.
|
2105
2412
|
# @return [String]
|
2106
2413
|
#
|
2107
2414
|
# @!attribute [rw] value
|
2415
|
+
# The value for output resolution of the result.
|
2108
2416
|
# @return [Float]
|
2109
2417
|
#
|
2110
2418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/UserDefined AWS API Documentation
|
@@ -2137,10 +2445,16 @@ module Aws::SageMakerGeospatial
|
|
2137
2445
|
# It contains configs such as ReverseGeocodingConfig and
|
2138
2446
|
# MapMatchingConfig.
|
2139
2447
|
#
|
2448
|
+
# @note VectorEnrichmentJobConfig is a union - when making an API calls you must set exactly one of the members.
|
2449
|
+
#
|
2450
|
+
# @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.
|
2451
|
+
#
|
2140
2452
|
# @!attribute [rw] map_matching_config
|
2453
|
+
# The input structure for Map Matching operation type.
|
2141
2454
|
# @return [Types::MapMatchingConfig]
|
2142
2455
|
#
|
2143
2456
|
# @!attribute [rw] reverse_geocoding_config
|
2457
|
+
# The input structure for Reverse Geocoding operation type.
|
2144
2458
|
# @return [Types::ReverseGeocodingConfig]
|
2145
2459
|
#
|
2146
2460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobConfig AWS API Documentation
|
@@ -2158,7 +2472,16 @@ module Aws::SageMakerGeospatial
|
|
2158
2472
|
class Unknown < VectorEnrichmentJobConfig; end
|
2159
2473
|
end
|
2160
2474
|
|
2475
|
+
# The input structure for the data source that represents the storage
|
2476
|
+
# type of the input data objects.
|
2477
|
+
#
|
2478
|
+
# @note VectorEnrichmentJobDataSourceConfigInput is a union - when making an API calls you must set exactly one of the members.
|
2479
|
+
#
|
2480
|
+
# @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.
|
2481
|
+
#
|
2161
2482
|
# @!attribute [rw] s3_data
|
2483
|
+
# The input structure for the Amazon S3 data that represents the
|
2484
|
+
# Amazon S3 location of the input data objects.
|
2162
2485
|
# @return [Types::VectorEnrichmentJobS3Data]
|
2163
2486
|
#
|
2164
2487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobDataSourceConfigInput AWS API Documentation
|
@@ -2204,6 +2527,8 @@ module Aws::SageMakerGeospatial
|
|
2204
2527
|
# @return [String]
|
2205
2528
|
#
|
2206
2529
|
# @!attribute [rw] type
|
2530
|
+
# The output error details for an Export operation on a Vector
|
2531
|
+
# Enrichment job.
|
2207
2532
|
# @return [String]
|
2208
2533
|
#
|
2209
2534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobExportErrorDetails AWS API Documentation
|
@@ -2218,9 +2543,12 @@ module Aws::SageMakerGeospatial
|
|
2218
2543
|
# The input structure for the InputConfig in a VectorEnrichmentJob.
|
2219
2544
|
#
|
2220
2545
|
# @!attribute [rw] data_source_config
|
2546
|
+
# The input structure for the data source that represents the storage
|
2547
|
+
# type of the input data objects.
|
2221
2548
|
# @return [Types::VectorEnrichmentJobDataSourceConfigInput]
|
2222
2549
|
#
|
2223
2550
|
# @!attribute [rw] document_type
|
2551
|
+
# The input structure that defines the data source file type.
|
2224
2552
|
# @return [String]
|
2225
2553
|
#
|
2226
2554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/VectorEnrichmentJobInputConfig AWS API Documentation
|
@@ -2235,8 +2563,7 @@ module Aws::SageMakerGeospatial
|
|
2235
2563
|
# The Amazon S3 data for the Vector Enrichment job.
|
2236
2564
|
#
|
2237
2565
|
# @!attribute [rw] kms_key_id
|
2238
|
-
# The
|
2239
|
-
# encryption.
|
2566
|
+
# The Key Management Service key ID for server-side encryption.
|
2240
2567
|
# @return [String]
|
2241
2568
|
#
|
2242
2569
|
# @!attribute [rw] s3_uri
|
@@ -2252,10 +2579,18 @@ module Aws::SageMakerGeospatial
|
|
2252
2579
|
include Aws::Structure
|
2253
2580
|
end
|
2254
2581
|
|
2582
|
+
# The input structure for specifying ViewOffNadir property filter.
|
2583
|
+
# ViewOffNadir refers to the angle from the sensor between nadir
|
2584
|
+
# (straight down) and the scene center. Measured in degrees (0-90).
|
2585
|
+
#
|
2255
2586
|
# @!attribute [rw] lower_bound
|
2587
|
+
# The minimum value for ViewOffNadir property filter. This filters
|
2588
|
+
# items having ViewOffNadir greater than or equal to this value.
|
2256
2589
|
# @return [Float]
|
2257
2590
|
#
|
2258
2591
|
# @!attribute [rw] upper_bound
|
2592
|
+
# The maximum value for ViewOffNadir property filter. This filters
|
2593
|
+
# items having ViewOffNadir lesser than or equal to this value.
|
2259
2594
|
# @return [Float]
|
2260
2595
|
#
|
2261
2596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ViewOffNadirInput AWS API Documentation
|
@@ -2267,10 +2602,19 @@ module Aws::SageMakerGeospatial
|
|
2267
2602
|
include Aws::Structure
|
2268
2603
|
end
|
2269
2604
|
|
2605
|
+
# The input structure for specifying ViewSunAzimuth property filter.
|
2606
|
+
# ViewSunAzimuth refers to the Sun azimuth angle. From the scene center
|
2607
|
+
# point on the ground, this is the angle between truth north and the
|
2608
|
+
# sun. Measured clockwise in degrees (0-360).
|
2609
|
+
#
|
2270
2610
|
# @!attribute [rw] lower_bound
|
2611
|
+
# The minimum value for ViewSunAzimuth property filter. This filters
|
2612
|
+
# items having ViewSunAzimuth greater than or equal to this value.
|
2271
2613
|
# @return [Float]
|
2272
2614
|
#
|
2273
2615
|
# @!attribute [rw] upper_bound
|
2616
|
+
# The maximum value for ViewSunAzimuth property filter. This filters
|
2617
|
+
# items having ViewSunAzimuth lesser than or equal to this value.
|
2274
2618
|
# @return [Float]
|
2275
2619
|
#
|
2276
2620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ViewSunAzimuthInput AWS API Documentation
|
@@ -2282,6 +2626,9 @@ module Aws::SageMakerGeospatial
|
|
2282
2626
|
include Aws::Structure
|
2283
2627
|
end
|
2284
2628
|
|
2629
|
+
# The input structure for specifying ViewSunElevation angle property
|
2630
|
+
# filter.
|
2631
|
+
#
|
2285
2632
|
# @!attribute [rw] lower_bound
|
2286
2633
|
# The lower bound to view the sun elevation.
|
2287
2634
|
# @return [Float]
|
@@ -2299,13 +2646,47 @@ module Aws::SageMakerGeospatial
|
|
2299
2646
|
include Aws::Structure
|
2300
2647
|
end
|
2301
2648
|
|
2649
|
+
# The structure representing input configuration of ZonalStatistics
|
2650
|
+
# operation.
|
2651
|
+
#
|
2302
2652
|
# @!attribute [rw] statistics
|
2653
|
+
# List of zonal statistics to compute.
|
2303
2654
|
# @return [Array<String>]
|
2304
2655
|
#
|
2305
2656
|
# @!attribute [rw] target_bands
|
2657
|
+
# Bands used in the operation. If no target bands are specified, it
|
2658
|
+
# uses all bands available input.
|
2306
2659
|
# @return [Array<String>]
|
2307
2660
|
#
|
2308
2661
|
# @!attribute [rw] zone_s3_path
|
2662
|
+
# The Amazon S3 path pointing to the GeoJSON containing the polygonal
|
2663
|
+
# zones.
|
2664
|
+
# @return [String]
|
2665
|
+
#
|
2666
|
+
# @!attribute [rw] zone_s3_path_kms_key_id
|
2667
|
+
# The Amazon Resource Name (ARN) or an ID of a Amazon Web Services Key
|
2668
|
+
# Management Service (Amazon Web Services KMS) key that Amazon
|
2669
|
+
# SageMaker uses to decrypt your output artifacts with Amazon S3
|
2670
|
+
# server-side encryption. The SageMaker execution role must have
|
2671
|
+
# `kms:GenerateDataKey` permission.
|
2672
|
+
#
|
2673
|
+
# The `KmsKeyId` can be any of the following formats:
|
2674
|
+
#
|
2675
|
+
# * // KMS Key ID
|
2676
|
+
#
|
2677
|
+
# `"1234abcd-12ab-34cd-56ef-1234567890ab"`
|
2678
|
+
#
|
2679
|
+
# * // Amazon Resource Name (ARN) of a KMS Key
|
2680
|
+
#
|
2681
|
+
# `"arn:aws:kms:<region>:<account>:key/<key-id-12ab-34cd-56ef-1234567890ab>"`
|
2682
|
+
#
|
2683
|
+
# For more information about key identifiers, see [Key identifiers
|
2684
|
+
# (KeyID)][1] in the Amazon Web Services Key Management Service
|
2685
|
+
# (Amazon Web Services KMS) documentation.
|
2686
|
+
#
|
2687
|
+
#
|
2688
|
+
#
|
2689
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-id
|
2309
2690
|
# @return [String]
|
2310
2691
|
#
|
2311
2692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-geospatial-2020-05-27/ZonalStatisticsConfigInput AWS API Documentation
|
@@ -2313,7 +2694,8 @@ module Aws::SageMakerGeospatial
|
|
2313
2694
|
class ZonalStatisticsConfigInput < Struct.new(
|
2314
2695
|
:statistics,
|
2315
2696
|
:target_bands,
|
2316
|
-
:zone_s3_path
|
2697
|
+
:zone_s3_path,
|
2698
|
+
:zone_s3_path_kms_key_id)
|
2317
2699
|
SENSITIVE = []
|
2318
2700
|
include Aws::Structure
|
2319
2701
|
end
|