aws-sdk-sagemakergeospatial 1.1.0 → 1.2.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: 5ec99f00b0ff1d3021c94281f610971245e8c3c574b1af71640e0b2b361f0405
4
+ data.tar.gz: 3c56fa75e5c65096278b911313598ec5ef607c98e8fb0f3e0e345a405958e1a6
5
5
  SHA512:
6
- metadata.gz: 160627f8c32b8663861788e7108b4a7e00e0871167892501695bd4bf36bb9bb123dc8a4c9fdd855bc82947cbe4eda2223c67579f8c6749ae70574483afb66dac
7
- data.tar.gz: 459cb16a71357f119e2a6e867b00164e24bf0862ae8eda2a0b1c06034f5b312864514f02e6793ab483866410926f5ec8b03a69d8cfc7c46baafa2e9c5fcda430
6
+ metadata.gz: 27295a8f7c6e777d9c19575e019571152ad884b0d116b89faf622940583bb0ec51fc87c2d439c7e8dd1f9e4172f0141a206c85f97d6e3cc4861453b1ac70a568
7
+ data.tar.gz: d6cba4872ade6e2bc7b768a0e04cade9482346659269b19355e12b96f685b5846875e35f22d5b8db8bda8c01863841b863476afd9886cdd4aad013dd0550fe45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2023-03-30)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.1.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.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
  # })
@@ -632,6 +649,7 @@ module Aws::SageMakerGeospatial
632
649
  # resp.job_config.zonal_statistics_config.target_bands #=> Array
633
650
  # resp.job_config.zonal_statistics_config.target_bands[0] #=> String
634
651
  # resp.job_config.zonal_statistics_config.zone_s3_path #=> String
652
+ # resp.job_config.zonal_statistics_config.zone_s3_path_kms_key_id #=> String
635
653
  # resp.kms_key_id #=> String
636
654
  # resp.name #=> String
637
655
  # resp.output_bands #=> Array
@@ -704,6 +722,9 @@ module Aws::SageMakerGeospatial
704
722
  # @option params [required, String] :arn
705
723
  # The Amazon Resource Name (ARN) of the tile operation.
706
724
  #
725
+ # @option params [String] :execution_role_arn
726
+ # The Amazon Resource Name (ARN) of the IAM role that you specify.
727
+ #
707
728
  # @option params [required, Array<String>] :image_assets
708
729
  # The particular assets or bands to tile.
709
730
  #
@@ -744,6 +765,7 @@ module Aws::SageMakerGeospatial
744
765
  #
745
766
  # resp = client.get_tile({
746
767
  # arn: "EarthObservationJobArn", # required
768
+ # execution_role_arn: "ExecutionRoleArn",
747
769
  # image_assets: ["String"], # required
748
770
  # image_mask: false,
749
771
  # output_data_type: "INT32", # accepts INT32, FLOAT32, INT16, FLOAT64, UINT16
@@ -1040,6 +1062,16 @@ module Aws::SageMakerGeospatial
1040
1062
  # in your next request to receive the next set of results.
1041
1063
  #
1042
1064
  # @option params [required, Types::RasterDataCollectionQueryWithBandFilterInput] :raster_data_collection_query
1065
+ # RasterDataCollectionQuery consisting of [AreaOfInterest(AOI)][1],
1066
+ # [PropertyFilters][2] and [TimeRangeFilterInput][3] used in
1067
+ # [SearchRasterDataCollection][4].
1068
+ #
1069
+ #
1070
+ #
1071
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_AreaOfInterest.html
1072
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_PropertyFilter.html
1073
+ # [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_TimeRangeFilterInput.html
1074
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_geospatial_SearchRasterDataCollection.html
1043
1075
  #
1044
1076
  # @return [Types::SearchRasterDataCollectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1045
1077
  #
@@ -1166,8 +1198,7 @@ module Aws::SageMakerGeospatial
1166
1198
  # An object containing information about the job configuration.
1167
1199
  #
1168
1200
  # @option params [String] :kms_key_id
1169
- # The Amazon Key Management Service (KMS) key ID for server-side
1170
- # encryption.
1201
+ # The Key Management Service key ID for server-side encryption.
1171
1202
  #
1172
1203
  # @option params [required, String] :name
1173
1204
  # The name of the Earth Observation job.
@@ -1191,17 +1222,17 @@ module Aws::SageMakerGeospatial
1191
1222
  # @example Request syntax with placeholder values
1192
1223
  #
1193
1224
  # resp = client.start_earth_observation_job({
1194
- # client_token: "String",
1195
- # execution_role_arn: "String",
1225
+ # client_token: "StartEarthObservationJobInputClientTokenString",
1226
+ # execution_role_arn: "ExecutionRoleArn",
1196
1227
  # input_config: { # required
1197
1228
  # data_source_config: {
1198
1229
  # s3_data: {
1199
- # kms_key_id: "String",
1230
+ # kms_key_id: "KmsKey",
1200
1231
  # metadata_provider: "PLANET_ORDER", # required, accepts PLANET_ORDER
1201
- # s3_uri: "String", # required
1232
+ # s3_uri: "S3Uri", # required
1202
1233
  # },
1203
1234
  # },
1204
- # previous_earth_observation_job_arn: "String",
1235
+ # previous_earth_observation_job_arn: "EarthObservationJobArn",
1205
1236
  # raster_data_collection_query: {
1206
1237
  # area_of_interest: {
1207
1238
  # area_of_interest_geometry: {
@@ -1256,7 +1287,7 @@ module Aws::SageMakerGeospatial
1256
1287
  # },
1257
1288
  # ],
1258
1289
  # },
1259
- # raster_data_collection_arn: "String", # required
1290
+ # raster_data_collection_arn: "DataCollectionArn", # required
1260
1291
  # time_range_filter: { # required
1261
1292
  # end_time: Time.now, # required
1262
1293
  # start_time: Time.now, # required
@@ -1317,11 +1348,12 @@ module Aws::SageMakerGeospatial
1317
1348
  # zonal_statistics_config: {
1318
1349
  # statistics: ["MEAN"], # required, accepts MEAN, MEDIAN, STANDARD_DEVIATION, MAX, MIN, SUM
1319
1350
  # target_bands: ["String"],
1320
- # zone_s3_path: "String", # required
1351
+ # zone_s3_path: "S3Uri", # required
1352
+ # zone_s3_path_kms_key_id: "KmsKey",
1321
1353
  # },
1322
1354
  # },
1323
- # kms_key_id: "String",
1324
- # name: "String", # required
1355
+ # kms_key_id: "KmsKey",
1356
+ # name: "StartEarthObservationJobInputNameString", # required
1325
1357
  # tags: {
1326
1358
  # "String" => "String",
1327
1359
  # },
@@ -1397,6 +1429,7 @@ module Aws::SageMakerGeospatial
1397
1429
  # resp.job_config.zonal_statistics_config.target_bands #=> Array
1398
1430
  # resp.job_config.zonal_statistics_config.target_bands[0] #=> String
1399
1431
  # resp.job_config.zonal_statistics_config.zone_s3_path #=> String
1432
+ # resp.job_config.zonal_statistics_config.zone_s3_path_kms_key_id #=> String
1400
1433
  # resp.kms_key_id #=> String
1401
1434
  # resp.name #=> String
1402
1435
  # resp.status #=> String, one of "INITIALIZING", "IN_PROGRESS", "STOPPING", "COMPLETED", "STOPPED", "FAILED", "DELETING", "DELETED"
@@ -1433,8 +1466,7 @@ module Aws::SageMakerGeospatial
1433
1466
  # An object containing information about the job configuration.
1434
1467
  #
1435
1468
  # @option params [String] :kms_key_id
1436
- # The Amazon Key Management Service (KMS) key ID for server-side
1437
- # encryption.
1469
+ # The Key Management Service key ID for server-side encryption.
1438
1470
  #
1439
1471
  # @option params [required, String] :name
1440
1472
  # The name of the Vector Enrichment job.
@@ -1459,13 +1491,13 @@ module Aws::SageMakerGeospatial
1459
1491
  # @example Request syntax with placeholder values
1460
1492
  #
1461
1493
  # resp = client.start_vector_enrichment_job({
1462
- # client_token: "String",
1463
- # execution_role_arn: "String", # required
1494
+ # client_token: "StartVectorEnrichmentJobInputClientTokenString",
1495
+ # execution_role_arn: "ExecutionRoleArn", # required
1464
1496
  # input_config: { # required
1465
1497
  # data_source_config: { # required
1466
1498
  # s3_data: {
1467
- # kms_key_id: "String",
1468
- # s3_uri: "String", # required
1499
+ # kms_key_id: "KmsKey",
1500
+ # s3_uri: "S3Uri", # required
1469
1501
  # },
1470
1502
  # },
1471
1503
  # document_type: "CSV", # required, accepts CSV
@@ -1482,8 +1514,8 @@ module Aws::SageMakerGeospatial
1482
1514
  # y_attribute_name: "String", # required
1483
1515
  # },
1484
1516
  # },
1485
- # kms_key_id: "String",
1486
- # name: "String", # required
1517
+ # kms_key_id: "KmsKey",
1518
+ # name: "StartVectorEnrichmentJobInputNameString", # required
1487
1519
  # tags: {
1488
1520
  # "String" => "String",
1489
1521
  # },
@@ -1632,7 +1664,7 @@ module Aws::SageMakerGeospatial
1632
1664
  params: params,
1633
1665
  config: config)
1634
1666
  context[:gem_name] = 'aws-sdk-sagemakergeospatial'
1635
- context[:gem_version] = '1.1.0'
1667
+ context[:gem_version] = '1.2.0'
1636
1668
  Seahorse::Client::Request.new(handlers, context)
1637
1669
  end
1638
1670
 
@@ -47,13 +47,16 @@ module Aws::SageMakerGeospatial
47
47
  EarthObservationJobStatus = Shapes::StringShape.new(name: 'EarthObservationJobStatus')
48
48
  EoCloudCoverInput = Shapes::StructureShape.new(name: 'EoCloudCoverInput')
49
49
  EojDataSourceConfigInput = Shapes::UnionShape.new(name: 'EojDataSourceConfigInput')
50
+ ExecutionRoleArn = Shapes::StringShape.new(name: 'ExecutionRoleArn')
50
51
  ExportEarthObservationJobInput = Shapes::StructureShape.new(name: 'ExportEarthObservationJobInput')
52
+ ExportEarthObservationJobInputClientTokenString = Shapes::StringShape.new(name: 'ExportEarthObservationJobInputClientTokenString')
51
53
  ExportEarthObservationJobOutput = Shapes::StructureShape.new(name: 'ExportEarthObservationJobOutput')
52
54
  ExportErrorDetails = Shapes::StructureShape.new(name: 'ExportErrorDetails')
53
55
  ExportErrorDetailsOutput = Shapes::StructureShape.new(name: 'ExportErrorDetailsOutput')
54
56
  ExportErrorType = Shapes::StringShape.new(name: 'ExportErrorType')
55
57
  ExportS3DataInput = Shapes::StructureShape.new(name: 'ExportS3DataInput')
56
58
  ExportVectorEnrichmentJobInput = Shapes::StructureShape.new(name: 'ExportVectorEnrichmentJobInput')
59
+ ExportVectorEnrichmentJobInputClientTokenString = Shapes::StringShape.new(name: 'ExportVectorEnrichmentJobInputClientTokenString')
57
60
  ExportVectorEnrichmentJobOutput = Shapes::StructureShape.new(name: 'ExportVectorEnrichmentJobOutput')
58
61
  ExportVectorEnrichmentJobOutputConfig = Shapes::StructureShape.new(name: 'ExportVectorEnrichmentJobOutputConfig')
59
62
  Filter = Shapes::StructureShape.new(name: 'Filter')
@@ -78,6 +81,7 @@ module Aws::SageMakerGeospatial
78
81
  ItemSource = Shapes::StructureShape.new(name: 'ItemSource')
79
82
  ItemSourceList = Shapes::ListShape.new(name: 'ItemSourceList')
80
83
  JobConfigInput = Shapes::UnionShape.new(name: 'JobConfigInput')
84
+ KmsKey = Shapes::StringShape.new(name: 'KmsKey')
81
85
  LandCoverSegmentationConfigInput = Shapes::StructureShape.new(name: 'LandCoverSegmentationConfigInput')
82
86
  LandsatCloudCoverLandInput = Shapes::StructureShape.new(name: 'LandsatCloudCoverLandInput')
83
87
  LinearRing = Shapes::ListShape.new(name: 'LinearRing')
@@ -125,14 +129,19 @@ module Aws::SageMakerGeospatial
125
129
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
126
130
  ReverseGeocodingConfig = Shapes::StructureShape.new(name: 'ReverseGeocodingConfig')
127
131
  S3DataInput = Shapes::StructureShape.new(name: 'S3DataInput')
132
+ S3Uri = Shapes::StringShape.new(name: 'S3Uri')
128
133
  SearchRasterDataCollectionInput = Shapes::StructureShape.new(name: 'SearchRasterDataCollectionInput')
129
134
  SearchRasterDataCollectionOutput = Shapes::StructureShape.new(name: 'SearchRasterDataCollectionOutput')
130
135
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
131
136
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
132
137
  StackConfigInput = Shapes::StructureShape.new(name: 'StackConfigInput')
133
138
  StartEarthObservationJobInput = Shapes::StructureShape.new(name: 'StartEarthObservationJobInput')
139
+ StartEarthObservationJobInputClientTokenString = Shapes::StringShape.new(name: 'StartEarthObservationJobInputClientTokenString')
140
+ StartEarthObservationJobInputNameString = Shapes::StringShape.new(name: 'StartEarthObservationJobInputNameString')
134
141
  StartEarthObservationJobOutput = Shapes::StructureShape.new(name: 'StartEarthObservationJobOutput')
135
142
  StartVectorEnrichmentJobInput = Shapes::StructureShape.new(name: 'StartVectorEnrichmentJobInput')
143
+ StartVectorEnrichmentJobInputClientTokenString = Shapes::StringShape.new(name: 'StartVectorEnrichmentJobInputClientTokenString')
144
+ StartVectorEnrichmentJobInputNameString = Shapes::StringShape.new(name: 'StartVectorEnrichmentJobInputNameString')
136
145
  StartVectorEnrichmentJobOutput = Shapes::StructureShape.new(name: 'StartVectorEnrichmentJobOutput')
137
146
  StopEarthObservationJobInput = Shapes::StructureShape.new(name: 'StopEarthObservationJobInput')
138
147
  StopEarthObservationJobOutput = Shapes::StructureShape.new(name: 'StopEarthObservationJobOutput')
@@ -140,6 +149,7 @@ module Aws::SageMakerGeospatial
140
149
  StopVectorEnrichmentJobOutput = Shapes::StructureShape.new(name: 'StopVectorEnrichmentJobOutput')
141
150
  String = Shapes::StringShape.new(name: 'String')
142
151
  StringListInput = Shapes::ListShape.new(name: 'StringListInput')
152
+ SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
143
153
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
144
154
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
145
155
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
@@ -150,6 +160,7 @@ module Aws::SageMakerGeospatial
150
160
  TemporalStatisticsListInput = Shapes::ListShape.new(name: 'TemporalStatisticsListInput')
151
161
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
152
162
  TimeRangeFilterInput = Shapes::StructureShape.new(name: 'TimeRangeFilterInput')
163
+ TimeRangeFilterOutput = Shapes::StructureShape.new(name: 'TimeRangeFilterOutput')
153
164
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
154
165
  Unit = Shapes::StringShape.new(name: 'Unit')
155
166
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
@@ -212,7 +223,7 @@ module Aws::SageMakerGeospatial
212
223
  CloudRemovalConfigInput.struct_class = Types::CloudRemovalConfigInput
213
224
 
214
225
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
215
- ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
226
+ ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
216
227
  ConflictException.struct_class = Types::ConflictException
217
228
 
218
229
  CustomIndicesInput.add_member(:operations, Shapes::ShapeRef.new(shape: OperationsListInput, location_name: "Operations"))
@@ -249,14 +260,15 @@ module Aws::SageMakerGeospatial
249
260
  EojDataSourceConfigInput.struct_class = Types::EojDataSourceConfigInput
250
261
 
251
262
  ExportEarthObservationJobInput.add_member(:arn, Shapes::ShapeRef.new(shape: EarthObservationJobArn, required: true, location_name: "Arn"))
252
- ExportEarthObservationJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
263
+ ExportEarthObservationJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ExportEarthObservationJobInputClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
264
+ ExportEarthObservationJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
253
265
  ExportEarthObservationJobInput.add_member(:export_source_images, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExportSourceImages"))
254
266
  ExportEarthObservationJobInput.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfigInput, required: true, location_name: "OutputConfig"))
255
267
  ExportEarthObservationJobInput.struct_class = Types::ExportEarthObservationJobInput
256
268
 
257
269
  ExportEarthObservationJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: EarthObservationJobArn, required: true, location_name: "Arn"))
258
- ExportEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
259
- ExportEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
270
+ ExportEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
271
+ ExportEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
260
272
  ExportEarthObservationJobOutput.add_member(:export_source_images, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExportSourceImages"))
261
273
  ExportEarthObservationJobOutput.add_member(:export_status, Shapes::ShapeRef.new(shape: EarthObservationJobExportStatus, required: true, location_name: "ExportStatus"))
262
274
  ExportEarthObservationJobOutput.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfigInput, required: true, location_name: "OutputConfig"))
@@ -270,18 +282,19 @@ module Aws::SageMakerGeospatial
270
282
  ExportErrorDetailsOutput.add_member(:type, Shapes::ShapeRef.new(shape: ExportErrorType, location_name: "Type"))
271
283
  ExportErrorDetailsOutput.struct_class = Types::ExportErrorDetailsOutput
272
284
 
273
- ExportS3DataInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
274
- ExportS3DataInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3Uri"))
285
+ ExportS3DataInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
286
+ ExportS3DataInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
275
287
  ExportS3DataInput.struct_class = Types::ExportS3DataInput
276
288
 
277
289
  ExportVectorEnrichmentJobInput.add_member(:arn, Shapes::ShapeRef.new(shape: VectorEnrichmentJobArn, required: true, location_name: "Arn"))
278
- ExportVectorEnrichmentJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
290
+ ExportVectorEnrichmentJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ExportVectorEnrichmentJobInputClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
291
+ ExportVectorEnrichmentJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
279
292
  ExportVectorEnrichmentJobInput.add_member(:output_config, Shapes::ShapeRef.new(shape: ExportVectorEnrichmentJobOutputConfig, required: true, location_name: "OutputConfig"))
280
293
  ExportVectorEnrichmentJobInput.struct_class = Types::ExportVectorEnrichmentJobInput
281
294
 
282
295
  ExportVectorEnrichmentJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: VectorEnrichmentJobArn, required: true, location_name: "Arn"))
283
- ExportVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
284
- ExportVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
296
+ ExportVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
297
+ ExportVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
285
298
  ExportVectorEnrichmentJobOutput.add_member(:export_status, Shapes::ShapeRef.new(shape: VectorEnrichmentJobExportStatus, required: true, location_name: "ExportStatus"))
286
299
  ExportVectorEnrichmentJobOutput.add_member(:output_config, Shapes::ShapeRef.new(shape: ExportVectorEnrichmentJobOutputConfig, required: true, location_name: "OutputConfig"))
287
300
  ExportVectorEnrichmentJobOutput.struct_class = Types::ExportVectorEnrichmentJobOutput
@@ -309,15 +322,15 @@ module Aws::SageMakerGeospatial
309
322
  GetEarthObservationJobInput.struct_class = Types::GetEarthObservationJobInput
310
323
 
311
324
  GetEarthObservationJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
312
- GetEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
325
+ GetEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
313
326
  GetEarthObservationJobOutput.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
314
327
  GetEarthObservationJobOutput.add_member(:error_details, Shapes::ShapeRef.new(shape: EarthObservationJobErrorDetails, location_name: "ErrorDetails"))
315
- GetEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ExecutionRoleArn"))
328
+ GetEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, location_name: "ExecutionRoleArn"))
316
329
  GetEarthObservationJobOutput.add_member(:export_error_details, Shapes::ShapeRef.new(shape: ExportErrorDetails, location_name: "ExportErrorDetails"))
317
330
  GetEarthObservationJobOutput.add_member(:export_status, Shapes::ShapeRef.new(shape: EarthObservationJobExportStatus, location_name: "ExportStatus"))
318
331
  GetEarthObservationJobOutput.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfigOutput, required: true, location_name: "InputConfig"))
319
332
  GetEarthObservationJobOutput.add_member(:job_config, Shapes::ShapeRef.new(shape: JobConfigInput, required: true, location_name: "JobConfig"))
320
- GetEarthObservationJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
333
+ GetEarthObservationJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
321
334
  GetEarthObservationJobOutput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
322
335
  GetEarthObservationJobOutput.add_member(:output_bands, Shapes::ShapeRef.new(shape: EarthObservationJobOutputBands, location_name: "OutputBands"))
323
336
  GetEarthObservationJobOutput.add_member(:status, Shapes::ShapeRef.new(shape: EarthObservationJobStatus, required: true, location_name: "Status"))
@@ -338,6 +351,7 @@ module Aws::SageMakerGeospatial
338
351
  GetRasterDataCollectionOutput.struct_class = Types::GetRasterDataCollectionOutput
339
352
 
340
353
  GetTileInput.add_member(:arn, Shapes::ShapeRef.new(shape: EarthObservationJobArn, required: true, location: "querystring", location_name: "Arn"))
354
+ GetTileInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, location: "querystring", location_name: "ExecutionRoleArn"))
341
355
  GetTileInput.add_member(:image_assets, Shapes::ShapeRef.new(shape: StringListInput, required: true, location: "querystring", location_name: "ImageAssets"))
342
356
  GetTileInput.add_member(:image_mask, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "ImageMask"))
343
357
  GetTileInput.add_member(:output_data_type, Shapes::ShapeRef.new(shape: OutputType, location: "querystring", location_name: "OutputDataType"))
@@ -359,15 +373,15 @@ module Aws::SageMakerGeospatial
359
373
  GetVectorEnrichmentJobInput.struct_class = Types::GetVectorEnrichmentJobInput
360
374
 
361
375
  GetVectorEnrichmentJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
362
- GetVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
376
+ GetVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
363
377
  GetVectorEnrichmentJobOutput.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
364
378
  GetVectorEnrichmentJobOutput.add_member(:error_details, Shapes::ShapeRef.new(shape: VectorEnrichmentJobErrorDetails, location_name: "ErrorDetails"))
365
- GetVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
379
+ GetVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
366
380
  GetVectorEnrichmentJobOutput.add_member(:export_error_details, Shapes::ShapeRef.new(shape: VectorEnrichmentJobExportErrorDetails, location_name: "ExportErrorDetails"))
367
381
  GetVectorEnrichmentJobOutput.add_member(:export_status, Shapes::ShapeRef.new(shape: VectorEnrichmentJobExportStatus, location_name: "ExportStatus"))
368
382
  GetVectorEnrichmentJobOutput.add_member(:input_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobInputConfig, required: true, location_name: "InputConfig"))
369
383
  GetVectorEnrichmentJobOutput.add_member(:job_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobConfig, required: true, location_name: "JobConfig"))
370
- GetVectorEnrichmentJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
384
+ GetVectorEnrichmentJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
371
385
  GetVectorEnrichmentJobOutput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
372
386
  GetVectorEnrichmentJobOutput.add_member(:status, Shapes::ShapeRef.new(shape: VectorEnrichmentJobStatus, required: true, location_name: "Status"))
373
387
  GetVectorEnrichmentJobOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
@@ -377,17 +391,17 @@ module Aws::SageMakerGeospatial
377
391
  ImageSourceBandList.member = Shapes::ShapeRef.new(shape: String)
378
392
 
379
393
  InputConfigInput.add_member(:data_source_config, Shapes::ShapeRef.new(shape: EojDataSourceConfigInput, location_name: "DataSourceConfig"))
380
- InputConfigInput.add_member(:previous_earth_observation_job_arn, Shapes::ShapeRef.new(shape: String, location_name: "PreviousEarthObservationJobArn"))
394
+ InputConfigInput.add_member(:previous_earth_observation_job_arn, Shapes::ShapeRef.new(shape: EarthObservationJobArn, location_name: "PreviousEarthObservationJobArn"))
381
395
  InputConfigInput.add_member(:raster_data_collection_query, Shapes::ShapeRef.new(shape: RasterDataCollectionQueryInput, location_name: "RasterDataCollectionQuery"))
382
396
  InputConfigInput.struct_class = Types::InputConfigInput
383
397
 
384
398
  InputConfigOutput.add_member(:data_source_config, Shapes::ShapeRef.new(shape: EojDataSourceConfigInput, location_name: "DataSourceConfig"))
385
- InputConfigOutput.add_member(:previous_earth_observation_job_arn, Shapes::ShapeRef.new(shape: String, location_name: "PreviousEarthObservationJobArn"))
399
+ InputConfigOutput.add_member(:previous_earth_observation_job_arn, Shapes::ShapeRef.new(shape: EarthObservationJobArn, location_name: "PreviousEarthObservationJobArn"))
386
400
  InputConfigOutput.add_member(:raster_data_collection_query, Shapes::ShapeRef.new(shape: RasterDataCollectionQueryOutput, location_name: "RasterDataCollectionQuery"))
387
401
  InputConfigOutput.struct_class = Types::InputConfigOutput
388
402
 
389
403
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
390
- InternalServerException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
404
+ InternalServerException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
391
405
  InternalServerException.struct_class = Types::InternalServerException
392
406
 
393
407
  ItemSource.add_member(:assets, Shapes::ShapeRef.new(shape: AssetsMap, location_name: "Assets"))
@@ -445,7 +459,7 @@ module Aws::SageMakerGeospatial
445
459
  ListEarthObservationJobOutput.struct_class = Types::ListEarthObservationJobOutput
446
460
 
447
461
  ListEarthObservationJobOutputConfig.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
448
- ListEarthObservationJobOutputConfig.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
462
+ ListEarthObservationJobOutputConfig.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
449
463
  ListEarthObservationJobOutputConfig.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
450
464
  ListEarthObservationJobOutputConfig.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
451
465
  ListEarthObservationJobOutputConfig.add_member(:operation_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OperationType"))
@@ -479,7 +493,7 @@ module Aws::SageMakerGeospatial
479
493
  ListVectorEnrichmentJobOutput.struct_class = Types::ListVectorEnrichmentJobOutput
480
494
 
481
495
  ListVectorEnrichmentJobOutputConfig.add_member(:arn, Shapes::ShapeRef.new(shape: VectorEnrichmentJobArn, required: true, location_name: "Arn"))
482
- ListVectorEnrichmentJobOutputConfig.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
496
+ ListVectorEnrichmentJobOutputConfig.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
483
497
  ListVectorEnrichmentJobOutputConfig.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
484
498
  ListVectorEnrichmentJobOutputConfig.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
485
499
  ListVectorEnrichmentJobOutputConfig.add_member(:status, Shapes::ShapeRef.new(shape: VectorEnrichmentJobStatus, required: true, location_name: "Status"))
@@ -570,15 +584,15 @@ module Aws::SageMakerGeospatial
570
584
 
571
585
  RasterDataCollectionQueryInput.add_member(:area_of_interest, Shapes::ShapeRef.new(shape: AreaOfInterest, location_name: "AreaOfInterest"))
572
586
  RasterDataCollectionQueryInput.add_member(:property_filters, Shapes::ShapeRef.new(shape: PropertyFilters, location_name: "PropertyFilters"))
573
- RasterDataCollectionQueryInput.add_member(:raster_data_collection_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RasterDataCollectionArn"))
587
+ RasterDataCollectionQueryInput.add_member(:raster_data_collection_arn, Shapes::ShapeRef.new(shape: DataCollectionArn, required: true, location_name: "RasterDataCollectionArn"))
574
588
  RasterDataCollectionQueryInput.add_member(:time_range_filter, Shapes::ShapeRef.new(shape: TimeRangeFilterInput, required: true, location_name: "TimeRangeFilter"))
575
589
  RasterDataCollectionQueryInput.struct_class = Types::RasterDataCollectionQueryInput
576
590
 
577
591
  RasterDataCollectionQueryOutput.add_member(:area_of_interest, Shapes::ShapeRef.new(shape: AreaOfInterest, location_name: "AreaOfInterest"))
578
592
  RasterDataCollectionQueryOutput.add_member(:property_filters, Shapes::ShapeRef.new(shape: PropertyFilters, location_name: "PropertyFilters"))
579
- RasterDataCollectionQueryOutput.add_member(:raster_data_collection_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RasterDataCollectionArn"))
593
+ RasterDataCollectionQueryOutput.add_member(:raster_data_collection_arn, Shapes::ShapeRef.new(shape: DataCollectionArn, required: true, location_name: "RasterDataCollectionArn"))
580
594
  RasterDataCollectionQueryOutput.add_member(:raster_data_collection_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RasterDataCollectionName"))
581
- RasterDataCollectionQueryOutput.add_member(:time_range_filter, Shapes::ShapeRef.new(shape: TimeRangeFilterInput, required: true, location_name: "TimeRangeFilter"))
595
+ RasterDataCollectionQueryOutput.add_member(:time_range_filter, Shapes::ShapeRef.new(shape: TimeRangeFilterOutput, required: true, location_name: "TimeRangeFilter"))
582
596
  RasterDataCollectionQueryOutput.struct_class = Types::RasterDataCollectionQueryOutput
583
597
 
584
598
  RasterDataCollectionQueryWithBandFilterInput.add_member(:area_of_interest, Shapes::ShapeRef.new(shape: AreaOfInterest, location_name: "AreaOfInterest"))
@@ -593,16 +607,16 @@ module Aws::SageMakerGeospatial
593
607
  ResamplingConfigInput.struct_class = Types::ResamplingConfigInput
594
608
 
595
609
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
596
- ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
610
+ ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
597
611
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
598
612
 
599
613
  ReverseGeocodingConfig.add_member(:x_attribute_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "XAttributeName"))
600
614
  ReverseGeocodingConfig.add_member(:y_attribute_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "YAttributeName"))
601
615
  ReverseGeocodingConfig.struct_class = Types::ReverseGeocodingConfig
602
616
 
603
- S3DataInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
617
+ S3DataInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
604
618
  S3DataInput.add_member(:metadata_provider, Shapes::ShapeRef.new(shape: MetadataProvider, required: true, location_name: "MetadataProvider"))
605
- S3DataInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3Uri"))
619
+ S3DataInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
606
620
  S3DataInput.struct_class = Types::S3DataInput
607
621
 
608
622
  SearchRasterDataCollectionInput.add_member(:arn, Shapes::ShapeRef.new(shape: DataCollectionArn, required: true, location_name: "Arn"))
@@ -616,50 +630,50 @@ module Aws::SageMakerGeospatial
616
630
  SearchRasterDataCollectionOutput.struct_class = Types::SearchRasterDataCollectionOutput
617
631
 
618
632
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
619
- ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
633
+ ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
620
634
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
621
635
 
622
636
  StackConfigInput.add_member(:output_resolution, Shapes::ShapeRef.new(shape: OutputResolutionStackInput, location_name: "OutputResolution"))
623
637
  StackConfigInput.add_member(:target_bands, Shapes::ShapeRef.new(shape: StringListInput, location_name: "TargetBands"))
624
638
  StackConfigInput.struct_class = Types::StackConfigInput
625
639
 
626
- StartEarthObservationJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
627
- StartEarthObservationJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ExecutionRoleArn"))
640
+ StartEarthObservationJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: StartEarthObservationJobInputClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
641
+ StartEarthObservationJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, location_name: "ExecutionRoleArn"))
628
642
  StartEarthObservationJobInput.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfigInput, required: true, location_name: "InputConfig"))
629
643
  StartEarthObservationJobInput.add_member(:job_config, Shapes::ShapeRef.new(shape: JobConfigInput, required: true, location_name: "JobConfig"))
630
- StartEarthObservationJobInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
631
- StartEarthObservationJobInput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
644
+ StartEarthObservationJobInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
645
+ StartEarthObservationJobInput.add_member(:name, Shapes::ShapeRef.new(shape: StartEarthObservationJobInputNameString, required: true, location_name: "Name"))
632
646
  StartEarthObservationJobInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
633
647
  StartEarthObservationJobInput.struct_class = Types::StartEarthObservationJobInput
634
648
 
635
649
  StartEarthObservationJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
636
- StartEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
650
+ StartEarthObservationJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
637
651
  StartEarthObservationJobOutput.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
638
- StartEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "ExecutionRoleArn"))
652
+ StartEarthObservationJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, location_name: "ExecutionRoleArn"))
639
653
  StartEarthObservationJobOutput.add_member(:input_config, Shapes::ShapeRef.new(shape: InputConfigOutput, location_name: "InputConfig"))
640
654
  StartEarthObservationJobOutput.add_member(:job_config, Shapes::ShapeRef.new(shape: JobConfigInput, required: true, location_name: "JobConfig"))
641
- StartEarthObservationJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
655
+ StartEarthObservationJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
642
656
  StartEarthObservationJobOutput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
643
657
  StartEarthObservationJobOutput.add_member(:status, Shapes::ShapeRef.new(shape: EarthObservationJobStatus, required: true, location_name: "Status"))
644
658
  StartEarthObservationJobOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
645
659
  StartEarthObservationJobOutput.struct_class = Types::StartEarthObservationJobOutput
646
660
 
647
- StartVectorEnrichmentJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
648
- StartVectorEnrichmentJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
661
+ StartVectorEnrichmentJobInput.add_member(:client_token, Shapes::ShapeRef.new(shape: StartVectorEnrichmentJobInputClientTokenString, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
662
+ StartVectorEnrichmentJobInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
649
663
  StartVectorEnrichmentJobInput.add_member(:input_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobInputConfig, required: true, location_name: "InputConfig"))
650
664
  StartVectorEnrichmentJobInput.add_member(:job_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobConfig, required: true, location_name: "JobConfig"))
651
- StartVectorEnrichmentJobInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
652
- StartVectorEnrichmentJobInput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
665
+ StartVectorEnrichmentJobInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
666
+ StartVectorEnrichmentJobInput.add_member(:name, Shapes::ShapeRef.new(shape: StartVectorEnrichmentJobInputNameString, required: true, location_name: "Name"))
653
667
  StartVectorEnrichmentJobInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
654
668
  StartVectorEnrichmentJobInput.struct_class = Types::StartVectorEnrichmentJobInput
655
669
 
656
670
  StartVectorEnrichmentJobOutput.add_member(:arn, Shapes::ShapeRef.new(shape: VectorEnrichmentJobArn, required: true, location_name: "Arn"))
657
- StartVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
671
+ StartVectorEnrichmentJobOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "CreationTime"))
658
672
  StartVectorEnrichmentJobOutput.add_member(:duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DurationInSeconds"))
659
- StartVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExecutionRoleArn"))
673
+ StartVectorEnrichmentJobOutput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
660
674
  StartVectorEnrichmentJobOutput.add_member(:input_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobInputConfig, required: true, location_name: "InputConfig"))
661
675
  StartVectorEnrichmentJobOutput.add_member(:job_config, Shapes::ShapeRef.new(shape: VectorEnrichmentJobConfig, required: true, location_name: "JobConfig"))
662
- StartVectorEnrichmentJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
676
+ StartVectorEnrichmentJobOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
663
677
  StartVectorEnrichmentJobOutput.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
664
678
  StartVectorEnrichmentJobOutput.add_member(:status, Shapes::ShapeRef.new(shape: VectorEnrichmentJobStatus, required: true, location_name: "Status"))
665
679
  StartVectorEnrichmentJobOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
@@ -697,13 +711,17 @@ module Aws::SageMakerGeospatial
697
711
  TemporalStatisticsListInput.member = Shapes::ShapeRef.new(shape: TemporalStatistics)
698
712
 
699
713
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
700
- ThrottlingException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
714
+ ThrottlingException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
701
715
  ThrottlingException.struct_class = Types::ThrottlingException
702
716
 
703
717
  TimeRangeFilterInput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EndTime"))
704
718
  TimeRangeFilterInput.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartTime"))
705
719
  TimeRangeFilterInput.struct_class = Types::TimeRangeFilterInput
706
720
 
721
+ TimeRangeFilterOutput.add_member(:end_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "EndTime"))
722
+ TimeRangeFilterOutput.add_member(:start_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "StartTime"))
723
+ TimeRangeFilterOutput.struct_class = Types::TimeRangeFilterOutput
724
+
707
725
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "ResourceArn"))
708
726
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
709
727
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -715,7 +733,7 @@ module Aws::SageMakerGeospatial
715
733
  UserDefined.struct_class = Types::UserDefined
716
734
 
717
735
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
718
- ValidationException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
736
+ ValidationException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
719
737
  ValidationException.struct_class = Types::ValidationException
720
738
 
721
739
  VectorEnrichmentJobConfig.add_member(:map_matching_config, Shapes::ShapeRef.new(shape: MapMatchingConfig, location_name: "MapMatchingConfig"))
@@ -746,8 +764,8 @@ module Aws::SageMakerGeospatial
746
764
 
747
765
  VectorEnrichmentJobList.member = Shapes::ShapeRef.new(shape: ListVectorEnrichmentJobOutputConfig)
748
766
 
749
- VectorEnrichmentJobS3Data.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
750
- VectorEnrichmentJobS3Data.add_member(:s3_uri, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3Uri"))
767
+ VectorEnrichmentJobS3Data.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "KmsKeyId"))
768
+ VectorEnrichmentJobS3Data.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
751
769
  VectorEnrichmentJobS3Data.struct_class = Types::VectorEnrichmentJobS3Data
752
770
 
753
771
  ViewOffNadirInput.add_member(:lower_bound, Shapes::ShapeRef.new(shape: Float, required: true, location_name: "LowerBound"))
@@ -764,7 +782,8 @@ module Aws::SageMakerGeospatial
764
782
 
765
783
  ZonalStatisticsConfigInput.add_member(:statistics, Shapes::ShapeRef.new(shape: ZonalStatisticsListInput, required: true, location_name: "Statistics"))
766
784
  ZonalStatisticsConfigInput.add_member(:target_bands, Shapes::ShapeRef.new(shape: StringListInput, location_name: "TargetBands"))
767
- ZonalStatisticsConfigInput.add_member(:zone_s3_path, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ZoneS3Path"))
785
+ ZonalStatisticsConfigInput.add_member(:zone_s3_path, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "ZoneS3Path"))
786
+ ZonalStatisticsConfigInput.add_member(:zone_s3_path_kms_key_id, Shapes::ShapeRef.new(shape: KmsKey, location_name: "ZoneS3PathKmsKeyId"))
768
787
  ZonalStatisticsConfigInput.struct_class = Types::ZonalStatisticsConfigInput
769
788
 
770
789
  ZonalStatisticsListInput.member = Shapes::ShapeRef.new(shape: ZonalStatistics)