aws-sdk-sagemakergeospatial 1.1.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db03c6cc3920a06052ab87f025fa7272dae0700ad956708c114c078156176fdf
4
- data.tar.gz: 62e6c258a8dd00d8a9e81acc3535e5fb805bbac51874bad1bc6e47fe94230adf
3
+ metadata.gz: 104e0e97bde03008ea29aeebb3eb57d01c3056c3a464f0797efbd08bd9cc781e
4
+ data.tar.gz: 46b715977a49147ef7fcc38f3d49f2c11aa235c32cee1dbbd06842d46ea98658
5
5
  SHA512:
6
- metadata.gz: 160627f8c32b8663861788e7108b4a7e00e0871167892501695bd4bf36bb9bb123dc8a4c9fdd855bc82947cbe4eda2223c67579f8c6749ae70574483afb66dac
7
- data.tar.gz: 459cb16a71357f119e2a6e867b00164e24bf0862ae8eda2a0b1c06034f5b312864514f02e6793ab483866410926f5ec8b03a69d8cfc7c46baafa2e9c5fcda430
6
+ metadata.gz: 1a2638203cc85cffa38b6dd178d00d99c35bb4042623238eb4424507e576e1559bc72015d6a947d3efe026052b611d3de49e6b5c13e4dedc3189aef7d5002b53
7
+ data.tar.gz: 264f38cab7fe8cb57dcd920d070111fa23851d485b651842ee56891f94476fa1a8bc6708b5fa160fad1705422bdfe477f05a688ca7beddc60e34b057e53e3df0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-05-18)
5
+ ------------------
6
+
7
+ * Feature - This release makes ExecutionRoleArn a required field in the StartEarthObservationJob API.
8
+
9
+ 1.2.0 (2023-03-30)
10
+ ------------------
11
+
12
+ * Feature - Amazon SageMaker geospatial capabilities now supports server-side encryption with customer managed KMS key and SageMaker notebooks with a SageMaker geospatial image in a Amazon SageMaker Domain with VPC only mode.
13
+
4
14
  1.1.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.3.0
@@ -415,12 +415,20 @@ module Aws::SageMakerGeospatial
415
415
  end
416
416
 
417
417
  # Use this operation to export results of an Earth Observation job and
418
- # optionally source images used as input to the EOJ to an S3 location.
418
+ # optionally source images used as input to the EOJ to an Amazon S3
419
+ # location.
419
420
  #
420
421
  # @option params [required, String] :arn
421
422
  # The input Amazon Resource Name (ARN) of the Earth Observation job
422
423
  # being exported.
423
424
  #
425
+ # @option params [String] :client_token
426
+ # A unique token that guarantees that the call to this API is
427
+ # idempotent.
428
+ #
429
+ # **A suitable default value is auto-generated.** You should normally
430
+ # not need to pass this option.**
431
+ #
424
432
  # @option params [required, String] :execution_role_arn
425
433
  # The Amazon Resource Name (ARN) of the IAM role that you specified for
426
434
  # the job.
@@ -445,12 +453,13 @@ module Aws::SageMakerGeospatial
445
453
  #
446
454
  # resp = client.export_earth_observation_job({
447
455
  # arn: "EarthObservationJobArn", # required
448
- # execution_role_arn: "String", # required
456
+ # client_token: "ExportEarthObservationJobInputClientTokenString",
457
+ # execution_role_arn: "ExecutionRoleArn", # required
449
458
  # export_source_images: false,
450
459
  # output_config: { # required
451
460
  # s3_data: { # required
452
- # kms_key_id: "String",
453
- # s3_uri: "String", # required
461
+ # kms_key_id: "KmsKey",
462
+ # s3_uri: "S3Uri", # required
454
463
  # },
455
464
  # },
456
465
  # })
@@ -474,12 +483,19 @@ module Aws::SageMakerGeospatial
474
483
  req.send_request(options)
475
484
  end
476
485
 
477
- # Use this operation to copy results of a Vector Enrichment job to an S3
478
- # location.
486
+ # Use this operation to copy results of a Vector Enrichment job to an
487
+ # Amazon S3 location.
479
488
  #
480
489
  # @option params [required, String] :arn
481
490
  # The Amazon Resource Name (ARN) of the Vector Enrichment job.
482
491
  #
492
+ # @option params [String] :client_token
493
+ # A unique token that guarantees that the call to this API is
494
+ # idempotent.
495
+ #
496
+ # **A suitable default value is auto-generated.** You should normally
497
+ # not need to pass this option.**
498
+ #
483
499
  # @option params [required, String] :execution_role_arn
484
500
  # The Amazon Resource Name (ARN) of the IAM rolewith permission to
485
501
  # upload to the location in OutputConfig.
@@ -500,11 +516,12 @@ module Aws::SageMakerGeospatial
500
516
  #
501
517
  # resp = client.export_vector_enrichment_job({
502
518
  # arn: "VectorEnrichmentJobArn", # required
503
- # execution_role_arn: "String", # required
519
+ # client_token: "ExportVectorEnrichmentJobInputClientTokenString",
520
+ # execution_role_arn: "ExecutionRoleArn", # required
504
521
  # output_config: { # required
505
522
  # s3_data: { # required
506
- # kms_key_id: "String",
507
- # s3_uri: "String", # required
523
+ # kms_key_id: "KmsKey",
524
+ # s3_uri: "S3Uri", # required
508
525
  # },
509
526
  # },
510
527
  # })
@@ -568,9 +585,6 @@ module Aws::SageMakerGeospatial
568
585
  # resp.export_error_details.export_source_images.message #=> String
569
586
  # resp.export_error_details.export_source_images.type #=> String, one of "CLIENT_ERROR", "SERVER_ERROR"
570
587
  # resp.export_status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED"
571
- # resp.input_config.data_source_config.s3_data.kms_key_id #=> String
572
- # resp.input_config.data_source_config.s3_data.metadata_provider #=> String, one of "PLANET_ORDER"
573
- # resp.input_config.data_source_config.s3_data.s3_uri #=> String
574
588
  # resp.input_config.previous_earth_observation_job_arn #=> String
575
589
  # resp.input_config.raster_data_collection_query.area_of_interest.area_of_interest_geometry.multi_polygon_geometry.coordinates #=> Array
576
590
  # resp.input_config.raster_data_collection_query.area_of_interest.area_of_interest_geometry.multi_polygon_geometry.coordinates[0] #=> Array
@@ -632,6 +646,7 @@ module Aws::SageMakerGeospatial
632
646
  # resp.job_config.zonal_statistics_config.target_bands #=> Array
633
647
  # resp.job_config.zonal_statistics_config.target_bands[0] #=> String
634
648
  # resp.job_config.zonal_statistics_config.zone_s3_path #=> String
649
+ # resp.job_config.zonal_statistics_config.zone_s3_path_kms_key_id #=> String
635
650
  # resp.kms_key_id #=> String
636
651
  # resp.name #=> String
637
652
  # resp.output_bands #=> Array
@@ -704,6 +719,9 @@ module Aws::SageMakerGeospatial
704
719
  # @option params [required, String] :arn
705
720
  # The Amazon Resource Name (ARN) of the tile operation.
706
721
  #
722
+ # @option params [String] :execution_role_arn
723
+ # The Amazon Resource Name (ARN) of the IAM role that you specify.
724
+ #
707
725
  # @option params [required, Array<String>] :image_assets
708
726
  # The particular assets or bands to tile.
709
727
  #
@@ -744,6 +762,7 @@ module Aws::SageMakerGeospatial
744
762
  #
745
763
  # resp = client.get_tile({
746
764
  # arn: "EarthObservationJobArn", # required
765
+ # execution_role_arn: "ExecutionRoleArn",
747
766
  # image_assets: ["String"], # required
748
767
  # image_mask: false,
749
768
  # output_data_type: "INT32", # accepts INT32, FLOAT32, INT16, FLOAT64, UINT16
@@ -1040,6 +1059,16 @@ module Aws::SageMakerGeospatial
1040
1059
  # in your next request to receive the next set of results.
1041
1060
  #
1042
1061
  # @option params [required, Types::RasterDataCollectionQueryWithBandFilterInput] :raster_data_collection_query
1062
+ # RasterDataCollectionQuery consisting of [AreaOfInterest(AOI)][1],
1063
+ # [PropertyFilters][2] and [TimeRangeFilterInput][3] used in
1064
+ # [SearchRasterDataCollection][4].
1065
+ #
1066
+ #
1067
+ #
1068
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html
1069
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html
1070
+ # [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html
1071
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html
1043
1072
  #
1044
1073
  # @return [Types::SearchRasterDataCollectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1045
1074
  #
@@ -1155,7 +1184,7 @@ module Aws::SageMakerGeospatial
1155
1184
  # **A suitable default value is auto-generated.** You should normally
1156
1185
  # not need to pass this option.**
1157
1186
  #
1158
- # @option params [String] :execution_role_arn
1187
+ # @option params [required, String] :execution_role_arn
1159
1188
  # The Amazon Resource Name (ARN) of the IAM role that you specified for
1160
1189
  # the job.
1161
1190
  #
@@ -1166,8 +1195,7 @@ module Aws::SageMakerGeospatial
1166
1195
  # An object containing information about the job configuration.
1167
1196
  #
1168
1197
  # @option params [String] :kms_key_id
1169
- # The Amazon Key Management Service (KMS) key ID for server-side
1170
- # encryption.
1198
+ # The Key Management Service key ID for server-side encryption.
1171
1199
  #
1172
1200
  # @option params [required, String] :name
1173
1201
  # The name of the Earth Observation job.
@@ -1191,17 +1219,10 @@ module Aws::SageMakerGeospatial
1191
1219
  # @example Request syntax with placeholder values
1192
1220
  #
1193
1221
  # resp = client.start_earth_observation_job({
1194
- # client_token: "String",
1195
- # execution_role_arn: "String",
1222
+ # client_token: "StartEarthObservationJobInputClientTokenString",
1223
+ # execution_role_arn: "ExecutionRoleArn", # required
1196
1224
  # input_config: { # required
1197
- # data_source_config: {
1198
- # s3_data: {
1199
- # kms_key_id: "String",
1200
- # metadata_provider: "PLANET_ORDER", # required, accepts PLANET_ORDER
1201
- # s3_uri: "String", # required
1202
- # },
1203
- # },
1204
- # previous_earth_observation_job_arn: "String",
1225
+ # previous_earth_observation_job_arn: "EarthObservationJobArn",
1205
1226
  # raster_data_collection_query: {
1206
1227
  # area_of_interest: {
1207
1228
  # area_of_interest_geometry: {
@@ -1256,7 +1277,7 @@ module Aws::SageMakerGeospatial
1256
1277
  # },
1257
1278
  # ],
1258
1279
  # },
1259
- # raster_data_collection_arn: "String", # required
1280
+ # raster_data_collection_arn: "DataCollectionArn", # required
1260
1281
  # time_range_filter: { # required
1261
1282
  # end_time: Time.now, # required
1262
1283
  # start_time: Time.now, # required
@@ -1317,11 +1338,12 @@ module Aws::SageMakerGeospatial
1317
1338
  # zonal_statistics_config: {
1318
1339
  # statistics: ["MEAN"], # required, accepts MEAN, MEDIAN, STANDARD_DEVIATION, MAX, MIN, SUM
1319
1340
  # target_bands: ["String"],
1320
- # zone_s3_path: "String", # required
1341
+ # zone_s3_path: "S3Uri", # required
1342
+ # zone_s3_path_kms_key_id: "KmsKey",
1321
1343
  # },
1322
1344
  # },
1323
- # kms_key_id: "String",
1324
- # name: "String", # required
1345
+ # kms_key_id: "KmsKey",
1346
+ # name: "StartEarthObservationJobInputNameString", # required
1325
1347
  # tags: {
1326
1348
  # "String" => "String",
1327
1349
  # },
@@ -1333,9 +1355,6 @@ module Aws::SageMakerGeospatial
1333
1355
  # resp.creation_time #=> Time
1334
1356
  # resp.duration_in_seconds #=> Integer
1335
1357
  # resp.execution_role_arn #=> String
1336
- # resp.input_config.data_source_config.s3_data.kms_key_id #=> String
1337
- # resp.input_config.data_source_config.s3_data.metadata_provider #=> String, one of "PLANET_ORDER"
1338
- # resp.input_config.data_source_config.s3_data.s3_uri #=> String
1339
1358
  # resp.input_config.previous_earth_observation_job_arn #=> String
1340
1359
  # resp.input_config.raster_data_collection_query.area_of_interest.area_of_interest_geometry.multi_polygon_geometry.coordinates #=> Array
1341
1360
  # resp.input_config.raster_data_collection_query.area_of_interest.area_of_interest_geometry.multi_polygon_geometry.coordinates[0] #=> Array
@@ -1397,6 +1416,7 @@ module Aws::SageMakerGeospatial
1397
1416
  # resp.job_config.zonal_statistics_config.target_bands #=> Array
1398
1417
  # resp.job_config.zonal_statistics_config.target_bands[0] #=> String
1399
1418
  # resp.job_config.zonal_statistics_config.zone_s3_path #=> String
1419
+ # resp.job_config.zonal_statistics_config.zone_s3_path_kms_key_id #=> String
1400
1420
  # resp.kms_key_id #=> String
1401
1421
  # resp.name #=> String
1402
1422
  # resp.status #=> String, one of "INITIALIZING", "IN_PROGRESS", "STOPPING", "COMPLETED", "STOPPED", "FAILED", "DELETING", "DELETED"
@@ -1433,8 +1453,7 @@ module Aws::SageMakerGeospatial
1433
1453
  # An object containing information about the job configuration.
1434
1454
  #
1435
1455
  # @option params [String] :kms_key_id
1436
- # The Amazon Key Management Service (KMS) key ID for server-side
1437
- # encryption.
1456
+ # The Key Management Service key ID for server-side encryption.
1438
1457
  #
1439
1458
  # @option params [required, String] :name
1440
1459
  # The name of the Vector Enrichment job.
@@ -1459,13 +1478,13 @@ module Aws::SageMakerGeospatial
1459
1478
  # @example Request syntax with placeholder values
1460
1479
  #
1461
1480
  # resp = client.start_vector_enrichment_job({
1462
- # client_token: "String",
1463
- # execution_role_arn: "String", # required
1481
+ # client_token: "StartVectorEnrichmentJobInputClientTokenString",
1482
+ # execution_role_arn: "ExecutionRoleArn", # required
1464
1483
  # input_config: { # required
1465
1484
  # data_source_config: { # required
1466
1485
  # s3_data: {
1467
- # kms_key_id: "String",
1468
- # s3_uri: "String", # required
1486
+ # kms_key_id: "KmsKey",
1487
+ # s3_uri: "S3Uri", # required
1469
1488
  # },
1470
1489
  # },
1471
1490
  # document_type: "CSV", # required, accepts CSV
@@ -1482,8 +1501,8 @@ module Aws::SageMakerGeospatial
1482
1501
  # y_attribute_name: "String", # required
1483
1502
  # },
1484
1503
  # },
1485
- # kms_key_id: "String",
1486
- # name: "String", # required
1504
+ # kms_key_id: "KmsKey",
1505
+ # name: "StartVectorEnrichmentJobInputNameString", # required
1487
1506
  # tags: {
1488
1507
  # "String" => "String",
1489
1508
  # },
@@ -1632,7 +1651,7 @@ module Aws::SageMakerGeospatial
1632
1651
  params: params,
1633
1652
  config: config)
1634
1653
  context[:gem_name] = 'aws-sdk-sagemakergeospatial'
1635
- context[:gem_version] = '1.1.0'
1654
+ context[:gem_version] = '1.3.0'
1636
1655
  Seahorse::Client::Request.new(handlers, context)
1637
1656
  end
1638
1657