aws-sdk-emrserverless 1.59.0 → 1.60.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: a297349983c13b730b72e063253b2a73e623a237284c97239b7ce1007f5c2dfa
4
- data.tar.gz: 83763cce328dfe1c91682268ffb04bdee98d6a01cc387a1dbd95a7a784de325a
3
+ metadata.gz: 40f2f8ee552781f142c09ad3cd454799c26351258b59aa961b110c9b9c159ca6
4
+ data.tar.gz: 6038a97096b3ca963611ebfb68bc160a75ac2eecf261845389585b127daa1f03
5
5
  SHA512:
6
- metadata.gz: 652a668cc893ad21ceaa37d2c512a0e36bed66af2ead5d3f7e0bcec17516228eff8b43d22ae38ff07618996c455b133ef8bed43ef76b17d73f90171c59655f11
7
- data.tar.gz: 23e8936464756596ce212435a85e81911e832b2eca743d2d709f88b8db32d1f3ee7cb90540392870a8f6c08ca699b233544d0c012778f8e8e285b007e9eb369a
6
+ metadata.gz: 488bd9b477d78c14641cb5357384afefdf96e45514dbfdb0b6bb9a35ca0e1546d2ab269cf435d60dad01fba54fea506a3f295e99b72c9f172dadae990d5657b5
7
+ data.tar.gz: f2158c3daf94b81b8390e388a6e0a559efaf8cb1fb758f422874289d8701cc795c155e10c0492f14ea3e0f12e5975d532b1e9d800043da2949afa8970f14f37d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2026-01-06)
5
+ ------------------
6
+
7
+ * Feature - Added support for enabling disk encryption using customer managed AWS KMS keys to CreateApplication, UpdateApplication and StartJobRun APIs.
8
+
4
9
  1.59.0 (2026-01-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.60.0
@@ -586,6 +586,9 @@ module Aws::EMRServerless
586
586
  # @option params [Types::MonitoringConfiguration] :monitoring_configuration
587
587
  # The configuration setting for monitoring.
588
588
  #
589
+ # @option params [Types::DiskEncryptionConfiguration] :disk_encryption_configuration
590
+ # The configuration object that allows encrypting local disks.
591
+ #
589
592
  # @option params [Types::InteractiveConfiguration] :interactive_configuration
590
593
  # The interactive configuration object that enables the interactive use
591
594
  # cases to use when running an application.
@@ -690,6 +693,12 @@ module Aws::EMRServerless
690
693
  # remote_write_url: "PrometheusUrlString",
691
694
  # },
692
695
  # },
696
+ # disk_encryption_configuration: {
697
+ # encryption_context: {
698
+ # "EncryptionContextKey" => "EncryptionContextValue",
699
+ # },
700
+ # encryption_key_arn: "EncryptionKeyArn",
701
+ # },
693
702
  # interactive_configuration: {
694
703
  # studio_enabled: false,
695
704
  # livy_endpoint_enabled: false,
@@ -812,6 +821,9 @@ module Aws::EMRServerless
812
821
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
813
822
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
814
823
  # resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
824
+ # resp.application.disk_encryption_configuration.encryption_context #=> Hash
825
+ # resp.application.disk_encryption_configuration.encryption_context["EncryptionContextKey"] #=> String
826
+ # resp.application.disk_encryption_configuration.encryption_key_arn #=> String
815
827
  # resp.application.interactive_configuration.studio_enabled #=> Boolean
816
828
  # resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
817
829
  # resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
@@ -943,6 +955,9 @@ module Aws::EMRServerless
943
955
  # resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
944
956
  # resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
945
957
  # resp.job_run.configuration_overrides.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
958
+ # resp.job_run.configuration_overrides.disk_encryption_configuration.encryption_context #=> Hash
959
+ # resp.job_run.configuration_overrides.disk_encryption_configuration.encryption_context["EncryptionContextKey"] #=> String
960
+ # resp.job_run.configuration_overrides.disk_encryption_configuration.encryption_key_arn #=> String
946
961
  # resp.job_run.job_driver.spark_submit.entry_point #=> String
947
962
  # resp.job_run.job_driver.spark_submit.entry_point_arguments #=> Array
948
963
  # resp.job_run.job_driver.spark_submit.entry_point_arguments[0] #=> String
@@ -1326,6 +1341,12 @@ module Aws::EMRServerless
1326
1341
  # remote_write_url: "PrometheusUrlString",
1327
1342
  # },
1328
1343
  # },
1344
+ # disk_encryption_configuration: {
1345
+ # encryption_context: {
1346
+ # "EncryptionContextKey" => "EncryptionContextValue",
1347
+ # },
1348
+ # encryption_key_arn: "EncryptionKeyArn",
1349
+ # },
1329
1350
  # },
1330
1351
  # tags: {
1331
1352
  # "TagKey" => "TagValue",
@@ -1513,6 +1534,9 @@ module Aws::EMRServerless
1513
1534
  # @option params [Types::MonitoringConfiguration] :monitoring_configuration
1514
1535
  # The configuration setting for monitoring.
1515
1536
  #
1537
+ # @option params [Types::DiskEncryptionConfiguration] :disk_encryption_configuration
1538
+ # The configuration object that allows encrypting local disks.
1539
+ #
1516
1540
  # @option params [Types::SchedulerConfiguration] :scheduler_configuration
1517
1541
  # The scheduler configuration for batch and streaming jobs running on
1518
1542
  # this application. Supported with release labels emr-7.0.0 and above.
@@ -1611,6 +1635,12 @@ module Aws::EMRServerless
1611
1635
  # remote_write_url: "PrometheusUrlString",
1612
1636
  # },
1613
1637
  # },
1638
+ # disk_encryption_configuration: {
1639
+ # encryption_context: {
1640
+ # "EncryptionContextKey" => "EncryptionContextValue",
1641
+ # },
1642
+ # encryption_key_arn: "EncryptionKeyArn",
1643
+ # },
1614
1644
  # scheduler_configuration: {
1615
1645
  # queue_timeout_minutes: 1,
1616
1646
  # max_concurrent_runs: 1,
@@ -1676,6 +1706,9 @@ module Aws::EMRServerless
1676
1706
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
1677
1707
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
1678
1708
  # resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
1709
+ # resp.application.disk_encryption_configuration.encryption_context #=> Hash
1710
+ # resp.application.disk_encryption_configuration.encryption_context["EncryptionContextKey"] #=> String
1711
+ # resp.application.disk_encryption_configuration.encryption_key_arn #=> String
1679
1712
  # resp.application.interactive_configuration.studio_enabled #=> Boolean
1680
1713
  # resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
1681
1714
  # resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
@@ -1712,7 +1745,7 @@ module Aws::EMRServerless
1712
1745
  tracer: tracer
1713
1746
  )
1714
1747
  context[:gem_name] = 'aws-sdk-emrserverless'
1715
- context[:gem_version] = '1.59.0'
1748
+ context[:gem_version] = '1.60.0'
1716
1749
  Seahorse::Client::Request.new(handlers, context)
1717
1750
  end
1718
1751
 
@@ -45,10 +45,14 @@ module Aws::EMRServerless
45
45
  Date = Shapes::TimestampShape.new(name: 'Date')
46
46
  DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
47
47
  DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
48
+ DiskEncryptionConfiguration = Shapes::StructureShape.new(name: 'DiskEncryptionConfiguration')
48
49
  DiskSize = Shapes::StringShape.new(name: 'DiskSize')
49
50
  DiskType = Shapes::StringShape.new(name: 'DiskType')
50
51
  Double = Shapes::FloatShape.new(name: 'Double')
51
52
  Duration = Shapes::IntegerShape.new(name: 'Duration')
53
+ EncryptionContext = Shapes::MapShape.new(name: 'EncryptionContext')
54
+ EncryptionContextKey = Shapes::StringShape.new(name: 'EncryptionContextKey')
55
+ EncryptionContextValue = Shapes::StringShape.new(name: 'EncryptionContextValue')
52
56
  EncryptionKeyArn = Shapes::StringShape.new(name: 'EncryptionKeyArn')
53
57
  EngineType = Shapes::StringShape.new(name: 'EngineType')
54
58
  EntryPointArgument = Shapes::StringShape.new(name: 'EntryPointArgument')
@@ -187,6 +191,7 @@ module Aws::EMRServerless
187
191
  Application.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationMap, location_name: "workerTypeSpecifications"))
188
192
  Application.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
189
193
  Application.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
194
+ Application.add_member(:disk_encryption_configuration, Shapes::ShapeRef.new(shape: DiskEncryptionConfiguration, location_name: "diskEncryptionConfiguration"))
190
195
  Application.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
191
196
  Application.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
192
197
  Application.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "identityCenterConfiguration"))
@@ -241,6 +246,7 @@ module Aws::EMRServerless
241
246
 
242
247
  ConfigurationOverrides.add_member(:application_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "applicationConfiguration"))
243
248
  ConfigurationOverrides.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
249
+ ConfigurationOverrides.add_member(:disk_encryption_configuration, Shapes::ShapeRef.new(shape: DiskEncryptionConfiguration, location_name: "diskEncryptionConfiguration"))
244
250
  ConfigurationOverrides.struct_class = Types::ConfigurationOverrides
245
251
 
246
252
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "message"))
@@ -261,6 +267,7 @@ module Aws::EMRServerless
261
267
  CreateApplicationRequest.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationInputMap, location_name: "workerTypeSpecifications"))
262
268
  CreateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
263
269
  CreateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
270
+ CreateApplicationRequest.add_member(:disk_encryption_configuration, Shapes::ShapeRef.new(shape: DiskEncryptionConfiguration, location_name: "diskEncryptionConfiguration"))
264
271
  CreateApplicationRequest.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
265
272
  CreateApplicationRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
266
273
  CreateApplicationRequest.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfigurationInput, location_name: "identityCenterConfiguration"))
@@ -277,6 +284,13 @@ module Aws::EMRServerless
277
284
 
278
285
  DeleteApplicationResponse.struct_class = Types::DeleteApplicationResponse
279
286
 
287
+ DiskEncryptionConfiguration.add_member(:encryption_context, Shapes::ShapeRef.new(shape: EncryptionContext, location_name: "encryptionContext"))
288
+ DiskEncryptionConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: EncryptionKeyArn, location_name: "encryptionKeyArn"))
289
+ DiskEncryptionConfiguration.struct_class = Types::DiskEncryptionConfiguration
290
+
291
+ EncryptionContext.key = Shapes::ShapeRef.new(shape: EncryptionContextKey)
292
+ EncryptionContext.value = Shapes::ShapeRef.new(shape: EncryptionContextValue)
293
+
280
294
  EntryPointArguments.member = Shapes::ShapeRef.new(shape: EntryPointArgument)
281
295
 
282
296
  GetApplicationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
@@ -589,6 +603,7 @@ module Aws::EMRServerless
589
603
  UpdateApplicationRequest.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, location_name: "releaseLabel"))
590
604
  UpdateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
591
605
  UpdateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
606
+ UpdateApplicationRequest.add_member(:disk_encryption_configuration, Shapes::ShapeRef.new(shape: DiskEncryptionConfiguration, location_name: "diskEncryptionConfiguration"))
592
607
  UpdateApplicationRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
593
608
  UpdateApplicationRequest.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfigurationInput, location_name: "identityCenterConfiguration"))
594
609
  UpdateApplicationRequest.add_member(:job_level_cost_allocation_configuration, Shapes::ShapeRef.new(shape: JobLevelCostAllocationConfiguration, location_name: "jobLevelCostAllocationConfiguration"))
@@ -108,6 +108,10 @@ module Aws::EMRServerless
108
108
  # The configuration setting for monitoring.
109
109
  # @return [Types::MonitoringConfiguration]
110
110
  #
111
+ # @!attribute [rw] disk_encryption_configuration
112
+ # The configuration object that allows encrypting local disks.
113
+ # @return [Types::DiskEncryptionConfiguration]
114
+ #
111
115
  # @!attribute [rw] interactive_configuration
112
116
  # The interactive configuration object that enables the interactive
113
117
  # use cases for an application.
@@ -150,6 +154,7 @@ module Aws::EMRServerless
150
154
  :worker_type_specifications,
151
155
  :runtime_configuration,
152
156
  :monitoring_configuration,
157
+ :disk_encryption_configuration,
153
158
  :interactive_configuration,
154
159
  :scheduler_configuration,
155
160
  :identity_center_configuration,
@@ -387,11 +392,16 @@ module Aws::EMRServerless
387
392
  # The override configurations for monitoring.
388
393
  # @return [Types::MonitoringConfiguration]
389
394
  #
395
+ # @!attribute [rw] disk_encryption_configuration
396
+ # The override configuration to encrypt local disks.
397
+ # @return [Types::DiskEncryptionConfiguration]
398
+ #
390
399
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/ConfigurationOverrides AWS API Documentation
391
400
  #
392
401
  class ConfigurationOverrides < Struct.new(
393
402
  :application_configuration,
394
- :monitoring_configuration)
403
+ :monitoring_configuration,
404
+ :disk_encryption_configuration)
395
405
  SENSITIVE = []
396
406
  include Aws::Structure
397
407
  end
@@ -494,6 +504,10 @@ module Aws::EMRServerless
494
504
  # The configuration setting for monitoring.
495
505
  # @return [Types::MonitoringConfiguration]
496
506
  #
507
+ # @!attribute [rw] disk_encryption_configuration
508
+ # The configuration object that allows encrypting local disks.
509
+ # @return [Types::DiskEncryptionConfiguration]
510
+ #
497
511
  # @!attribute [rw] interactive_configuration
498
512
  # The interactive configuration object that enables the interactive
499
513
  # use cases to use when running an application.
@@ -533,6 +547,7 @@ module Aws::EMRServerless
533
547
  :worker_type_specifications,
534
548
  :runtime_configuration,
535
549
  :monitoring_configuration,
550
+ :disk_encryption_configuration,
536
551
  :interactive_configuration,
537
552
  :scheduler_configuration,
538
553
  :identity_center_configuration,
@@ -579,6 +594,28 @@ module Aws::EMRServerless
579
594
  #
580
595
  class DeleteApplicationResponse < Aws::EmptyStructure; end
581
596
 
597
+ # The configuration object that allows encrypting local disks.
598
+ #
599
+ # @!attribute [rw] encryption_context
600
+ # Specifies the optional encryption context that will be used when
601
+ # encrypting the data. An encryption context is a collection of
602
+ # non-secret key-value pairs that represent additional authenticated
603
+ # data.
604
+ # @return [Hash<String,String>]
605
+ #
606
+ # @!attribute [rw] encryption_key_arn
607
+ # The KMS key ARN to encrypt local disks.
608
+ # @return [String]
609
+ #
610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/DiskEncryptionConfiguration AWS API Documentation
611
+ #
612
+ class DiskEncryptionConfiguration < Struct.new(
613
+ :encryption_context,
614
+ :encryption_key_arn)
615
+ SENSITIVE = []
616
+ include Aws::Structure
617
+ end
618
+
582
619
  # @!attribute [rw] application_id
583
620
  # The ID of the application that will be described.
584
621
  # @return [String]
@@ -1971,6 +2008,10 @@ module Aws::EMRServerless
1971
2008
  # The configuration setting for monitoring.
1972
2009
  # @return [Types::MonitoringConfiguration]
1973
2010
  #
2011
+ # @!attribute [rw] disk_encryption_configuration
2012
+ # The configuration object that allows encrypting local disks.
2013
+ # @return [Types::DiskEncryptionConfiguration]
2014
+ #
1974
2015
  # @!attribute [rw] scheduler_configuration
1975
2016
  # The scheduler configuration for batch and streaming jobs running on
1976
2017
  # this application. Supported with release labels emr-7.0.0 and above.
@@ -2004,6 +2045,7 @@ module Aws::EMRServerless
2004
2045
  :release_label,
2005
2046
  :runtime_configuration,
2006
2047
  :monitoring_configuration,
2048
+ :disk_encryption_configuration,
2007
2049
  :scheduler_configuration,
2008
2050
  :identity_center_configuration,
2009
2051
  :job_level_cost_allocation_configuration)
@@ -54,7 +54,7 @@ module Aws::EMRServerless
54
54
  autoload :EndpointProvider, 'aws-sdk-emrserverless/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-emrserverless/endpoints'
56
56
 
57
- GEM_VERSION = '1.59.0'
57
+ GEM_VERSION = '1.60.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -165,6 +165,10 @@ module Aws
165
165
  remote_write_url: ::String?
166
166
  }?
167
167
  },
168
+ ?disk_encryption_configuration: {
169
+ encryption_context: Hash[::String, ::String]?,
170
+ encryption_key_arn: ::String?
171
+ },
168
172
  ?interactive_configuration: {
169
173
  studio_enabled: bool?,
170
174
  livy_endpoint_enabled: bool?
@@ -344,6 +348,10 @@ module Aws
344
348
  prometheus_monitoring_configuration: {
345
349
  remote_write_url: ::String?
346
350
  }?
351
+ }?,
352
+ disk_encryption_configuration: {
353
+ encryption_context: Hash[::String, ::String]?,
354
+ encryption_key_arn: ::String?
347
355
  }?
348
356
  },
349
357
  ?tags: Hash[::String, ::String],
@@ -460,6 +468,10 @@ module Aws
460
468
  remote_write_url: ::String?
461
469
  }?
462
470
  },
471
+ ?disk_encryption_configuration: {
472
+ encryption_context: Hash[::String, ::String]?,
473
+ encryption_key_arn: ::String?
474
+ },
463
475
  ?scheduler_configuration: {
464
476
  queue_timeout_minutes: ::Integer?,
465
477
  max_concurrent_runs: ::Integer?
data/sig/types.rbs CHANGED
@@ -29,6 +29,7 @@ module Aws::EMRServerless
29
29
  attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecification]
30
30
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
31
31
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
32
+ attr_accessor disk_encryption_configuration: Types::DiskEncryptionConfiguration
32
33
  attr_accessor interactive_configuration: Types::InteractiveConfiguration
33
34
  attr_accessor scheduler_configuration: Types::SchedulerConfiguration
34
35
  attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
@@ -93,6 +94,7 @@ module Aws::EMRServerless
93
94
  class ConfigurationOverrides
94
95
  attr_accessor application_configuration: ::Array[Types::Configuration]
95
96
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
97
+ attr_accessor disk_encryption_configuration: Types::DiskEncryptionConfiguration
96
98
  SENSITIVE: []
97
99
  end
98
100
 
@@ -117,6 +119,7 @@ module Aws::EMRServerless
117
119
  attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecificationInput]
118
120
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
119
121
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
122
+ attr_accessor disk_encryption_configuration: Types::DiskEncryptionConfiguration
120
123
  attr_accessor interactive_configuration: Types::InteractiveConfiguration
121
124
  attr_accessor scheduler_configuration: Types::SchedulerConfiguration
122
125
  attr_accessor identity_center_configuration: Types::IdentityCenterConfigurationInput
@@ -139,6 +142,12 @@ module Aws::EMRServerless
139
142
  class DeleteApplicationResponse < Aws::EmptyStructure
140
143
  end
141
144
 
145
+ class DiskEncryptionConfiguration
146
+ attr_accessor encryption_context: ::Hash[::String, ::String]
147
+ attr_accessor encryption_key_arn: ::String
148
+ SENSITIVE: []
149
+ end
150
+
142
151
  class GetApplicationRequest
143
152
  attr_accessor application_id: ::String
144
153
  SENSITIVE: []
@@ -524,6 +533,7 @@ module Aws::EMRServerless
524
533
  attr_accessor release_label: ::String
525
534
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
526
535
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
536
+ attr_accessor disk_encryption_configuration: Types::DiskEncryptionConfiguration
527
537
  attr_accessor scheduler_configuration: Types::SchedulerConfiguration
528
538
  attr_accessor identity_center_configuration: Types::IdentityCenterConfigurationInput
529
539
  attr_accessor job_level_cost_allocation_configuration: Types::JobLevelCostAllocationConfiguration
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services