aws-sdk-emr 1.48.0 → 1.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e71d51aad190b33c50683ed87c6c51bef0acc6280c0953393aa7412314ad0a2
4
- data.tar.gz: 64d12228d07aa2300363cd7b604b76d474e177c763c2aec04ef813ebd5027df5
3
+ metadata.gz: 58b6202840db551ffbc2db426ad53cd5c0d8ea37c7b4ee5b9eddf2d9e80a0236
4
+ data.tar.gz: 40a513db905c24dba538f0a6e9b0076a70ca811329b89a229f7024fc8fcfc3a5
5
5
  SHA512:
6
- metadata.gz: 6afda745bd2287178acec8390a61be757b1c6a4c6df8850d4fcce3e169322fc12d83652e014b66b753ed47e58e6b6e1ad773909d926e56c72413afca06ccb738
7
- data.tar.gz: d937d55d9eb732b17094073942a650724ce2fa7359472f114845eedd855d4a2d5278b111a128ecff91ee9b5fd98bff4f833ee6f44d5df1d950cf34ce04b84cae
6
+ metadata.gz: e70a536f9c709ae750bc90bca00b827830ca9d8e871b090bfb336075cf32c8d09afaaab926bc809e660887aaabf07e0078303a0bc7502838a92c059ab27b1d1f
7
+ data.tar.gz: 7a3068ebf859c8eeff32579680a61855fcc97752489fb52588f348523909b799ddfdf45cbc6083294868042b582ce02b5734c0cbb4a9f2d8b35b6bc87d3e47d1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2021-08-13)
5
+ ------------------
6
+
7
+ * Feature - Amazon EMR customers can now specify custom AMIs at the instance level in their clusters. This allows using custom AMIs in clusters that have instances with different instruction set architectures, e.g. m5.xlarge (x86) and m6g.xlarge (ARM).
8
+
4
9
  1.48.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
data/lib/aws-sdk-emr.rb CHANGED
@@ -19,7 +19,7 @@ require_relative 'aws-sdk-emr/waiters'
19
19
  require_relative 'aws-sdk-emr/resource'
20
20
  require_relative 'aws-sdk-emr/customizations'
21
21
 
22
- # This module provides support for Amazon Elastic MapReduce. This module is available in the
22
+ # This module provides support for Amazon EMR. This module is available in the
23
23
  # `aws-sdk-emr` gem.
24
24
  #
25
25
  # # Client
@@ -35,13 +35,13 @@ require_relative 'aws-sdk-emr/customizations'
35
35
  #
36
36
  # # Errors
37
37
  #
38
- # Errors returned from Amazon Elastic MapReduce are defined in the
38
+ # Errors returned from Amazon EMR are defined in the
39
39
  # {Errors} module and all extend {Errors::ServiceError}.
40
40
  #
41
41
  # begin
42
42
  # # do stuff
43
43
  # rescue Aws::EMR::Errors::ServiceError
44
- # # rescues all Amazon Elastic MapReduce API errors
44
+ # # rescues all Amazon EMR API errors
45
45
  # end
46
46
  #
47
47
  # See {Errors} for more information.
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-emr/customizations'
49
49
  # @!group service
50
50
  module Aws::EMR
51
51
 
52
- GEM_VERSION = '1.48.0'
52
+ GEM_VERSION = '1.49.0'
53
53
 
54
54
  end
@@ -395,6 +395,7 @@ module Aws::EMR
395
395
  # },
396
396
  # },
397
397
  # ],
398
+ # custom_ami_id: "XmlStringMaxLen256",
398
399
  # },
399
400
  # ],
400
401
  # launch_specifications: {
@@ -518,6 +519,7 @@ module Aws::EMR
518
519
  # },
519
520
  # ],
520
521
  # },
522
+ # custom_ami_id: "XmlStringMaxLen256",
521
523
  # },
522
524
  # ],
523
525
  # job_flow_id: "XmlStringMaxLen256", # required
@@ -856,7 +858,7 @@ module Aws::EMR
856
858
  # Amazon Web Services SSO Identity Store. For more information, see
857
859
  # [UserId][1] and [GroupId][2] in the *Amazon Web Services SSO Identity
858
860
  # Store API Reference*. Either `IdentityName` or `IdentityId` must be
859
- # specified.
861
+ # specified, but not both.
860
862
  #
861
863
  #
862
864
  #
@@ -867,7 +869,7 @@ module Aws::EMR
867
869
  # The name of the user or group. For more information, see [UserName][1]
868
870
  # and [DisplayName][2] in the *Amazon Web Services SSO Identity Store
869
871
  # API Reference*. Either `IdentityName` or `IdentityId` must be
870
- # specified.
872
+ # specified, but not both.
871
873
  #
872
874
  #
873
875
  #
@@ -1187,6 +1189,7 @@ module Aws::EMR
1187
1189
  # resp.job_flows[0].instances.instance_groups[0].start_date_time #=> Time
1188
1190
  # resp.job_flows[0].instances.instance_groups[0].ready_date_time #=> Time
1189
1191
  # resp.job_flows[0].instances.instance_groups[0].end_date_time #=> Time
1192
+ # resp.job_flows[0].instances.instance_groups[0].custom_ami_id #=> String
1190
1193
  # resp.job_flows[0].instances.normalized_instance_hours #=> Integer
1191
1194
  # resp.job_flows[0].instances.ec2_key_name #=> String
1192
1195
  # resp.job_flows[0].instances.ec2_subnet_id #=> String
@@ -1749,6 +1752,7 @@ module Aws::EMR
1749
1752
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].volume_specification.size_in_gb #=> Integer
1750
1753
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].device #=> String
1751
1754
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_optimized #=> Boolean
1755
+ # resp.instance_fleets[0].instance_type_specifications[0].custom_ami_id #=> String
1752
1756
  # resp.instance_fleets[0].launch_specifications.spot_specification.timeout_duration_minutes #=> Integer
1753
1757
  # resp.instance_fleets[0].launch_specifications.spot_specification.timeout_action #=> String, one of "SWITCH_TO_ON_DEMAND", "TERMINATE_CLUSTER"
1754
1758
  # resp.instance_fleets[0].launch_specifications.spot_specification.block_duration_minutes #=> Integer
@@ -1855,6 +1859,7 @@ module Aws::EMR
1855
1859
  # resp.instance_groups[0].auto_scaling_policy.rules[0].trigger.cloud_watch_alarm_definition.dimensions #=> Array
1856
1860
  # resp.instance_groups[0].auto_scaling_policy.rules[0].trigger.cloud_watch_alarm_definition.dimensions[0].key #=> String
1857
1861
  # resp.instance_groups[0].auto_scaling_policy.rules[0].trigger.cloud_watch_alarm_definition.dimensions[0].value #=> String
1862
+ # resp.instance_groups[0].custom_ami_id #=> String
1858
1863
  # resp.marker #=> String
1859
1864
  #
1860
1865
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceGroups AWS API Documentation
@@ -2049,9 +2054,9 @@ module Aws::EMR
2049
2054
  # which is usually the case for the first request of ListReleaseLabels,
2050
2055
  # the first page of results are determined by other filtering parameters
2051
2056
  # or by the latest version. The `ListReleaseLabels` request fails if the
2052
- # identity (AWS AccountID) and all filtering parameters are different
2053
- # from the original request, or if the `NextToken` is expired or
2054
- # tampered with.
2057
+ # identity (account ID) and all filtering parameters are different from
2058
+ # the original request, or if the `NextToken` is expired or tampered
2059
+ # with.
2055
2060
  #
2056
2061
  # @option params [Integer] :max_results
2057
2062
  # Defines the maximum number of release labels to return in a single
@@ -2862,7 +2867,7 @@ module Aws::EMR
2862
2867
  # @option params [Boolean] :visible_to_all_users
2863
2868
  # Set this value to `true` so that IAM principals in the account
2864
2869
  # associated with the cluster can perform EMR actions on the cluster
2865
- # that their IAM policies allow. This value defaults to `false` for
2870
+ # that their IAM policies allow. This value defaults to `true` for
2866
2871
  # clusters created using the EMR API or the CLI [create-cluster][1]
2867
2872
  # command.
2868
2873
  #
@@ -2870,7 +2875,7 @@ module Aws::EMR
2870
2875
  # and the account root user can perform EMR actions for the cluster,
2871
2876
  # regardless of the IAM permissions policies attached to other IAM
2872
2877
  # principals. For more information, see [Understanding the EMR Cluster
2873
- # VisibleToAllUsers Setting][2] in the *Amazon EMR Management Guide*.
2878
+ # VisibleToAllUsers Setting][2] in the *Amazon EMRManagement Guide*.
2874
2879
  #
2875
2880
  #
2876
2881
  #
@@ -3056,6 +3061,7 @@ module Aws::EMR
3056
3061
  # },
3057
3062
  # ],
3058
3063
  # },
3064
+ # custom_ami_id: "XmlStringMaxLen256",
3059
3065
  # },
3060
3066
  # ],
3061
3067
  # instance_fleets: [
@@ -3094,6 +3100,7 @@ module Aws::EMR
3094
3100
  # },
3095
3101
  # },
3096
3102
  # ],
3103
+ # custom_ami_id: "XmlStringMaxLen256",
3097
3104
  # },
3098
3105
  # ],
3099
3106
  # launch_specifications: {
@@ -3302,7 +3309,7 @@ module Aws::EMR
3302
3309
  # the RunJobFlowInput$VisibleToAllUsers parameter.
3303
3310
  #
3304
3311
  # For more information, see [Understanding the EMR Cluster
3305
- # VisibleToAllUsers Setting][1] in the *Amazon EMR Management Guide*.
3312
+ # VisibleToAllUsers Setting][1] in the *Amazon EMRManagement Guide*.
3306
3313
  #
3307
3314
  #
3308
3315
  #
@@ -3584,7 +3591,7 @@ module Aws::EMR
3584
3591
  params: params,
3585
3592
  config: config)
3586
3593
  context[:gem_name] = 'aws-sdk-emr'
3587
- context[:gem_version] = '1.48.0'
3594
+ context[:gem_version] = '1.49.0'
3588
3595
  Seahorse::Client::Request.new(handlers, context)
3589
3596
  end
3590
3597
 
@@ -746,6 +746,7 @@ module Aws::EMR
746
746
  InstanceGroup.add_member(:ebs_optimized, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EbsOptimized"))
747
747
  InstanceGroup.add_member(:shrink_policy, Shapes::ShapeRef.new(shape: ShrinkPolicy, location_name: "ShrinkPolicy"))
748
748
  InstanceGroup.add_member(:auto_scaling_policy, Shapes::ShapeRef.new(shape: AutoScalingPolicyDescription, location_name: "AutoScalingPolicy"))
749
+ InstanceGroup.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
749
750
  InstanceGroup.struct_class = Types::InstanceGroup
750
751
 
751
752
  InstanceGroupConfig.add_member(:name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Name"))
@@ -757,6 +758,7 @@ module Aws::EMR
757
758
  InstanceGroupConfig.add_member(:configurations, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "Configurations"))
758
759
  InstanceGroupConfig.add_member(:ebs_configuration, Shapes::ShapeRef.new(shape: EbsConfiguration, location_name: "EbsConfiguration"))
759
760
  InstanceGroupConfig.add_member(:auto_scaling_policy, Shapes::ShapeRef.new(shape: AutoScalingPolicy, location_name: "AutoScalingPolicy"))
761
+ InstanceGroupConfig.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
760
762
  InstanceGroupConfig.struct_class = Types::InstanceGroupConfig
761
763
 
762
764
  InstanceGroupConfigList.member = Shapes::ShapeRef.new(shape: InstanceGroupConfig)
@@ -775,6 +777,7 @@ module Aws::EMR
775
777
  InstanceGroupDetail.add_member(:start_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "StartDateTime"))
776
778
  InstanceGroupDetail.add_member(:ready_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "ReadyDateTime"))
777
779
  InstanceGroupDetail.add_member(:end_date_time, Shapes::ShapeRef.new(shape: Date, location_name: "EndDateTime"))
780
+ InstanceGroupDetail.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
778
781
  InstanceGroupDetail.struct_class = Types::InstanceGroupDetail
779
782
 
780
783
  InstanceGroupDetailList.member = Shapes::ShapeRef.new(shape: InstanceGroupDetail)
@@ -837,6 +840,7 @@ module Aws::EMR
837
840
  InstanceTypeConfig.add_member(:bid_price_as_percentage_of_on_demand_price, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "BidPriceAsPercentageOfOnDemandPrice"))
838
841
  InstanceTypeConfig.add_member(:ebs_configuration, Shapes::ShapeRef.new(shape: EbsConfiguration, location_name: "EbsConfiguration"))
839
842
  InstanceTypeConfig.add_member(:configurations, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "Configurations"))
843
+ InstanceTypeConfig.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
840
844
  InstanceTypeConfig.struct_class = Types::InstanceTypeConfig
841
845
 
842
846
  InstanceTypeConfigList.member = Shapes::ShapeRef.new(shape: InstanceTypeConfig)
@@ -848,6 +852,7 @@ module Aws::EMR
848
852
  InstanceTypeSpecification.add_member(:configurations, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "Configurations"))
849
853
  InstanceTypeSpecification.add_member(:ebs_block_devices, Shapes::ShapeRef.new(shape: EbsBlockDeviceList, location_name: "EbsBlockDevices"))
850
854
  InstanceTypeSpecification.add_member(:ebs_optimized, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EbsOptimized"))
855
+ InstanceTypeSpecification.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
851
856
  InstanceTypeSpecification.struct_class = Types::InstanceTypeSpecification
852
857
 
853
858
  InstanceTypeSpecificationList.member = Shapes::ShapeRef.new(shape: InstanceTypeSpecification)
@@ -1423,7 +1428,7 @@ module Aws::EMR
1423
1428
  "jsonVersion" => "1.1",
1424
1429
  "protocol" => "json",
1425
1430
  "serviceAbbreviation" => "Amazon EMR",
1426
- "serviceFullName" => "Amazon Elastic MapReduce",
1431
+ "serviceFullName" => "Amazon EMR",
1427
1432
  "serviceId" => "EMR",
1428
1433
  "signatureVersion" => "v4",
1429
1434
  "targetPrefix" => "ElasticMapReduce",
@@ -50,6 +50,7 @@ module Aws::EMR
50
50
  # },
51
51
  # },
52
52
  # ],
53
+ # custom_ami_id: "XmlStringMaxLen256",
53
54
  # },
54
55
  # ],
55
56
  # launch_specifications: {
@@ -186,6 +187,7 @@ module Aws::EMR
186
187
  # },
187
188
  # ],
188
189
  # },
190
+ # custom_ami_id: "XmlStringMaxLen256",
189
191
  # },
190
192
  # ],
191
193
  # job_flow_id: "XmlStringMaxLen256", # required
@@ -899,14 +901,13 @@ module Aws::EMR
899
901
  # actions, regardless of IAM permissions policies attached to other
900
902
  # IAM principals.
901
903
  #
902
- # The default value is `false` if a value is not provided when
903
- # creating a cluster using the EMR API RunJobFlow command or the CLI
904
- # [create-cluster][1] command. The default value is `true` when a
905
- # cluster is created using the Management Console. IAM principals that
906
- # are allowed to perform actions on the cluster can use the
907
- # SetVisibleToAllUsers action to change the value on a running
904
+ # The default value is `true` if a value is not provided when creating
905
+ # a cluster using the EMR API RunJobFlow command, the CLI
906
+ # [create-cluster][1] command, or the Management Console. IAM
907
+ # principals that are allowed to perform actions on the cluster can
908
+ # use the SetVisibleToAllUsers action to change the value on a running
908
909
  # cluster. For more information, see [Understanding the EMR Cluster
909
- # VisibleToAllUsers Setting][2] in the *Amazon EMR Management Guide*.
910
+ # VisibleToAllUsers Setting][2] in the *Amazon EMRManagement Guide*.
910
911
  #
911
912
  #
912
913
  #
@@ -1509,7 +1510,7 @@ module Aws::EMR
1509
1510
  # Amazon Web Services SSO Identity Store. For more information, see
1510
1511
  # [UserId][1] and [GroupId][2] in the *Amazon Web Services SSO
1511
1512
  # Identity Store API Reference*. Either `IdentityName` or `IdentityId`
1512
- # must be specified.
1513
+ # must be specified, but not both.
1513
1514
  #
1514
1515
  #
1515
1516
  #
@@ -1521,7 +1522,7 @@ module Aws::EMR
1521
1522
  # The name of the user or group. For more information, see
1522
1523
  # [UserName][1] and [DisplayName][2] in the *Amazon Web Services SSO
1523
1524
  # Identity Store API Reference*. Either `IdentityName` or `IdentityId`
1524
- # must be specified.
1525
+ # must be specified, but not both.
1525
1526
  #
1526
1527
  #
1527
1528
  #
@@ -2690,6 +2691,7 @@ module Aws::EMR
2690
2691
  # },
2691
2692
  # },
2692
2693
  # ],
2694
+ # custom_ami_id: "XmlStringMaxLen256",
2693
2695
  # },
2694
2696
  # ],
2695
2697
  # launch_specifications: {
@@ -3086,6 +3088,10 @@ module Aws::EMR
3086
3088
  # PutAutoScalingPolicy.
3087
3089
  # @return [Types::AutoScalingPolicyDescription]
3088
3090
  #
3091
+ # @!attribute [rw] custom_ami_id
3092
+ # The custom AMI ID to use for the provisioned instance group.
3093
+ # @return [String]
3094
+ #
3089
3095
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroup AWS API Documentation
3090
3096
  #
3091
3097
  class InstanceGroup < Struct.new(
@@ -3105,7 +3111,8 @@ module Aws::EMR
3105
3111
  :ebs_block_devices,
3106
3112
  :ebs_optimized,
3107
3113
  :shrink_policy,
3108
- :auto_scaling_policy)
3114
+ :auto_scaling_policy,
3115
+ :custom_ami_id)
3109
3116
  SENSITIVE = []
3110
3117
  include Aws::Structure
3111
3118
  end
@@ -3184,6 +3191,7 @@ module Aws::EMR
3184
3191
  # },
3185
3192
  # ],
3186
3193
  # },
3194
+ # custom_ami_id: "XmlStringMaxLen256",
3187
3195
  # }
3188
3196
  #
3189
3197
  # @!attribute [rw] name
@@ -3236,6 +3244,10 @@ module Aws::EMR
3236
3244
  # PutAutoScalingPolicy.
3237
3245
  # @return [Types::AutoScalingPolicy]
3238
3246
  #
3247
+ # @!attribute [rw] custom_ami_id
3248
+ # The custom AMI ID to use for the provisioned instance group.
3249
+ # @return [String]
3250
+ #
3239
3251
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupConfig AWS API Documentation
3240
3252
  #
3241
3253
  class InstanceGroupConfig < Struct.new(
@@ -3247,7 +3259,8 @@ module Aws::EMR
3247
3259
  :instance_count,
3248
3260
  :configurations,
3249
3261
  :ebs_configuration,
3250
- :auto_scaling_policy)
3262
+ :auto_scaling_policy,
3263
+ :custom_ami_id)
3251
3264
  SENSITIVE = []
3252
3265
  include Aws::Structure
3253
3266
  end
@@ -3314,6 +3327,10 @@ module Aws::EMR
3314
3327
  # The date/time the instance group was terminated.
3315
3328
  # @return [Time]
3316
3329
  #
3330
+ # @!attribute [rw] custom_ami_id
3331
+ # The custom AMI ID to use for the provisioned instance group.
3332
+ # @return [String]
3333
+ #
3317
3334
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceGroupDetail AWS API Documentation
3318
3335
  #
3319
3336
  class InstanceGroupDetail < Struct.new(
@@ -3330,7 +3347,8 @@ module Aws::EMR
3330
3347
  :creation_date_time,
3331
3348
  :start_date_time,
3332
3349
  :ready_date_time,
3333
- :end_date_time)
3350
+ :end_date_time,
3351
+ :custom_ami_id)
3334
3352
  SENSITIVE = []
3335
3353
  include Aws::Structure
3336
3354
  end
@@ -3621,6 +3639,7 @@ module Aws::EMR
3621
3639
  # },
3622
3640
  # },
3623
3641
  # ],
3642
+ # custom_ami_id: "XmlStringMaxLen256",
3624
3643
  # }
3625
3644
  #
3626
3645
  # @!attribute [rw] instance_type
@@ -3661,6 +3680,10 @@ module Aws::EMR
3661
3680
  # and software that run on the cluster.
3662
3681
  # @return [Array<Types::Configuration>]
3663
3682
  #
3683
+ # @!attribute [rw] custom_ami_id
3684
+ # The custom AMI ID to use for the instance type.
3685
+ # @return [String]
3686
+ #
3664
3687
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceTypeConfig AWS API Documentation
3665
3688
  #
3666
3689
  class InstanceTypeConfig < Struct.new(
@@ -3669,7 +3692,8 @@ module Aws::EMR
3669
3692
  :bid_price,
3670
3693
  :bid_price_as_percentage_of_on_demand_price,
3671
3694
  :ebs_configuration,
3672
- :configurations)
3695
+ :configurations,
3696
+ :custom_ami_id)
3673
3697
  SENSITIVE = []
3674
3698
  include Aws::Structure
3675
3699
  end
@@ -3721,6 +3745,10 @@ module Aws::EMR
3721
3745
  # EBS-optimized.
3722
3746
  # @return [Boolean]
3723
3747
  #
3748
+ # @!attribute [rw] custom_ami_id
3749
+ # The custom AMI ID to use for the instance type.
3750
+ # @return [String]
3751
+ #
3724
3752
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceTypeSpecification AWS API Documentation
3725
3753
  #
3726
3754
  class InstanceTypeSpecification < Struct.new(
@@ -3730,7 +3758,8 @@ module Aws::EMR
3730
3758
  :bid_price_as_percentage_of_on_demand_price,
3731
3759
  :configurations,
3732
3760
  :ebs_block_devices,
3733
- :ebs_optimized)
3761
+ :ebs_optimized,
3762
+ :custom_ami_id)
3734
3763
  SENSITIVE = []
3735
3764
  include Aws::Structure
3736
3765
  end
@@ -3831,14 +3860,13 @@ module Aws::EMR
3831
3860
  # and the account root user can perform EMR actions, regardless of IAM
3832
3861
  # permissions policies attached to other IAM principals.
3833
3862
  #
3834
- # The default value is `false` if a value is not provided when
3835
- # creating a cluster using the EMR API RunJobFlow command or the CLI
3836
- # [create-cluster][1] command. The default value is `true` when a
3837
- # cluster is created using the Management Console. IAM principals that
3838
- # are authorized to perform actions on the cluster can use the
3839
- # SetVisibleToAllUsers action to change the value on a running
3863
+ # The default value is `true` if a value is not provided when creating
3864
+ # a cluster using the EMR API RunJobFlow command, the CLI
3865
+ # [create-cluster][1] command, or the Management Console. IAM
3866
+ # principals that are authorized to perform actions on the cluster can
3867
+ # use the SetVisibleToAllUsers action to change the value on a running
3840
3868
  # cluster. For more information, see [Understanding the EMR Cluster
3841
- # VisibleToAllUsers Setting][2] in the *Amazon EMR Management Guide*.
3869
+ # VisibleToAllUsers Setting][2] in the *Amazon EMRManagement Guide*.
3842
3870
  #
3843
3871
  #
3844
3872
  #
@@ -4026,6 +4054,7 @@ module Aws::EMR
4026
4054
  # },
4027
4055
  # ],
4028
4056
  # },
4057
+ # custom_ami_id: "XmlStringMaxLen256",
4029
4058
  # },
4030
4059
  # ],
4031
4060
  # instance_fleets: [
@@ -4064,6 +4093,7 @@ module Aws::EMR
4064
4093
  # },
4065
4094
  # },
4066
4095
  # ],
4096
+ # custom_ami_id: "XmlStringMaxLen256",
4067
4097
  # },
4068
4098
  # ],
4069
4099
  # launch_specifications: {
@@ -4814,9 +4844,9 @@ module Aws::EMR
4814
4844
  # which is usually the case for the first request of
4815
4845
  # ListReleaseLabels, the first page of results are determined by other
4816
4846
  # filtering parameters or by the latest version. The
4817
- # `ListReleaseLabels` request fails if the identity (AWS AccountID)
4818
- # and all filtering parameters are different from the original
4819
- # request, or if the `NextToken` is expired or tampered with.
4847
+ # `ListReleaseLabels` request fails if the identity (account ID) and
4848
+ # all filtering parameters are different from the original request, or
4849
+ # if the `NextToken` is expired or tampered with.
4820
4850
  # @return [String]
4821
4851
  #
4822
4852
  # @!attribute [rw] max_results
@@ -6016,6 +6046,7 @@ module Aws::EMR
6016
6046
  # },
6017
6047
  # ],
6018
6048
  # },
6049
+ # custom_ami_id: "XmlStringMaxLen256",
6019
6050
  # },
6020
6051
  # ],
6021
6052
  # instance_fleets: [
@@ -6054,6 +6085,7 @@ module Aws::EMR
6054
6085
  # },
6055
6086
  # },
6056
6087
  # ],
6088
+ # custom_ami_id: "XmlStringMaxLen256",
6057
6089
  # },
6058
6090
  # ],
6059
6091
  # launch_specifications: {
@@ -6315,7 +6347,7 @@ module Aws::EMR
6315
6347
  # @!attribute [rw] visible_to_all_users
6316
6348
  # Set this value to `true` so that IAM principals in the account
6317
6349
  # associated with the cluster can perform EMR actions on the cluster
6318
- # that their IAM policies allow. This value defaults to `false` for
6350
+ # that their IAM policies allow. This value defaults to `true` for
6319
6351
  # clusters created using the EMR API or the CLI [create-cluster][1]
6320
6352
  # command.
6321
6353
  #
@@ -6323,7 +6355,7 @@ module Aws::EMR
6323
6355
  # and the account root user can perform EMR actions for the cluster,
6324
6356
  # regardless of the IAM permissions policies attached to other IAM
6325
6357
  # principals. For more information, see [Understanding the EMR Cluster
6326
- # VisibleToAllUsers Setting][2] in the *Amazon EMR Management Guide*.
6358
+ # VisibleToAllUsers Setting][2] in the *Amazon EMRManagement Guide*.
6327
6359
  #
6328
6360
  #
6329
6361
  #
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.48.0
4
+ version: 1.49.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -44,8 +44,8 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.1'
47
- description: Official AWS Ruby gem for Amazon Elastic MapReduce (Amazon EMR). This
48
- gem is part of the AWS SDK for Ruby.
47
+ description: Official AWS Ruby gem for Amazon EMR. This gem is part of the AWS SDK
48
+ for Ruby.
49
49
  email:
50
50
  - aws-dr-rubygems@amazon.com
51
51
  executables: []