aws-sdk-emr 1.127.0 → 1.128.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: 2000e93841809c8aa3000fbc760c2a2b3e087221a0b27926987b0a4eb722e8a4
4
- data.tar.gz: bce9964b8347a027b5d2da93307158329c2251dcea2d8bb4669b59852e18afc6
3
+ metadata.gz: a8d197b3fde11e756ef04a4f7a5844932bf8045a9d4044492d87a7266e31ee84
4
+ data.tar.gz: e846d8c3c9eb8956ed9fd1526db0b0fcc0f07b63e54dc7a99e75145fab3592dc
5
5
  SHA512:
6
- metadata.gz: 334e5a9eac5fbac5fe2b736b2e263ac089e782fd25dd8457b11d985c7354285a3f75d71249b18745250bd3319d12db5f07479315907b08ed0486db0e4ad2be84
7
- data.tar.gz: c90749ff96b674fc18c887c266a70e6f82e91747cfb300c62bb65c19bda97668a59dd3440515a551a2ad299ee00d464f2d95feef3906cbed7f8d35c37b1d6a62
6
+ metadata.gz: e3b0ae1023f151dfc45c1862675708cb33386faf63fdb7f6922c8626fcf40a99e5b41a7e428df8a3169ef771a818bf21b038805312d81828e4afa2049c1d7e43
7
+ data.tar.gz: 44c53629d2692b816efc4f164f5a6f6c3d563fd9d6c8facf7afbed78ba18d1c6b8f3d9df30f4191e0e7650379103aa31ac40c870dac339540998eff425c8da50
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.128.0 (2026-03-26)
5
+ ------------------
6
+
7
+ * Feature - Add StepExecutionRoleArn to RunJobFlow API
8
+
4
9
  1.127.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.127.0
1
+ 1.128.0
@@ -3533,6 +3533,20 @@ module Aws::EMR
3533
3533
  # @option params [Array<Types::StepConfig>] :steps
3534
3534
  # A list of steps to run.
3535
3535
  #
3536
+ # @option params [String] :step_execution_role_arn
3537
+ # The Amazon Resource Name (ARN) of the runtime role for steps specified
3538
+ # in the RunJobFlow request. The runtime role can be a cross-account IAM
3539
+ # role. The runtime role ARN is a combination of account ID, role name,
3540
+ # and role type using the following format:
3541
+ # `arn:partition:iam::account-id:role/role-name`.
3542
+ #
3543
+ # For example, `arn:aws:iam::1234567890:role/ReadOnly` is a correctly
3544
+ # formatted runtime role ARN.
3545
+ #
3546
+ # This parameter applies only to steps included in the `Steps` parameter
3547
+ # of this RunJobFlow request. It does not apply to steps added later to
3548
+ # the cluster.
3549
+ #
3536
3550
  # @option params [Array<Types::BootstrapActionConfig>] :bootstrap_actions
3537
3551
  # A list of bootstrap actions to run before Hadoop starts on the cluster
3538
3552
  # nodes.
@@ -3960,6 +3974,7 @@ module Aws::EMR
3960
3974
  # },
3961
3975
  # },
3962
3976
  # ],
3977
+ # step_execution_role_arn: "ArnType",
3963
3978
  # bootstrap_actions: [
3964
3979
  # {
3965
3980
  # name: "XmlStringMaxLen256", # required
@@ -4560,7 +4575,7 @@ module Aws::EMR
4560
4575
  tracer: tracer
4561
4576
  )
4562
4577
  context[:gem_name] = 'aws-sdk-emr'
4563
- context[:gem_version] = '1.127.0'
4578
+ context[:gem_version] = '1.128.0'
4564
4579
  Seahorse::Client::Request.new(handlers, context)
4565
4580
  end
4566
4581
 
@@ -1426,6 +1426,7 @@ module Aws::EMR
1426
1426
  RunJobFlowInput.add_member(:release_label, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ReleaseLabel"))
1427
1427
  RunJobFlowInput.add_member(:instances, Shapes::ShapeRef.new(shape: JobFlowInstancesConfig, required: true, location_name: "Instances"))
1428
1428
  RunJobFlowInput.add_member(:steps, Shapes::ShapeRef.new(shape: StepConfigList, location_name: "Steps"))
1429
+ RunJobFlowInput.add_member(:step_execution_role_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "StepExecutionRoleArn"))
1429
1430
  RunJobFlowInput.add_member(:bootstrap_actions, Shapes::ShapeRef.new(shape: BootstrapActionConfigList, location_name: "BootstrapActions"))
1430
1431
  RunJobFlowInput.add_member(:supported_products, Shapes::ShapeRef.new(shape: SupportedProductsList, location_name: "SupportedProducts"))
1431
1432
  RunJobFlowInput.add_member(:new_supported_products, Shapes::ShapeRef.new(shape: NewSupportedProductsList, location_name: "NewSupportedProducts"))
@@ -5730,6 +5730,21 @@ module Aws::EMR
5730
5730
  # A list of steps to run.
5731
5731
  # @return [Array<Types::StepConfig>]
5732
5732
  #
5733
+ # @!attribute [rw] step_execution_role_arn
5734
+ # The Amazon Resource Name (ARN) of the runtime role for steps
5735
+ # specified in the RunJobFlow request. The runtime role can be a
5736
+ # cross-account IAM role. The runtime role ARN is a combination of
5737
+ # account ID, role name, and role type using the following format:
5738
+ # `arn:partition:iam::account-id:role/role-name`.
5739
+ #
5740
+ # For example, `arn:aws:iam::1234567890:role/ReadOnly` is a correctly
5741
+ # formatted runtime role ARN.
5742
+ #
5743
+ # This parameter applies only to steps included in the `Steps`
5744
+ # parameter of this RunJobFlow request. It does not apply to steps
5745
+ # added later to the cluster.
5746
+ # @return [String]
5747
+ #
5733
5748
  # @!attribute [rw] bootstrap_actions
5734
5749
  # A list of bootstrap actions to run before Hadoop starts on the
5735
5750
  # cluster nodes.
@@ -5990,6 +6005,7 @@ module Aws::EMR
5990
6005
  :release_label,
5991
6006
  :instances,
5992
6007
  :steps,
6008
+ :step_execution_role_arn,
5993
6009
  :bootstrap_actions,
5994
6010
  :supported_products,
5995
6011
  :new_supported_products,
data/lib/aws-sdk-emr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::EMR
55
55
  autoload :EndpointProvider, 'aws-sdk-emr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-emr/endpoints'
57
57
 
58
- GEM_VERSION = '1.127.0'
58
+ GEM_VERSION = '1.128.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1176,6 +1176,7 @@ module Aws
1176
1176
  }?
1177
1177
  },
1178
1178
  ],
1179
+ ?step_execution_role_arn: ::String,
1179
1180
  ?bootstrap_actions: Array[
1180
1181
  {
1181
1182
  name: ::String,
data/sig/types.rbs CHANGED
@@ -1327,6 +1327,7 @@ module Aws::EMR
1327
1327
  attr_accessor release_label: ::String
1328
1328
  attr_accessor instances: Types::JobFlowInstancesConfig
1329
1329
  attr_accessor steps: ::Array[Types::StepConfig]
1330
+ attr_accessor step_execution_role_arn: ::String
1330
1331
  attr_accessor bootstrap_actions: ::Array[Types::BootstrapActionConfig]
1331
1332
  attr_accessor supported_products: ::Array[::String]
1332
1333
  attr_accessor new_supported_products: ::Array[Types::SupportedProductConfig]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.127.0
4
+ version: 1.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services