aws-sdk-emr 1.76.0 → 1.78.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emr/client.rb +38 -23
- data/lib/aws-sdk-emr/client_api.rb +5 -1
- data/lib/aws-sdk-emr/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-emr/types.rb +100 -61
- data/lib/aws-sdk-emr.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a742f73b70fe35a399bb9f27bd626eccee1022491a375e488ec4d067d1f9b014
|
4
|
+
data.tar.gz: 54b0d86a7af07dee02d98671ee5bc41cceecb3b5583721ecab159d388d0653c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d9e0d7d39a5573965564f5c066b8604e96bdd623a38873e031f8687fe7e67bc6bfb1c80c147790dfa39e834a57c662ffb4af19a401872c3b33dadf29cc82bed
|
7
|
+
data.tar.gz: d277633cb33945c23bc463cd0b7b1a01ad131c539da1050716f7e4ac2de18e3322d626d9ed416f3502715658ee955697b53c7fba6e77709116c7464a7068c7b5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.78.0 (2023-11-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters to support IdentityCenter/PEZ integration.
|
8
|
+
|
9
|
+
1.77.0 (2023-10-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated CreateCluster API request and DescribeCluster API responses to include EbsRootVolumeIops, and EbsRootVolumeThroughput attributes that specify the user configured root volume IOPS and throughput for Amazon EBS root device volume. This feature will be available from Amazon EMR releases 6.15.0
|
13
|
+
|
4
14
|
1.76.0 (2023-09-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -401,7 +401,7 @@ module Aws::EMR
|
|
401
401
|
# Adds an instance fleet to a running cluster.
|
402
402
|
#
|
403
403
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
404
|
-
# releases 4.8.0 and
|
404
|
+
# releases 4.8.0 and higher, excluding 5.0.x.
|
405
405
|
#
|
406
406
|
# </note>
|
407
407
|
#
|
@@ -742,11 +742,11 @@ module Aws::EMR
|
|
742
742
|
end
|
743
743
|
|
744
744
|
# Cancels a pending step or steps in a running cluster. Available only
|
745
|
-
# in Amazon EMR versions 4.8.0 and
|
745
|
+
# in Amazon EMR versions 4.8.0 and higher, excluding version 5.0.0. A
|
746
746
|
# maximum of 256 steps are allowed in each CancelSteps request.
|
747
747
|
# CancelSteps is idempotent but asynchronous; it does not guarantee that
|
748
748
|
# a step will be canceled, even if the request is successfully
|
749
|
-
# submitted. When you use Amazon EMR releases 5.28.0 and
|
749
|
+
# submitted. When you use Amazon EMR releases 5.28.0 and higher, you can
|
750
750
|
# cancel steps that are in a `PENDING` or `RUNNING` state. In earlier
|
751
751
|
# versions of Amazon EMR, you can only cancel steps that are in a
|
752
752
|
# `PENDING` state.
|
@@ -1203,6 +1203,8 @@ module Aws::EMR
|
|
1203
1203
|
# resp.cluster.placement_groups[0].instance_role #=> String, one of "MASTER", "CORE", "TASK"
|
1204
1204
|
# resp.cluster.placement_groups[0].placement_strategy #=> String, one of "SPREAD", "PARTITION", "CLUSTER", "NONE"
|
1205
1205
|
# resp.cluster.os_release_label #=> String
|
1206
|
+
# resp.cluster.ebs_root_volume_iops #=> Integer
|
1207
|
+
# resp.cluster.ebs_root_volume_throughput #=> Integer
|
1206
1208
|
#
|
1207
1209
|
#
|
1208
1210
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -1652,7 +1654,7 @@ module Aws::EMR
|
|
1652
1654
|
# @option params [required, String] :cluster_id
|
1653
1655
|
# The unique identifier of the cluster.
|
1654
1656
|
#
|
1655
|
-
# @option params [
|
1657
|
+
# @option params [String] :execution_role_arn
|
1656
1658
|
# The Amazon Resource Name (ARN) of the runtime role for interactive
|
1657
1659
|
# workload submission on the cluster. The runtime role can be a
|
1658
1660
|
# cross-account IAM role. The runtime role ARN is a combination of
|
@@ -1668,7 +1670,7 @@ module Aws::EMR
|
|
1668
1670
|
#
|
1669
1671
|
# resp = client.get_cluster_session_credentials({
|
1670
1672
|
# cluster_id: "XmlStringMaxLen256", # required
|
1671
|
-
# execution_role_arn: "ArnType",
|
1673
|
+
# execution_role_arn: "ArnType",
|
1672
1674
|
# })
|
1673
1675
|
#
|
1674
1676
|
# @example Response structure
|
@@ -1897,7 +1899,7 @@ module Aws::EMR
|
|
1897
1899
|
# Lists all available details about the instance fleets in a cluster.
|
1898
1900
|
#
|
1899
1901
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
1900
|
-
# releases 4.8.0 and
|
1902
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
1901
1903
|
#
|
1902
1904
|
# </note>
|
1903
1905
|
#
|
@@ -2611,7 +2613,7 @@ module Aws::EMR
|
|
2611
2613
|
# atomically.
|
2612
2614
|
#
|
2613
2615
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2614
|
-
# releases 4.8.0 and
|
2616
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2615
2617
|
#
|
2616
2618
|
# </note>
|
2617
2619
|
#
|
@@ -2814,7 +2816,7 @@ module Aws::EMR
|
|
2814
2816
|
end
|
2815
2817
|
|
2816
2818
|
# <note markdown="1"> Auto-termination is supported in Amazon EMR releases 5.30.0 and 6.1.0
|
2817
|
-
# and
|
2819
|
+
# and higher. For more information, see [Using an auto-termination
|
2818
2820
|
# policy][1].
|
2819
2821
|
#
|
2820
2822
|
# </note>
|
@@ -3089,7 +3091,7 @@ module Aws::EMR
|
|
3089
3091
|
# your results.
|
3090
3092
|
#
|
3091
3093
|
# <note markdown="1"> The instance fleets configuration is available only in Amazon EMR
|
3092
|
-
# releases 4.8.0 and
|
3094
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions. The RunJobFlow
|
3093
3095
|
# request can contain InstanceFleets parameters or InstanceGroups
|
3094
3096
|
# parameters, but not both.
|
3095
3097
|
#
|
@@ -3105,14 +3107,15 @@ module Aws::EMR
|
|
3105
3107
|
# @option params [String] :log_encryption_kms_key_id
|
3106
3108
|
# The KMS key used for encrypting log files. If a value is not provided,
|
3107
3109
|
# the logs remain encrypted by AES-256. This attribute is only available
|
3108
|
-
# with Amazon EMR releases 5.30.0 and
|
3110
|
+
# with Amazon EMR releases 5.30.0 and higher, excluding Amazon EMR
|
3111
|
+
# 6.0.0.
|
3109
3112
|
#
|
3110
3113
|
# @option params [String] :additional_info
|
3111
3114
|
# A JSON string for selecting additional features.
|
3112
3115
|
#
|
3113
3116
|
# @option params [String] :ami_version
|
3114
3117
|
# Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
|
3115
|
-
# releases 4.0 and
|
3118
|
+
# releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
|
3116
3119
|
# AMI, use `CustomAmiID`.
|
3117
3120
|
#
|
3118
3121
|
# @option params [String] :release_label
|
@@ -3123,7 +3126,7 @@ module Aws::EMR
|
|
3123
3126
|
# Amazon EMR release versions and included application versions and
|
3124
3127
|
# features, see
|
3125
3128
|
# [https://docs.aws.amazon.com/emr/latest/ReleaseGuide/][1]. The release
|
3126
|
-
# label applies only to Amazon EMR releases version 4.0 and
|
3129
|
+
# label applies only to Amazon EMR releases version 4.0 and higher.
|
3127
3130
|
# Earlier versions use `AmiVersion`.
|
3128
3131
|
#
|
3129
3132
|
#
|
@@ -3142,7 +3145,7 @@ module Aws::EMR
|
|
3142
3145
|
#
|
3143
3146
|
# @option params [Array<String>] :supported_products
|
3144
3147
|
# <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
|
3145
|
-
#
|
3148
|
+
# higher, use Applications.
|
3146
3149
|
#
|
3147
3150
|
# </note>
|
3148
3151
|
#
|
@@ -3160,7 +3163,7 @@ module Aws::EMR
|
|
3160
3163
|
#
|
3161
3164
|
# @option params [Array<Types::SupportedProductConfig>] :new_supported_products
|
3162
3165
|
# <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
|
3163
|
-
#
|
3166
|
+
# higher, use Applications.
|
3164
3167
|
#
|
3165
3168
|
# </note>
|
3166
3169
|
#
|
@@ -3196,7 +3199,7 @@ module Aws::EMR
|
|
3196
3199
|
# [1]: https://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
|
3197
3200
|
#
|
3198
3201
|
# @option params [Array<Types::Application>] :applications
|
3199
|
-
# Applies to Amazon EMR releases 4.0 and
|
3202
|
+
# Applies to Amazon EMR releases 4.0 and higher. A case-insensitive list
|
3200
3203
|
# of applications for Amazon EMR to install and configure when launching
|
3201
3204
|
# the cluster. For a list of applications available for each Amazon EMR
|
3202
3205
|
# release version, see the [Amazon EMRRelease Guide][1].
|
@@ -3206,7 +3209,7 @@ module Aws::EMR
|
|
3206
3209
|
# [1]: https://docs.aws.amazon.com/emr/latest/ReleaseGuide/
|
3207
3210
|
#
|
3208
3211
|
# @option params [Array<Types::Configuration>] :configurations
|
3209
|
-
# For Amazon EMR releases 4.0 and
|
3212
|
+
# For Amazon EMR releases 4.0 and higher. The list of configurations
|
3210
3213
|
# supplied for the Amazon EMR cluster that you are creating.
|
3211
3214
|
#
|
3212
3215
|
# @option params [Boolean] :visible_to_all_users
|
@@ -3263,18 +3266,18 @@ module Aws::EMR
|
|
3263
3266
|
# `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR terminates
|
3264
3267
|
# nodes at the instance-hour boundary, regardless of when the request to
|
3265
3268
|
# terminate the instance was submitted. This option is only available
|
3266
|
-
# with Amazon EMR 5.1.0 and
|
3269
|
+
# with Amazon EMR 5.1.0 and higher and is the default for clusters
|
3267
3270
|
# created using that version. `TERMINATE_AT_TASK_COMPLETION` indicates
|
3268
3271
|
# that Amazon EMR adds nodes to a deny list and drains tasks from nodes
|
3269
3272
|
# before terminating the Amazon EC2 instances, regardless of the
|
3270
3273
|
# instance-hour boundary. With either behavior, Amazon EMR removes the
|
3271
3274
|
# least active nodes first and blocks instance termination if it could
|
3272
3275
|
# lead to HDFS corruption. `TERMINATE_AT_TASK_COMPLETION` available only
|
3273
|
-
# in Amazon EMR releases 4.1.0 and
|
3276
|
+
# in Amazon EMR releases 4.1.0 and higher, and is the default for
|
3274
3277
|
# releases of Amazon EMR earlier than 5.1.0.
|
3275
3278
|
#
|
3276
3279
|
# @option params [String] :custom_ami_id
|
3277
|
-
# Available only in Amazon EMR releases 5.7.0 and
|
3280
|
+
# Available only in Amazon EMR releases 5.7.0 and higher. The ID of a
|
3278
3281
|
# custom Amazon EBS-backed Linux AMI. If specified, Amazon EMR uses this
|
3279
3282
|
# AMI when it launches cluster Amazon EC2 instances. For more
|
3280
3283
|
# information about custom AMIs in Amazon EMR, see [Using a Custom
|
@@ -3294,9 +3297,9 @@ module Aws::EMR
|
|
3294
3297
|
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html
|
3295
3298
|
#
|
3296
3299
|
# @option params [Integer] :ebs_root_volume_size
|
3297
|
-
# The size, in GiB, of the Amazon EBS root device volume
|
3298
|
-
# AMI that
|
3299
|
-
# releases 4.x and
|
3300
|
+
# The size, in GiB, of the Amazon EBS root device volume for the Linux
|
3301
|
+
# AMI that each Amazon EC2 instance uses. Available in Amazon EMR
|
3302
|
+
# releases 4.x and higher.
|
3300
3303
|
#
|
3301
3304
|
# @option params [String] :repo_upgrade_on_boot
|
3302
3305
|
# Applies only when `CustomAmiID` is used. Specifies which updates from
|
@@ -3340,6 +3343,16 @@ module Aws::EMR
|
|
3340
3343
|
# launch RunJobFlow request. If a release is not specified, Amazon EMR
|
3341
3344
|
# uses the latest validated Amazon Linux release for cluster launch.
|
3342
3345
|
#
|
3346
|
+
# @option params [Integer] :ebs_root_volume_iops
|
3347
|
+
# The IOPS for the Amazon EBS root device volume for the Linux AMI that
|
3348
|
+
# each Amazon EC2 instance uses. Available in Amazon EMR releases 6.15.0
|
3349
|
+
# and higher.
|
3350
|
+
#
|
3351
|
+
# @option params [Integer] :ebs_root_volume_throughput
|
3352
|
+
# The throughput, in MiB/s, of the Amazon EBS root device volume for the
|
3353
|
+
# Linux AMI that each Amazon EC2 instance uses. Available in Amazon EMR
|
3354
|
+
# releases 6.15.0 and higher.
|
3355
|
+
#
|
3343
3356
|
# @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3344
3357
|
#
|
3345
3358
|
# * {Types::RunJobFlowOutput#job_flow_id #job_flow_id} => String
|
@@ -3610,6 +3623,8 @@ module Aws::EMR
|
|
3610
3623
|
# idle_timeout: 1,
|
3611
3624
|
# },
|
3612
3625
|
# os_release_label: "XmlStringMaxLen256",
|
3626
|
+
# ebs_root_volume_iops: 1,
|
3627
|
+
# ebs_root_volume_throughput: 1,
|
3613
3628
|
# })
|
3614
3629
|
#
|
3615
3630
|
# @example Response structure
|
@@ -4005,7 +4020,7 @@ module Aws::EMR
|
|
4005
4020
|
params: params,
|
4006
4021
|
config: config)
|
4007
4022
|
context[:gem_name] = 'aws-sdk-emr'
|
4008
|
-
context[:gem_version] = '1.
|
4023
|
+
context[:gem_version] = '1.78.0'
|
4009
4024
|
Seahorse::Client::Request.new(handlers, context)
|
4010
4025
|
end
|
4011
4026
|
|
@@ -478,6 +478,8 @@ module Aws::EMR
|
|
478
478
|
Cluster.add_member(:step_concurrency_level, Shapes::ShapeRef.new(shape: Integer, location_name: "StepConcurrencyLevel"))
|
479
479
|
Cluster.add_member(:placement_groups, Shapes::ShapeRef.new(shape: PlacementGroupConfigList, location_name: "PlacementGroups"))
|
480
480
|
Cluster.add_member(:os_release_label, Shapes::ShapeRef.new(shape: String, location_name: "OSReleaseLabel"))
|
481
|
+
Cluster.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
482
|
+
Cluster.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
481
483
|
Cluster.struct_class = Types::Cluster
|
482
484
|
|
483
485
|
ClusterStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ClusterStateChangeReasonCode, location_name: "Code"))
|
@@ -710,7 +712,7 @@ module Aws::EMR
|
|
710
712
|
GetBlockPublicAccessConfigurationOutput.struct_class = Types::GetBlockPublicAccessConfigurationOutput
|
711
713
|
|
712
714
|
GetClusterSessionCredentialsInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "ClusterId"))
|
713
|
-
GetClusterSessionCredentialsInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ArnType,
|
715
|
+
GetClusterSessionCredentialsInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "ExecutionRoleArn"))
|
714
716
|
GetClusterSessionCredentialsInput.struct_class = Types::GetClusterSessionCredentialsInput
|
715
717
|
|
716
718
|
GetClusterSessionCredentialsOutput.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
|
@@ -1324,6 +1326,8 @@ module Aws::EMR
|
|
1324
1326
|
RunJobFlowInput.add_member(:placement_group_configs, Shapes::ShapeRef.new(shape: PlacementGroupConfigList, location_name: "PlacementGroupConfigs"))
|
1325
1327
|
RunJobFlowInput.add_member(:auto_termination_policy, Shapes::ShapeRef.new(shape: AutoTerminationPolicy, location_name: "AutoTerminationPolicy"))
|
1326
1328
|
RunJobFlowInput.add_member(:os_release_label, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "OSReleaseLabel"))
|
1329
|
+
RunJobFlowInput.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
1330
|
+
RunJobFlowInput.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
1327
1331
|
RunJobFlowInput.struct_class = Types::RunJobFlowInput
|
1328
1332
|
|
1329
1333
|
RunJobFlowOutput.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobFlowId"))
|
@@ -32,8 +32,8 @@ module Aws::EMR
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://elasticmapreduce.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://elasticmapreduce-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -168,7 +168,7 @@ module Aws::EMR
|
|
168
168
|
#
|
169
169
|
class AddTagsOutput < Aws::EmptyStructure; end
|
170
170
|
|
171
|
-
# With Amazon EMR release version 4.0 and
|
171
|
+
# With Amazon EMR release version 4.0 and higher, the only accepted
|
172
172
|
# parameter is the application name. To pass arguments to applications,
|
173
173
|
# you use configuration classifications specified using configuration
|
174
174
|
# JSON objects. For more information, see [Configuring Applications][1].
|
@@ -432,7 +432,7 @@ module Aws::EMR
|
|
432
432
|
end
|
433
433
|
|
434
434
|
# Specification of the status of a CancelSteps request. Available only
|
435
|
-
# in Amazon EMR version 4.8.0 and
|
435
|
+
# in Amazon EMR version 4.8.0 and higher, excluding version 5.0.0.
|
436
436
|
#
|
437
437
|
# @!attribute [rw] step_id
|
438
438
|
# The encrypted StepId of a step.
|
@@ -587,7 +587,7 @@ module Aws::EMR
|
|
587
587
|
#
|
588
588
|
# @!attribute [rw] instance_collection_type
|
589
589
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
590
|
-
# releases 4.8.0 and
|
590
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
591
591
|
#
|
592
592
|
# </note>
|
593
593
|
#
|
@@ -604,7 +604,7 @@ module Aws::EMR
|
|
604
604
|
#
|
605
605
|
# @!attribute [rw] log_encryption_kms_key_id
|
606
606
|
# The KMS key used for encrypting log files. This attribute is only
|
607
|
-
# available with Amazon EMR 5.30.0 and
|
607
|
+
# available with Amazon EMR 5.30.0 and higher, excluding Amazon EMR
|
608
608
|
# 6.0.0.
|
609
609
|
# @return [String]
|
610
610
|
#
|
@@ -625,7 +625,7 @@ module Aws::EMR
|
|
625
625
|
# features, see
|
626
626
|
# [https://docs.aws.amazon.com/emr/latest/ReleaseGuide/][1]. The
|
627
627
|
# release label applies only to Amazon EMR releases version 4.0 and
|
628
|
-
#
|
628
|
+
# higher. Earlier versions use `AmiVersion`.
|
629
629
|
#
|
630
630
|
#
|
631
631
|
#
|
@@ -693,7 +693,7 @@ module Aws::EMR
|
|
693
693
|
# @return [String]
|
694
694
|
#
|
695
695
|
# @!attribute [rw] configurations
|
696
|
-
# Applies only to Amazon EMR releases 4.x and
|
696
|
+
# Applies only to Amazon EMR releases 4.x and higher. The list of
|
697
697
|
# configurations that are supplied to the Amazon EMR cluster.
|
698
698
|
# @return [Array<Types::Configuration>]
|
699
699
|
#
|
@@ -714,26 +714,26 @@ module Aws::EMR
|
|
714
714
|
# `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR terminates
|
715
715
|
# nodes at the instance-hour boundary, regardless of when the request
|
716
716
|
# to terminate the instance was submitted. This option is only
|
717
|
-
# available with Amazon EMR 5.1.0 and
|
717
|
+
# available with Amazon EMR 5.1.0 and higher and is the default for
|
718
718
|
# clusters created using that version. `TERMINATE_AT_TASK_COMPLETION`
|
719
719
|
# indicates that Amazon EMR adds nodes to a deny list and drains tasks
|
720
720
|
# from nodes before terminating the Amazon EC2 instances, regardless
|
721
721
|
# of the instance-hour boundary. With either behavior, Amazon EMR
|
722
722
|
# removes the least active nodes first and blocks instance termination
|
723
723
|
# if it could lead to HDFS corruption. `TERMINATE_AT_TASK_COMPLETION`
|
724
|
-
# is available only in Amazon EMR releases 4.1.0 and
|
725
|
-
# default for versions of Amazon EMR earlier than 5.1.0.
|
724
|
+
# is available only in Amazon EMR releases 4.1.0 and higher, and is
|
725
|
+
# the default for versions of Amazon EMR earlier than 5.1.0.
|
726
726
|
# @return [String]
|
727
727
|
#
|
728
728
|
# @!attribute [rw] custom_ami_id
|
729
|
-
# Available only in Amazon EMR releases 5.7.0 and
|
729
|
+
# Available only in Amazon EMR releases 5.7.0 and higher. The ID of a
|
730
730
|
# custom Amazon EBS-backed Linux AMI if the cluster uses a custom AMI.
|
731
731
|
# @return [String]
|
732
732
|
#
|
733
733
|
# @!attribute [rw] ebs_root_volume_size
|
734
|
-
# The size, in GiB, of the Amazon EBS root device volume
|
735
|
-
# AMI that
|
736
|
-
#
|
734
|
+
# The size, in GiB, of the Amazon EBS root device volume for the Linux
|
735
|
+
# AMI that each Amazon EC2 instance uses. Available in Amazon EMR
|
736
|
+
# releases 4.x and higher.
|
737
737
|
# @return [Integer]
|
738
738
|
#
|
739
739
|
# @!attribute [rw] repo_upgrade_on_boot
|
@@ -776,6 +776,18 @@ module Aws::EMR
|
|
776
776
|
# Amazon Linux release is shown in the response.
|
777
777
|
# @return [String]
|
778
778
|
#
|
779
|
+
# @!attribute [rw] ebs_root_volume_iops
|
780
|
+
# The IOPS, of the Amazon EBS root device volume for the Linux AMI
|
781
|
+
# that each Amazon EC2 instance uses. Available in Amazon EMR releases
|
782
|
+
# 6.15.0 and higher.
|
783
|
+
# @return [Integer]
|
784
|
+
#
|
785
|
+
# @!attribute [rw] ebs_root_volume_throughput
|
786
|
+
# The throughput, in MiB/s, of the Amazon EBS root device volume for
|
787
|
+
# the Linux AMI that each Amazon EC2 instance uses. Available in
|
788
|
+
# Amazon EMR releases 6.15.0 and higher.
|
789
|
+
# @return [Integer]
|
790
|
+
#
|
779
791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
|
780
792
|
#
|
781
793
|
class Cluster < Struct.new(
|
@@ -809,7 +821,9 @@ module Aws::EMR
|
|
809
821
|
:outpost_arn,
|
810
822
|
:step_concurrency_level,
|
811
823
|
:placement_groups,
|
812
|
-
:os_release_label
|
824
|
+
:os_release_label,
|
825
|
+
:ebs_root_volume_iops,
|
826
|
+
:ebs_root_volume_throughput)
|
813
827
|
SENSITIVE = []
|
814
828
|
include Aws::Structure
|
815
829
|
end
|
@@ -1012,7 +1026,7 @@ module Aws::EMR
|
|
1012
1026
|
include Aws::Structure
|
1013
1027
|
end
|
1014
1028
|
|
1015
|
-
# <note markdown="1"> Amazon EMR releases 4.x or
|
1029
|
+
# <note markdown="1"> Amazon EMR releases 4.x or higher.
|
1016
1030
|
#
|
1017
1031
|
# </note>
|
1018
1032
|
#
|
@@ -1926,8 +1940,8 @@ module Aws::EMR
|
|
1926
1940
|
# specified as an exception using
|
1927
1941
|
# `PermittedPublicSecurityGroupRuleRanges` in the
|
1928
1942
|
# `BlockPublicAccessConfiguration`. By default, Port 22 (SSH) is an
|
1929
|
-
# exception, and public access is allowed on this port.
|
1930
|
-
# this
|
1943
|
+
# exception, and public access is allowed on this port. To change
|
1944
|
+
# this, update the block public access configuration to remove the
|
1931
1945
|
# exception.
|
1932
1946
|
#
|
1933
1947
|
# <note markdown="1"> For accounts that created clusters in a Region before November 25,
|
@@ -2228,7 +2242,7 @@ module Aws::EMR
|
|
2228
2242
|
# defined target capacity.
|
2229
2243
|
#
|
2230
2244
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2231
|
-
# releases 4.8.0 and
|
2245
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2232
2246
|
#
|
2233
2247
|
# </note>
|
2234
2248
|
#
|
@@ -2348,7 +2362,7 @@ module Aws::EMR
|
|
2348
2362
|
# The configuration that defines an instance fleet.
|
2349
2363
|
#
|
2350
2364
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2351
|
-
# releases 4.8.0 and
|
2365
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2352
2366
|
#
|
2353
2367
|
# </note>
|
2354
2368
|
#
|
@@ -2439,7 +2453,7 @@ module Aws::EMR
|
|
2439
2453
|
# Configuration parameters for an instance fleet modification request.
|
2440
2454
|
#
|
2441
2455
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2442
|
-
# releases 4.8.0 and
|
2456
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2443
2457
|
#
|
2444
2458
|
# </note>
|
2445
2459
|
#
|
@@ -2477,9 +2491,9 @@ module Aws::EMR
|
|
2477
2491
|
# allocation strategy.
|
2478
2492
|
#
|
2479
2493
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2480
|
-
# releases 4.8.0 and
|
2481
|
-
# instance allocation strategies are available in Amazon EMR
|
2482
|
-
# 5.12.1 and
|
2494
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions. On-Demand and
|
2495
|
+
# Spot instance allocation strategies are available in Amazon EMR
|
2496
|
+
# releases 5.12.1 and higher.
|
2483
2497
|
#
|
2484
2498
|
# </note>
|
2485
2499
|
#
|
@@ -2494,9 +2508,9 @@ module Aws::EMR
|
|
2494
2508
|
# fleet, which determines the allocation strategy.
|
2495
2509
|
#
|
2496
2510
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2497
|
-
# releases 4.8.0 and
|
2511
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions. On-Demand
|
2498
2512
|
# Instances allocation strategy is available in Amazon EMR releases
|
2499
|
-
# 5.12.1 and
|
2513
|
+
# 5.12.1 and higher.
|
2500
2514
|
#
|
2501
2515
|
# </note>
|
2502
2516
|
# @return [Types::OnDemandProvisioningSpecification]
|
@@ -2535,7 +2549,7 @@ module Aws::EMR
|
|
2535
2549
|
# Provides status change reason details for the instance fleet.
|
2536
2550
|
#
|
2537
2551
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2538
|
-
# releases 4.8.0 and
|
2552
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2539
2553
|
#
|
2540
2554
|
# </note>
|
2541
2555
|
#
|
@@ -2559,7 +2573,7 @@ module Aws::EMR
|
|
2559
2573
|
# The status of the instance fleet.
|
2560
2574
|
#
|
2561
2575
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2562
|
-
# releases 4.8.0 and
|
2576
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2563
2577
|
#
|
2564
2578
|
# </note>
|
2565
2579
|
#
|
@@ -2615,7 +2629,7 @@ module Aws::EMR
|
|
2615
2629
|
# of termination.
|
2616
2630
|
#
|
2617
2631
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
2618
|
-
# releases 4.8.0 and
|
2632
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
2619
2633
|
#
|
2620
2634
|
# </note>
|
2621
2635
|
#
|
@@ -2688,7 +2702,7 @@ module Aws::EMR
|
|
2688
2702
|
# @return [Types::InstanceGroupStatus]
|
2689
2703
|
#
|
2690
2704
|
# @!attribute [rw] configurations
|
2691
|
-
# <note markdown="1"> Amazon EMR releases 4.x or
|
2705
|
+
# <note markdown="1"> Amazon EMR releases 4.x or higher.
|
2692
2706
|
#
|
2693
2707
|
# </note>
|
2694
2708
|
#
|
@@ -2795,7 +2809,7 @@ module Aws::EMR
|
|
2795
2809
|
# @return [Integer]
|
2796
2810
|
#
|
2797
2811
|
# @!attribute [rw] configurations
|
2798
|
-
# <note markdown="1"> Amazon EMR releases 4.x or
|
2812
|
+
# <note markdown="1"> Amazon EMR releases 4.x or higher.
|
2799
2813
|
#
|
2800
2814
|
# </note>
|
2801
2815
|
#
|
@@ -3143,7 +3157,7 @@ module Aws::EMR
|
|
3143
3157
|
# configurations for a fleet.
|
3144
3158
|
#
|
3145
3159
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
3146
|
-
# releases 4.8.0 and
|
3160
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
3147
3161
|
#
|
3148
3162
|
# </note>
|
3149
3163
|
#
|
@@ -3211,7 +3225,7 @@ module Aws::EMR
|
|
3211
3225
|
# fleet.
|
3212
3226
|
#
|
3213
3227
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
3214
|
-
# releases 4.8.0 and
|
3228
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
3215
3229
|
#
|
3216
3230
|
# </note>
|
3217
3231
|
#
|
@@ -3330,12 +3344,12 @@ module Aws::EMR
|
|
3330
3344
|
#
|
3331
3345
|
# @!attribute [rw] log_encryption_kms_key_id
|
3332
3346
|
# The KMS key used for encrypting log files. This attribute is only
|
3333
|
-
# available with Amazon EMR 5.30.0 and
|
3347
|
+
# available with Amazon EMR 5.30.0 and higher, excluding 6.0.0.
|
3334
3348
|
# @return [String]
|
3335
3349
|
#
|
3336
3350
|
# @!attribute [rw] ami_version
|
3337
3351
|
# Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
|
3338
|
-
# releases 4.0 and
|
3352
|
+
# releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
|
3339
3353
|
# AMI, use `CustomAmiID`.
|
3340
3354
|
# @return [String]
|
3341
3355
|
#
|
@@ -3404,14 +3418,14 @@ module Aws::EMR
|
|
3404
3418
|
# `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR terminates
|
3405
3419
|
# nodes at the instance-hour boundary, regardless of when the request
|
3406
3420
|
# to terminate the instance was submitted. This option is only
|
3407
|
-
# available with Amazon EMR 5.1.0 and
|
3421
|
+
# available with Amazon EMR 5.1.0 and higher and is the default for
|
3408
3422
|
# clusters created using that version. `TERMINATE_AT_TASK_COMPLETION`
|
3409
3423
|
# indicates that Amazon EMR adds nodes to a deny list and drains tasks
|
3410
3424
|
# from nodes before terminating the Amazon EC2 instances, regardless
|
3411
3425
|
# of the instance-hour boundary. With either behavior, Amazon EMR
|
3412
3426
|
# removes the least active nodes first and blocks instance termination
|
3413
3427
|
# if it could lead to HDFS corruption. `TERMINATE_AT_TASK_COMPLETION`
|
3414
|
-
# available only in Amazon EMR releases 4.1.0 and
|
3428
|
+
# available only in Amazon EMR releases 4.1.0 and higher, and is the
|
3415
3429
|
# default for releases of Amazon EMR earlier than 5.1.0.
|
3416
3430
|
# @return [String]
|
3417
3431
|
#
|
@@ -3502,7 +3516,7 @@ module Aws::EMR
|
|
3502
3516
|
#
|
3503
3517
|
# @!attribute [rw] instance_fleets
|
3504
3518
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
3505
|
-
# releases 4.8.0 and
|
3519
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
3506
3520
|
#
|
3507
3521
|
# </note>
|
3508
3522
|
#
|
@@ -3561,7 +3575,7 @@ module Aws::EMR
|
|
3561
3575
|
# them and launches instances in the optimal subnet.
|
3562
3576
|
#
|
3563
3577
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
3564
|
-
# releases 4.8.0 and
|
3578
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
3565
3579
|
#
|
3566
3580
|
# </note>
|
3567
3581
|
# @return [Array<String>]
|
@@ -4806,9 +4820,9 @@ module Aws::EMR
|
|
4806
4820
|
# fleet, which determines the allocation strategy.
|
4807
4821
|
#
|
4808
4822
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
4809
|
-
# releases 4.8.0 and
|
4823
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions. On-Demand
|
4810
4824
|
# Instances allocation strategy is available in Amazon EMR releases
|
4811
|
-
# 5.12.1 and
|
4825
|
+
# 5.12.1 and higher.
|
4812
4826
|
#
|
4813
4827
|
# </note>
|
4814
4828
|
#
|
@@ -4940,7 +4954,7 @@ module Aws::EMR
|
|
4940
4954
|
# `AvailabilityZone` (singular) is used for uniform instance groups.
|
4941
4955
|
#
|
4942
4956
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
4943
|
-
# releases 4.8.0 and
|
4957
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions.
|
4944
4958
|
#
|
4945
4959
|
# </note>
|
4946
4960
|
# @return [Array<String>]
|
@@ -5226,7 +5240,7 @@ module Aws::EMR
|
|
5226
5240
|
# @!attribute [rw] log_encryption_kms_key_id
|
5227
5241
|
# The KMS key used for encrypting log files. If a value is not
|
5228
5242
|
# provided, the logs remain encrypted by AES-256. This attribute is
|
5229
|
-
# only available with Amazon EMR releases 5.30.0 and
|
5243
|
+
# only available with Amazon EMR releases 5.30.0 and higher, excluding
|
5230
5244
|
# Amazon EMR 6.0.0.
|
5231
5245
|
# @return [String]
|
5232
5246
|
#
|
@@ -5236,7 +5250,7 @@ module Aws::EMR
|
|
5236
5250
|
#
|
5237
5251
|
# @!attribute [rw] ami_version
|
5238
5252
|
# Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
|
5239
|
-
# releases 4.0 and
|
5253
|
+
# releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
|
5240
5254
|
# AMI, use `CustomAmiID`.
|
5241
5255
|
# @return [String]
|
5242
5256
|
#
|
@@ -5249,7 +5263,7 @@ module Aws::EMR
|
|
5249
5263
|
# features, see
|
5250
5264
|
# [https://docs.aws.amazon.com/emr/latest/ReleaseGuide/][1]. The
|
5251
5265
|
# release label applies only to Amazon EMR releases version 4.0 and
|
5252
|
-
#
|
5266
|
+
# higher. Earlier versions use `AmiVersion`.
|
5253
5267
|
#
|
5254
5268
|
#
|
5255
5269
|
#
|
@@ -5271,7 +5285,7 @@ module Aws::EMR
|
|
5271
5285
|
#
|
5272
5286
|
# @!attribute [rw] supported_products
|
5273
5287
|
# <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
|
5274
|
-
#
|
5288
|
+
# higher, use Applications.
|
5275
5289
|
#
|
5276
5290
|
# </note>
|
5277
5291
|
#
|
@@ -5290,7 +5304,7 @@ module Aws::EMR
|
|
5290
5304
|
#
|
5291
5305
|
# @!attribute [rw] new_supported_products
|
5292
5306
|
# <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
|
5293
|
-
#
|
5307
|
+
# higher, use Applications.
|
5294
5308
|
#
|
5295
5309
|
# </note>
|
5296
5310
|
#
|
@@ -5327,7 +5341,7 @@ module Aws::EMR
|
|
5327
5341
|
# @return [Array<Types::SupportedProductConfig>]
|
5328
5342
|
#
|
5329
5343
|
# @!attribute [rw] applications
|
5330
|
-
# Applies to Amazon EMR releases 4.0 and
|
5344
|
+
# Applies to Amazon EMR releases 4.0 and higher. A case-insensitive
|
5331
5345
|
# list of applications for Amazon EMR to install and configure when
|
5332
5346
|
# launching the cluster. For a list of applications available for each
|
5333
5347
|
# Amazon EMR release version, see the [Amazon EMRRelease Guide][1].
|
@@ -5338,7 +5352,7 @@ module Aws::EMR
|
|
5338
5352
|
# @return [Array<Types::Application>]
|
5339
5353
|
#
|
5340
5354
|
# @!attribute [rw] configurations
|
5341
|
-
# For Amazon EMR releases 4.0 and
|
5355
|
+
# For Amazon EMR releases 4.0 and higher. The list of configurations
|
5342
5356
|
# supplied for the Amazon EMR cluster that you are creating.
|
5343
5357
|
# @return [Array<Types::Configuration>]
|
5344
5358
|
#
|
@@ -5402,7 +5416,7 @@ module Aws::EMR
|
|
5402
5416
|
# resized. `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR
|
5403
5417
|
# terminates nodes at the instance-hour boundary, regardless of when
|
5404
5418
|
# the request to terminate the instance was submitted. This option is
|
5405
|
-
# only available with Amazon EMR 5.1.0 and
|
5419
|
+
# only available with Amazon EMR 5.1.0 and higher and is the default
|
5406
5420
|
# for clusters created using that version.
|
5407
5421
|
# `TERMINATE_AT_TASK_COMPLETION` indicates that Amazon EMR adds nodes
|
5408
5422
|
# to a deny list and drains tasks from nodes before terminating the
|
@@ -5410,12 +5424,12 @@ module Aws::EMR
|
|
5410
5424
|
# either behavior, Amazon EMR removes the least active nodes first and
|
5411
5425
|
# blocks instance termination if it could lead to HDFS corruption.
|
5412
5426
|
# `TERMINATE_AT_TASK_COMPLETION` available only in Amazon EMR releases
|
5413
|
-
# 4.1.0 and
|
5427
|
+
# 4.1.0 and higher, and is the default for releases of Amazon EMR
|
5414
5428
|
# earlier than 5.1.0.
|
5415
5429
|
# @return [String]
|
5416
5430
|
#
|
5417
5431
|
# @!attribute [rw] custom_ami_id
|
5418
|
-
# Available only in Amazon EMR releases 5.7.0 and
|
5432
|
+
# Available only in Amazon EMR releases 5.7.0 and higher. The ID of a
|
5419
5433
|
# custom Amazon EBS-backed Linux AMI. If specified, Amazon EMR uses
|
5420
5434
|
# this AMI when it launches cluster Amazon EC2 instances. For more
|
5421
5435
|
# information about custom AMIs in Amazon EMR, see [Using a Custom
|
@@ -5436,9 +5450,9 @@ module Aws::EMR
|
|
5436
5450
|
# @return [String]
|
5437
5451
|
#
|
5438
5452
|
# @!attribute [rw] ebs_root_volume_size
|
5439
|
-
# The size, in GiB, of the Amazon EBS root device volume
|
5440
|
-
# AMI that
|
5441
|
-
#
|
5453
|
+
# The size, in GiB, of the Amazon EBS root device volume for the Linux
|
5454
|
+
# AMI that each Amazon EC2 instance uses. Available in Amazon EMR
|
5455
|
+
# releases 4.x and higher.
|
5442
5456
|
# @return [Integer]
|
5443
5457
|
#
|
5444
5458
|
# @!attribute [rw] repo_upgrade_on_boot
|
@@ -5493,6 +5507,18 @@ module Aws::EMR
|
|
5493
5507
|
# cluster launch.
|
5494
5508
|
# @return [String]
|
5495
5509
|
#
|
5510
|
+
# @!attribute [rw] ebs_root_volume_iops
|
5511
|
+
# The IOPS for the Amazon EBS root device volume for the Linux AMI
|
5512
|
+
# that each Amazon EC2 instance uses. Available in Amazon EMR releases
|
5513
|
+
# 6.15.0 and higher.
|
5514
|
+
# @return [Integer]
|
5515
|
+
#
|
5516
|
+
# @!attribute [rw] ebs_root_volume_throughput
|
5517
|
+
# The throughput, in MiB/s, of the Amazon EBS root device volume for
|
5518
|
+
# the Linux AMI that each Amazon EC2 instance uses. Available in
|
5519
|
+
# Amazon EMR releases 6.15.0 and higher.
|
5520
|
+
# @return [Integer]
|
5521
|
+
#
|
5496
5522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
|
5497
5523
|
#
|
5498
5524
|
class RunJobFlowInput < Struct.new(
|
@@ -5524,7 +5550,9 @@ module Aws::EMR
|
|
5524
5550
|
:managed_scaling_policy,
|
5525
5551
|
:placement_group_configs,
|
5526
5552
|
:auto_termination_policy,
|
5527
|
-
:os_release_label
|
5553
|
+
:os_release_label,
|
5554
|
+
:ebs_root_volume_iops,
|
5555
|
+
:ebs_root_volume_throughput)
|
5528
5556
|
SENSITIVE = []
|
5529
5557
|
include Aws::Structure
|
5530
5558
|
end
|
@@ -5934,9 +5962,9 @@ module Aws::EMR
|
|
5934
5962
|
# and allocation strategy.
|
5935
5963
|
#
|
5936
5964
|
# <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
|
5937
|
-
# releases 4.8.0 and
|
5965
|
+
# releases 4.8.0 and higher, excluding 5.0.x versions. Spot Instance
|
5938
5966
|
# allocation strategy is available in Amazon EMR releases 5.12.1 and
|
5939
|
-
#
|
5967
|
+
# higher.
|
5940
5968
|
#
|
5941
5969
|
# </note>
|
5942
5970
|
#
|
@@ -5986,10 +6014,21 @@ module Aws::EMR
|
|
5986
6014
|
# @return [Integer]
|
5987
6015
|
#
|
5988
6016
|
# @!attribute [rw] allocation_strategy
|
5989
|
-
# Specifies the
|
5990
|
-
#
|
5991
|
-
#
|
5992
|
-
#
|
6017
|
+
# Specifies one of the following strategies to launch Spot Instance
|
6018
|
+
# fleets: `price-capacity-optimized`, `capacity-optimized`,
|
6019
|
+
# `lowest-price`, or `diversified`. For more information on the
|
6020
|
+
# provisioning strategies, see [Allocation strategies for Spot
|
6021
|
+
# Instances][1] in the *Amazon EC2 User Guide for Linux Instances*.
|
6022
|
+
#
|
6023
|
+
# <note markdown="1"> When you launch a Spot Instance fleet with the old console, it
|
6024
|
+
# automatically launches with the `capacity-optimized` strategy. You
|
6025
|
+
# can't change the allocation strategy from the old console.
|
6026
|
+
#
|
6027
|
+
# </note>
|
6028
|
+
#
|
6029
|
+
#
|
6030
|
+
#
|
6031
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html
|
5993
6032
|
# @return [String]
|
5994
6033
|
#
|
5995
6034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SpotProvisioningSpecification AWS API Documentation
|
data/lib/aws-sdk-emr.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|