aws-sdk-emr 1.78.0 → 1.79.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: a742f73b70fe35a399bb9f27bd626eccee1022491a375e488ec4d067d1f9b014
4
- data.tar.gz: 54b0d86a7af07dee02d98671ee5bc41cceecb3b5583721ecab159d388d0653c2
3
+ metadata.gz: 88fd281ba84d49ffa849d16e2a11ca8dddf51e82864dd3d64e8abe0023d99614
4
+ data.tar.gz: e7800909a2f883c4586aeb9e3e91498696607526f67401dd49d99817ff2cf673
5
5
  SHA512:
6
- metadata.gz: 2d9e0d7d39a5573965564f5c066b8604e96bdd623a38873e031f8687fe7e67bc6bfb1c80c147790dfa39e834a57c662ffb4af19a401872c3b33dadf29cc82bed
7
- data.tar.gz: d277633cb33945c23bc463cd0b7b1a01ad131c539da1050716f7e4ac2de18e3322d626d9ed416f3502715658ee955697b53c7fba6e77709116c7464a7068c7b5
6
+ metadata.gz: eed1d6a3a0e4c663b980178f4d215ae97713d190d20dbdc39eb8ea581a6b7804d7e86c4577e909c3f5bb5052b2f3722acfb108842aa0df36258161ba7e71363f
7
+ data.tar.gz: 96733b2d03e500dba701df61caf5a7bffa290103416e0808b8bb92b652fa2d8d29adb09f97c8a8379ee5b54df439d71d53ea58f0343bbfb9328a0af67f77fd07
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - Launch support for IAM Identity Center Trusted Identity Propagation and workspace storage encryption using AWS KMS in EMR Studio
8
+
4
9
  1.78.0 (2023-11-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -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 higher, excluding 5.0.x.
404
+ # releases 4.8.0 and later, 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 higher, excluding version 5.0.0. A
745
+ # in Amazon EMR versions 4.8.0 and later, 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 higher, you can
749
+ # submitted. When you use Amazon EMR releases 5.28.0 and later, 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.
@@ -900,6 +900,23 @@ module Aws::EMR
900
900
  # with a maximum of 128 characters, and an optional value string with a
901
901
  # maximum of 256 characters.
902
902
  #
903
+ # @option params [Boolean] :trusted_identity_propagation_enabled
904
+ # A Boolean indicating whether to enable Trusted identity propagation
905
+ # for the Studio. The default value is `false`.
906
+ #
907
+ # @option params [String] :idc_user_assignment
908
+ # Specifies whether IAM Identity Center user assignment is `REQUIRED` or
909
+ # `OPTIONAL`. If the value is set to `REQUIRED`, users must be
910
+ # explicitly assigned to the Studio application to access the Studio.
911
+ #
912
+ # @option params [String] :idc_instance_arn
913
+ # The ARN of the IAM Identity Center instance to create the Studio
914
+ # application.
915
+ #
916
+ # @option params [String] :encryption_key_arn
917
+ # The KMS key identifier (ARN) used to encrypt Amazon EMR Studio
918
+ # workspace and notebook files when backed up to Amazon S3.
919
+ #
903
920
  # @return [Types::CreateStudioOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
904
921
  #
905
922
  # * {Types::CreateStudioOutput#studio_id #studio_id} => String
@@ -926,6 +943,10 @@ module Aws::EMR
926
943
  # value: "String",
927
944
  # },
928
945
  # ],
946
+ # trusted_identity_propagation_enabled: false,
947
+ # idc_user_assignment: "REQUIRED", # accepts REQUIRED, OPTIONAL
948
+ # idc_instance_arn: "ArnType",
949
+ # encryption_key_arn: "XmlString",
929
950
  # })
930
951
  #
931
952
  # @example Response structure
@@ -1575,6 +1596,10 @@ module Aws::EMR
1575
1596
  # resp.studio.tags #=> Array
1576
1597
  # resp.studio.tags[0].key #=> String
1577
1598
  # resp.studio.tags[0].value #=> String
1599
+ # resp.studio.idc_instance_arn #=> String
1600
+ # resp.studio.trusted_identity_propagation_enabled #=> Boolean
1601
+ # resp.studio.idc_user_assignment #=> String, one of "REQUIRED", "OPTIONAL"
1602
+ # resp.studio.encryption_key_arn #=> String
1578
1603
  #
1579
1604
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeStudio AWS API Documentation
1580
1605
  #
@@ -1899,7 +1924,7 @@ module Aws::EMR
1899
1924
  # Lists all available details about the instance fleets in a cluster.
1900
1925
  #
1901
1926
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
1902
- # releases 4.8.0 and higher, excluding 5.0.x versions.
1927
+ # releases 4.8.0 and later, excluding 5.0.x versions.
1903
1928
  #
1904
1929
  # </note>
1905
1930
  #
@@ -2613,7 +2638,7 @@ module Aws::EMR
2613
2638
  # atomically.
2614
2639
  #
2615
2640
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2616
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2641
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2617
2642
  #
2618
2643
  # </note>
2619
2644
  #
@@ -2816,7 +2841,7 @@ module Aws::EMR
2816
2841
  end
2817
2842
 
2818
2843
  # <note markdown="1"> Auto-termination is supported in Amazon EMR releases 5.30.0 and 6.1.0
2819
- # and higher. For more information, see [Using an auto-termination
2844
+ # and later. For more information, see [Using an auto-termination
2820
2845
  # policy][1].
2821
2846
  #
2822
2847
  # </note>
@@ -3091,7 +3116,7 @@ module Aws::EMR
3091
3116
  # your results.
3092
3117
  #
3093
3118
  # <note markdown="1"> The instance fleets configuration is available only in Amazon EMR
3094
- # releases 4.8.0 and higher, excluding 5.0.x versions. The RunJobFlow
3119
+ # releases 4.8.0 and later, excluding 5.0.x versions. The RunJobFlow
3095
3120
  # request can contain InstanceFleets parameters or InstanceGroups
3096
3121
  # parameters, but not both.
3097
3122
  #
@@ -3107,15 +3132,14 @@ module Aws::EMR
3107
3132
  # @option params [String] :log_encryption_kms_key_id
3108
3133
  # The KMS key used for encrypting log files. If a value is not provided,
3109
3134
  # the logs remain encrypted by AES-256. This attribute is only available
3110
- # with Amazon EMR releases 5.30.0 and higher, excluding Amazon EMR
3111
- # 6.0.0.
3135
+ # with Amazon EMR releases 5.30.0 and later, excluding Amazon EMR 6.0.0.
3112
3136
  #
3113
3137
  # @option params [String] :additional_info
3114
3138
  # A JSON string for selecting additional features.
3115
3139
  #
3116
3140
  # @option params [String] :ami_version
3117
3141
  # Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
3118
- # releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
3142
+ # releases 4.0 and later, `ReleaseLabel` is used. To specify a custom
3119
3143
  # AMI, use `CustomAmiID`.
3120
3144
  #
3121
3145
  # @option params [String] :release_label
@@ -3126,7 +3150,7 @@ module Aws::EMR
3126
3150
  # Amazon EMR release versions and included application versions and
3127
3151
  # features, see
3128
3152
  # [https://docs.aws.amazon.com/emr/latest/ReleaseGuide/][1]. The release
3129
- # label applies only to Amazon EMR releases version 4.0 and higher.
3153
+ # label applies only to Amazon EMR releases version 4.0 and later.
3130
3154
  # Earlier versions use `AmiVersion`.
3131
3155
  #
3132
3156
  #
@@ -3145,7 +3169,7 @@ module Aws::EMR
3145
3169
  #
3146
3170
  # @option params [Array<String>] :supported_products
3147
3171
  # <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
3148
- # higher, use Applications.
3172
+ # later, use Applications.
3149
3173
  #
3150
3174
  # </note>
3151
3175
  #
@@ -3163,7 +3187,7 @@ module Aws::EMR
3163
3187
  #
3164
3188
  # @option params [Array<Types::SupportedProductConfig>] :new_supported_products
3165
3189
  # <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
3166
- # higher, use Applications.
3190
+ # later, use Applications.
3167
3191
  #
3168
3192
  # </note>
3169
3193
  #
@@ -3199,7 +3223,7 @@ module Aws::EMR
3199
3223
  # [1]: https://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
3200
3224
  #
3201
3225
  # @option params [Array<Types::Application>] :applications
3202
- # Applies to Amazon EMR releases 4.0 and higher. A case-insensitive list
3226
+ # Applies to Amazon EMR releases 4.0 and later. A case-insensitive list
3203
3227
  # of applications for Amazon EMR to install and configure when launching
3204
3228
  # the cluster. For a list of applications available for each Amazon EMR
3205
3229
  # release version, see the [Amazon EMRRelease Guide][1].
@@ -3209,7 +3233,7 @@ module Aws::EMR
3209
3233
  # [1]: https://docs.aws.amazon.com/emr/latest/ReleaseGuide/
3210
3234
  #
3211
3235
  # @option params [Array<Types::Configuration>] :configurations
3212
- # For Amazon EMR releases 4.0 and higher. The list of configurations
3236
+ # For Amazon EMR releases 4.0 and later. The list of configurations
3213
3237
  # supplied for the Amazon EMR cluster that you are creating.
3214
3238
  #
3215
3239
  # @option params [Boolean] :visible_to_all_users
@@ -3266,18 +3290,18 @@ module Aws::EMR
3266
3290
  # `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR terminates
3267
3291
  # nodes at the instance-hour boundary, regardless of when the request to
3268
3292
  # terminate the instance was submitted. This option is only available
3269
- # with Amazon EMR 5.1.0 and higher and is the default for clusters
3293
+ # with Amazon EMR 5.1.0 and later and is the default for clusters
3270
3294
  # created using that version. `TERMINATE_AT_TASK_COMPLETION` indicates
3271
3295
  # that Amazon EMR adds nodes to a deny list and drains tasks from nodes
3272
3296
  # before terminating the Amazon EC2 instances, regardless of the
3273
3297
  # instance-hour boundary. With either behavior, Amazon EMR removes the
3274
3298
  # least active nodes first and blocks instance termination if it could
3275
3299
  # lead to HDFS corruption. `TERMINATE_AT_TASK_COMPLETION` available only
3276
- # in Amazon EMR releases 4.1.0 and higher, and is the default for
3300
+ # in Amazon EMR releases 4.1.0 and later, and is the default for
3277
3301
  # releases of Amazon EMR earlier than 5.1.0.
3278
3302
  #
3279
3303
  # @option params [String] :custom_ami_id
3280
- # Available only in Amazon EMR releases 5.7.0 and higher. The ID of a
3304
+ # Available only in Amazon EMR releases 5.7.0 and later. The ID of a
3281
3305
  # custom Amazon EBS-backed Linux AMI. If specified, Amazon EMR uses this
3282
3306
  # AMI when it launches cluster Amazon EC2 instances. For more
3283
3307
  # information about custom AMIs in Amazon EMR, see [Using a Custom
@@ -3297,9 +3321,9 @@ module Aws::EMR
3297
3321
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/finding-an-ami.html
3298
3322
  #
3299
3323
  # @option params [Integer] :ebs_root_volume_size
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.
3324
+ # The size, in GiB, of the Amazon EBS root device volume of the Linux
3325
+ # AMI that is used for each Amazon EC2 instance. Available in Amazon EMR
3326
+ # releases 4.x and later.
3303
3327
  #
3304
3328
  # @option params [String] :repo_upgrade_on_boot
3305
3329
  # Applies only when `CustomAmiID` is used. Specifies which updates from
@@ -3344,14 +3368,14 @@ module Aws::EMR
3344
3368
  # uses the latest validated Amazon Linux release for cluster launch.
3345
3369
  #
3346
3370
  # @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.
3371
+ # The IOPS, of the Amazon EBS root device volume of the Linux AMI that
3372
+ # is used for each Amazon EC2 instance. Available in Amazon EMR releases
3373
+ # 6.15.0 and later.
3350
3374
  #
3351
3375
  # @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.
3376
+ # The throughput, in MiB/s, of the Amazon EBS root device volume of the
3377
+ # Linux AMI that is used for each Amazon EC2 instance. Available in
3378
+ # Amazon EMR releases 6.15.0 and later.
3355
3379
  #
3356
3380
  # @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3357
3381
  #
@@ -3930,6 +3954,10 @@ module Aws::EMR
3930
3954
  # The Amazon S3 location to back up Workspaces and notebook files for
3931
3955
  # the Amazon EMR Studio.
3932
3956
  #
3957
+ # @option params [String] :encryption_key_arn
3958
+ # The KMS key identifier (ARN) used to encrypt Amazon EMR Studio
3959
+ # workspace and notebook files when backed up to Amazon S3.
3960
+ #
3933
3961
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3934
3962
  #
3935
3963
  # @example Request syntax with placeholder values
@@ -3940,6 +3968,7 @@ module Aws::EMR
3940
3968
  # description: "XmlStringMaxLen256",
3941
3969
  # subnet_ids: ["String"],
3942
3970
  # default_s3_location: "XmlString",
3971
+ # encryption_key_arn: "XmlString",
3943
3972
  # })
3944
3973
  #
3945
3974
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/UpdateStudio AWS API Documentation
@@ -4020,7 +4049,7 @@ module Aws::EMR
4020
4049
  params: params,
4021
4050
  config: config)
4022
4051
  context[:gem_name] = 'aws-sdk-emr'
4023
- context[:gem_version] = '1.78.0'
4052
+ context[:gem_version] = '1.79.0'
4024
4053
  Seahorse::Client::Request.new(handlers, context)
4025
4054
  end
4026
4055
 
@@ -123,6 +123,7 @@ module Aws::EMR
123
123
  HadoopJarStepConfig = Shapes::StructureShape.new(name: 'HadoopJarStepConfig')
124
124
  HadoopStepConfig = Shapes::StructureShape.new(name: 'HadoopStepConfig')
125
125
  IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
126
+ IdcUserAssignment = Shapes::StringShape.new(name: 'IdcUserAssignment')
126
127
  IdentityType = Shapes::StringShape.new(name: 'IdentityType')
127
128
  Instance = Shapes::StructureShape.new(name: 'Instance')
128
129
  InstanceCollectionType = Shapes::StringShape.new(name: 'InstanceCollectionType')
@@ -551,6 +552,10 @@ module Aws::EMR
551
552
  CreateStudioInput.add_member(:idp_auth_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "IdpAuthUrl"))
552
553
  CreateStudioInput.add_member(:idp_relay_state_parameter_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdpRelayStateParameterName"))
553
554
  CreateStudioInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
555
+ CreateStudioInput.add_member(:trusted_identity_propagation_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "TrustedIdentityPropagationEnabled"))
556
+ CreateStudioInput.add_member(:idc_user_assignment, Shapes::ShapeRef.new(shape: IdcUserAssignment, location_name: "IdcUserAssignment"))
557
+ CreateStudioInput.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "IdcInstanceArn"))
558
+ CreateStudioInput.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: XmlString, location_name: "EncryptionKeyArn"))
554
559
  CreateStudioInput.struct_class = Types::CreateStudioInput
555
560
 
556
561
  CreateStudioOutput.add_member(:studio_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "StudioId"))
@@ -1514,6 +1519,10 @@ module Aws::EMR
1514
1519
  Studio.add_member(:idp_auth_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "IdpAuthUrl"))
1515
1520
  Studio.add_member(:idp_relay_state_parameter_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdpRelayStateParameterName"))
1516
1521
  Studio.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1522
+ Studio.add_member(:idc_instance_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "IdcInstanceArn"))
1523
+ Studio.add_member(:trusted_identity_propagation_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "TrustedIdentityPropagationEnabled"))
1524
+ Studio.add_member(:idc_user_assignment, Shapes::ShapeRef.new(shape: IdcUserAssignment, location_name: "IdcUserAssignment"))
1525
+ Studio.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: XmlString, location_name: "EncryptionKeyArn"))
1517
1526
  Studio.struct_class = Types::Studio
1518
1527
 
1519
1528
  StudioSummary.add_member(:studio_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "StudioId"))
@@ -1564,6 +1573,7 @@ module Aws::EMR
1564
1573
  UpdateStudioInput.add_member(:description, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Description"))
1565
1574
  UpdateStudioInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "SubnetIds"))
1566
1575
  UpdateStudioInput.add_member(:default_s3_location, Shapes::ShapeRef.new(shape: XmlString, location_name: "DefaultS3Location"))
1576
+ UpdateStudioInput.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: XmlString, location_name: "EncryptionKeyArn"))
1567
1577
  UpdateStudioInput.struct_class = Types::UpdateStudioInput
1568
1578
 
1569
1579
  UpdateStudioSessionMappingInput.add_member(:studio_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "StudioId"))
@@ -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 higher, the only accepted
171
+ # With Amazon EMR release version 4.0 and later, 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 higher, excluding version 5.0.0.
435
+ # in Amazon EMR version 4.8.0 and later, 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 higher, excluding 5.0.x versions.
590
+ # releases 4.8.0 and later, 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 higher, excluding Amazon EMR
607
+ # available with Amazon EMR 5.30.0 and later, 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
- # higher. Earlier versions use `AmiVersion`.
628
+ # later. 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 higher. The list of
696
+ # Applies only to Amazon EMR releases 4.x and later. 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 higher and is the default for
717
+ # available with Amazon EMR 5.1.0 and later 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 higher, and is
725
- # the default for versions of Amazon EMR earlier than 5.1.0.
724
+ # is available only in Amazon EMR releases 4.1.0 and later, and is the
725
+ # 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 higher. The ID of a
729
+ # Available only in Amazon EMR releases 5.7.0 and later. 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 for the Linux
735
- # AMI that each Amazon EC2 instance uses. Available in Amazon EMR
736
- # releases 4.x and higher.
734
+ # The size, in GiB, of the Amazon EBS root device volume of the Linux
735
+ # AMI that is used for each Amazon EC2 instance. Available in Amazon
736
+ # EMR releases 4.x and later.
737
737
  # @return [Integer]
738
738
  #
739
739
  # @!attribute [rw] repo_upgrade_on_boot
@@ -777,15 +777,15 @@ module Aws::EMR
777
777
  # @return [String]
778
778
  #
779
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.
780
+ # The IOPS, of the Amazon EBS root device volume of the Linux AMI that
781
+ # is used for each Amazon EC2 instance. Available in Amazon EMR
782
+ # releases 6.15.0 and later.
783
783
  # @return [Integer]
784
784
  #
785
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.
786
+ # The throughput, in MiB/s, of the Amazon EBS root device volume of
787
+ # the Linux AMI that is used for each Amazon EC2 instance. Available
788
+ # in Amazon EMR releases 6.15.0 and later.
789
789
  # @return [Integer]
790
790
  #
791
791
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
@@ -1026,7 +1026,7 @@ module Aws::EMR
1026
1026
  include Aws::Structure
1027
1027
  end
1028
1028
 
1029
- # <note markdown="1"> Amazon EMR releases 4.x or higher.
1029
+ # <note markdown="1"> Amazon EMR releases 4.x or later.
1030
1030
  #
1031
1031
  # </note>
1032
1032
  #
@@ -1185,6 +1185,27 @@ module Aws::EMR
1185
1185
  # a maximum of 256 characters.
1186
1186
  # @return [Array<Types::Tag>]
1187
1187
  #
1188
+ # @!attribute [rw] trusted_identity_propagation_enabled
1189
+ # A Boolean indicating whether to enable Trusted identity propagation
1190
+ # for the Studio. The default value is `false`.
1191
+ # @return [Boolean]
1192
+ #
1193
+ # @!attribute [rw] idc_user_assignment
1194
+ # Specifies whether IAM Identity Center user assignment is `REQUIRED`
1195
+ # or `OPTIONAL`. If the value is set to `REQUIRED`, users must be
1196
+ # explicitly assigned to the Studio application to access the Studio.
1197
+ # @return [String]
1198
+ #
1199
+ # @!attribute [rw] idc_instance_arn
1200
+ # The ARN of the IAM Identity Center instance to create the Studio
1201
+ # application.
1202
+ # @return [String]
1203
+ #
1204
+ # @!attribute [rw] encryption_key_arn
1205
+ # The KMS key identifier (ARN) used to encrypt Amazon EMR Studio
1206
+ # workspace and notebook files when backed up to Amazon S3.
1207
+ # @return [String]
1208
+ #
1188
1209
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateStudioInput AWS API Documentation
1189
1210
  #
1190
1211
  class CreateStudioInput < Struct.new(
@@ -1200,7 +1221,11 @@ module Aws::EMR
1200
1221
  :default_s3_location,
1201
1222
  :idp_auth_url,
1202
1223
  :idp_relay_state_parameter_name,
1203
- :tags)
1224
+ :tags,
1225
+ :trusted_identity_propagation_enabled,
1226
+ :idc_user_assignment,
1227
+ :idc_instance_arn,
1228
+ :encryption_key_arn)
1204
1229
  SENSITIVE = []
1205
1230
  include Aws::Structure
1206
1231
  end
@@ -1940,8 +1965,8 @@ module Aws::EMR
1940
1965
  # specified as an exception using
1941
1966
  # `PermittedPublicSecurityGroupRuleRanges` in the
1942
1967
  # `BlockPublicAccessConfiguration`. By default, Port 22 (SSH) is an
1943
- # exception, and public access is allowed on this port. To change
1944
- # this, update the block public access configuration to remove the
1968
+ # exception, and public access is allowed on this port. You can change
1969
+ # this by updating the block public access configuration to remove the
1945
1970
  # exception.
1946
1971
  #
1947
1972
  # <note markdown="1"> For accounts that created clusters in a Region before November 25,
@@ -2242,7 +2267,7 @@ module Aws::EMR
2242
2267
  # defined target capacity.
2243
2268
  #
2244
2269
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2245
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2270
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2246
2271
  #
2247
2272
  # </note>
2248
2273
  #
@@ -2362,7 +2387,7 @@ module Aws::EMR
2362
2387
  # The configuration that defines an instance fleet.
2363
2388
  #
2364
2389
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2365
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2390
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2366
2391
  #
2367
2392
  # </note>
2368
2393
  #
@@ -2453,7 +2478,7 @@ module Aws::EMR
2453
2478
  # Configuration parameters for an instance fleet modification request.
2454
2479
  #
2455
2480
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2456
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2481
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2457
2482
  #
2458
2483
  # </note>
2459
2484
  #
@@ -2491,9 +2516,9 @@ module Aws::EMR
2491
2516
  # allocation strategy.
2492
2517
  #
2493
2518
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
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.
2519
+ # releases 4.8.0 and later, excluding 5.0.x versions. On-Demand and Spot
2520
+ # instance allocation strategies are available in Amazon EMR releases
2521
+ # 5.12.1 and later.
2497
2522
  #
2498
2523
  # </note>
2499
2524
  #
@@ -2508,9 +2533,9 @@ module Aws::EMR
2508
2533
  # fleet, which determines the allocation strategy.
2509
2534
  #
2510
2535
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2511
- # releases 4.8.0 and higher, excluding 5.0.x versions. On-Demand
2536
+ # releases 4.8.0 and later, excluding 5.0.x versions. On-Demand
2512
2537
  # Instances allocation strategy is available in Amazon EMR releases
2513
- # 5.12.1 and higher.
2538
+ # 5.12.1 and later.
2514
2539
  #
2515
2540
  # </note>
2516
2541
  # @return [Types::OnDemandProvisioningSpecification]
@@ -2549,7 +2574,7 @@ module Aws::EMR
2549
2574
  # Provides status change reason details for the instance fleet.
2550
2575
  #
2551
2576
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2552
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2577
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2553
2578
  #
2554
2579
  # </note>
2555
2580
  #
@@ -2573,7 +2598,7 @@ module Aws::EMR
2573
2598
  # The status of the instance fleet.
2574
2599
  #
2575
2600
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2576
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2601
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2577
2602
  #
2578
2603
  # </note>
2579
2604
  #
@@ -2629,7 +2654,7 @@ module Aws::EMR
2629
2654
  # of termination.
2630
2655
  #
2631
2656
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
2632
- # releases 4.8.0 and higher, excluding 5.0.x versions.
2657
+ # releases 4.8.0 and later, excluding 5.0.x versions.
2633
2658
  #
2634
2659
  # </note>
2635
2660
  #
@@ -2702,7 +2727,7 @@ module Aws::EMR
2702
2727
  # @return [Types::InstanceGroupStatus]
2703
2728
  #
2704
2729
  # @!attribute [rw] configurations
2705
- # <note markdown="1"> Amazon EMR releases 4.x or higher.
2730
+ # <note markdown="1"> Amazon EMR releases 4.x or later.
2706
2731
  #
2707
2732
  # </note>
2708
2733
  #
@@ -2809,7 +2834,7 @@ module Aws::EMR
2809
2834
  # @return [Integer]
2810
2835
  #
2811
2836
  # @!attribute [rw] configurations
2812
- # <note markdown="1"> Amazon EMR releases 4.x or higher.
2837
+ # <note markdown="1"> Amazon EMR releases 4.x or later.
2813
2838
  #
2814
2839
  # </note>
2815
2840
  #
@@ -3157,7 +3182,7 @@ module Aws::EMR
3157
3182
  # configurations for a fleet.
3158
3183
  #
3159
3184
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
3160
- # releases 4.8.0 and higher, excluding 5.0.x versions.
3185
+ # releases 4.8.0 and later, excluding 5.0.x versions.
3161
3186
  #
3162
3187
  # </note>
3163
3188
  #
@@ -3225,7 +3250,7 @@ module Aws::EMR
3225
3250
  # fleet.
3226
3251
  #
3227
3252
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
3228
- # releases 4.8.0 and higher, excluding 5.0.x versions.
3253
+ # releases 4.8.0 and later, excluding 5.0.x versions.
3229
3254
  #
3230
3255
  # </note>
3231
3256
  #
@@ -3344,12 +3369,12 @@ module Aws::EMR
3344
3369
  #
3345
3370
  # @!attribute [rw] log_encryption_kms_key_id
3346
3371
  # The KMS key used for encrypting log files. This attribute is only
3347
- # available with Amazon EMR 5.30.0 and higher, excluding 6.0.0.
3372
+ # available with Amazon EMR 5.30.0 and later, excluding 6.0.0.
3348
3373
  # @return [String]
3349
3374
  #
3350
3375
  # @!attribute [rw] ami_version
3351
3376
  # Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
3352
- # releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
3377
+ # releases 4.0 and later, `ReleaseLabel` is used. To specify a custom
3353
3378
  # AMI, use `CustomAmiID`.
3354
3379
  # @return [String]
3355
3380
  #
@@ -3418,14 +3443,14 @@ module Aws::EMR
3418
3443
  # `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR terminates
3419
3444
  # nodes at the instance-hour boundary, regardless of when the request
3420
3445
  # to terminate the instance was submitted. This option is only
3421
- # available with Amazon EMR 5.1.0 and higher and is the default for
3446
+ # available with Amazon EMR 5.1.0 and later and is the default for
3422
3447
  # clusters created using that version. `TERMINATE_AT_TASK_COMPLETION`
3423
3448
  # indicates that Amazon EMR adds nodes to a deny list and drains tasks
3424
3449
  # from nodes before terminating the Amazon EC2 instances, regardless
3425
3450
  # of the instance-hour boundary. With either behavior, Amazon EMR
3426
3451
  # removes the least active nodes first and blocks instance termination
3427
3452
  # if it could lead to HDFS corruption. `TERMINATE_AT_TASK_COMPLETION`
3428
- # available only in Amazon EMR releases 4.1.0 and higher, and is the
3453
+ # available only in Amazon EMR releases 4.1.0 and later, and is the
3429
3454
  # default for releases of Amazon EMR earlier than 5.1.0.
3430
3455
  # @return [String]
3431
3456
  #
@@ -3516,7 +3541,7 @@ module Aws::EMR
3516
3541
  #
3517
3542
  # @!attribute [rw] instance_fleets
3518
3543
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
3519
- # releases 4.8.0 and higher, excluding 5.0.x versions.
3544
+ # releases 4.8.0 and later, excluding 5.0.x versions.
3520
3545
  #
3521
3546
  # </note>
3522
3547
  #
@@ -3575,7 +3600,7 @@ module Aws::EMR
3575
3600
  # them and launches instances in the optimal subnet.
3576
3601
  #
3577
3602
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
3578
- # releases 4.8.0 and higher, excluding 5.0.x versions.
3603
+ # releases 4.8.0 and later, excluding 5.0.x versions.
3579
3604
  #
3580
3605
  # </note>
3581
3606
  # @return [Array<String>]
@@ -4820,9 +4845,9 @@ module Aws::EMR
4820
4845
  # fleet, which determines the allocation strategy.
4821
4846
  #
4822
4847
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
4823
- # releases 4.8.0 and higher, excluding 5.0.x versions. On-Demand
4848
+ # releases 4.8.0 and later, excluding 5.0.x versions. On-Demand
4824
4849
  # Instances allocation strategy is available in Amazon EMR releases
4825
- # 5.12.1 and higher.
4850
+ # 5.12.1 and later.
4826
4851
  #
4827
4852
  # </note>
4828
4853
  #
@@ -4954,7 +4979,7 @@ module Aws::EMR
4954
4979
  # `AvailabilityZone` (singular) is used for uniform instance groups.
4955
4980
  #
4956
4981
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
4957
- # releases 4.8.0 and higher, excluding 5.0.x versions.
4982
+ # releases 4.8.0 and later, excluding 5.0.x versions.
4958
4983
  #
4959
4984
  # </note>
4960
4985
  # @return [Array<String>]
@@ -5240,7 +5265,7 @@ module Aws::EMR
5240
5265
  # @!attribute [rw] log_encryption_kms_key_id
5241
5266
  # The KMS key used for encrypting log files. If a value is not
5242
5267
  # provided, the logs remain encrypted by AES-256. This attribute is
5243
- # only available with Amazon EMR releases 5.30.0 and higher, excluding
5268
+ # only available with Amazon EMR releases 5.30.0 and later, excluding
5244
5269
  # Amazon EMR 6.0.0.
5245
5270
  # @return [String]
5246
5271
  #
@@ -5250,7 +5275,7 @@ module Aws::EMR
5250
5275
  #
5251
5276
  # @!attribute [rw] ami_version
5252
5277
  # Applies only to Amazon EMR AMI versions 3.x and 2.x. For Amazon EMR
5253
- # releases 4.0 and higher, `ReleaseLabel` is used. To specify a custom
5278
+ # releases 4.0 and later, `ReleaseLabel` is used. To specify a custom
5254
5279
  # AMI, use `CustomAmiID`.
5255
5280
  # @return [String]
5256
5281
  #
@@ -5263,7 +5288,7 @@ module Aws::EMR
5263
5288
  # features, see
5264
5289
  # [https://docs.aws.amazon.com/emr/latest/ReleaseGuide/][1]. The
5265
5290
  # release label applies only to Amazon EMR releases version 4.0 and
5266
- # higher. Earlier versions use `AmiVersion`.
5291
+ # later. Earlier versions use `AmiVersion`.
5267
5292
  #
5268
5293
  #
5269
5294
  #
@@ -5285,7 +5310,7 @@ module Aws::EMR
5285
5310
  #
5286
5311
  # @!attribute [rw] supported_products
5287
5312
  # <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
5288
- # higher, use Applications.
5313
+ # later, use Applications.
5289
5314
  #
5290
5315
  # </note>
5291
5316
  #
@@ -5304,7 +5329,7 @@ module Aws::EMR
5304
5329
  #
5305
5330
  # @!attribute [rw] new_supported_products
5306
5331
  # <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
5307
- # higher, use Applications.
5332
+ # later, use Applications.
5308
5333
  #
5309
5334
  # </note>
5310
5335
  #
@@ -5341,7 +5366,7 @@ module Aws::EMR
5341
5366
  # @return [Array<Types::SupportedProductConfig>]
5342
5367
  #
5343
5368
  # @!attribute [rw] applications
5344
- # Applies to Amazon EMR releases 4.0 and higher. A case-insensitive
5369
+ # Applies to Amazon EMR releases 4.0 and later. A case-insensitive
5345
5370
  # list of applications for Amazon EMR to install and configure when
5346
5371
  # launching the cluster. For a list of applications available for each
5347
5372
  # Amazon EMR release version, see the [Amazon EMRRelease Guide][1].
@@ -5352,7 +5377,7 @@ module Aws::EMR
5352
5377
  # @return [Array<Types::Application>]
5353
5378
  #
5354
5379
  # @!attribute [rw] configurations
5355
- # For Amazon EMR releases 4.0 and higher. The list of configurations
5380
+ # For Amazon EMR releases 4.0 and later. The list of configurations
5356
5381
  # supplied for the Amazon EMR cluster that you are creating.
5357
5382
  # @return [Array<Types::Configuration>]
5358
5383
  #
@@ -5416,7 +5441,7 @@ module Aws::EMR
5416
5441
  # resized. `TERMINATE_AT_INSTANCE_HOUR` indicates that Amazon EMR
5417
5442
  # terminates nodes at the instance-hour boundary, regardless of when
5418
5443
  # the request to terminate the instance was submitted. This option is
5419
- # only available with Amazon EMR 5.1.0 and higher and is the default
5444
+ # only available with Amazon EMR 5.1.0 and later and is the default
5420
5445
  # for clusters created using that version.
5421
5446
  # `TERMINATE_AT_TASK_COMPLETION` indicates that Amazon EMR adds nodes
5422
5447
  # to a deny list and drains tasks from nodes before terminating the
@@ -5424,12 +5449,12 @@ module Aws::EMR
5424
5449
  # either behavior, Amazon EMR removes the least active nodes first and
5425
5450
  # blocks instance termination if it could lead to HDFS corruption.
5426
5451
  # `TERMINATE_AT_TASK_COMPLETION` available only in Amazon EMR releases
5427
- # 4.1.0 and higher, and is the default for releases of Amazon EMR
5452
+ # 4.1.0 and later, and is the default for releases of Amazon EMR
5428
5453
  # earlier than 5.1.0.
5429
5454
  # @return [String]
5430
5455
  #
5431
5456
  # @!attribute [rw] custom_ami_id
5432
- # Available only in Amazon EMR releases 5.7.0 and higher. The ID of a
5457
+ # Available only in Amazon EMR releases 5.7.0 and later. The ID of a
5433
5458
  # custom Amazon EBS-backed Linux AMI. If specified, Amazon EMR uses
5434
5459
  # this AMI when it launches cluster Amazon EC2 instances. For more
5435
5460
  # information about custom AMIs in Amazon EMR, see [Using a Custom
@@ -5450,9 +5475,9 @@ module Aws::EMR
5450
5475
  # @return [String]
5451
5476
  #
5452
5477
  # @!attribute [rw] ebs_root_volume_size
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.
5478
+ # The size, in GiB, of the Amazon EBS root device volume of the Linux
5479
+ # AMI that is used for each Amazon EC2 instance. Available in Amazon
5480
+ # EMR releases 4.x and later.
5456
5481
  # @return [Integer]
5457
5482
  #
5458
5483
  # @!attribute [rw] repo_upgrade_on_boot
@@ -5508,15 +5533,15 @@ module Aws::EMR
5508
5533
  # @return [String]
5509
5534
  #
5510
5535
  # @!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.
5536
+ # The IOPS, of the Amazon EBS root device volume of the Linux AMI that
5537
+ # is used for each Amazon EC2 instance. Available in Amazon EMR
5538
+ # releases 6.15.0 and later.
5514
5539
  # @return [Integer]
5515
5540
  #
5516
5541
  # @!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.
5542
+ # The throughput, in MiB/s, of the Amazon EBS root device volume of
5543
+ # the Linux AMI that is used for each Amazon EC2 instance. Available
5544
+ # in Amazon EMR releases 6.15.0 and later.
5520
5545
  # @return [Integer]
5521
5546
  #
5522
5547
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
@@ -5962,9 +5987,9 @@ module Aws::EMR
5962
5987
  # and allocation strategy.
5963
5988
  #
5964
5989
  # <note markdown="1"> The instance fleet configuration is available only in Amazon EMR
5965
- # releases 4.8.0 and higher, excluding 5.0.x versions. Spot Instance
5990
+ # releases 4.8.0 and later, excluding 5.0.x versions. Spot Instance
5966
5991
  # allocation strategy is available in Amazon EMR releases 5.12.1 and
5967
- # higher.
5992
+ # later.
5968
5993
  #
5969
5994
  # </note>
5970
5995
  #
@@ -6530,6 +6555,28 @@ module Aws::EMR
6530
6555
  # A list of tags associated with the Amazon EMR Studio.
6531
6556
  # @return [Array<Types::Tag>]
6532
6557
  #
6558
+ # @!attribute [rw] idc_instance_arn
6559
+ # The ARN of the IAM Identity Center instance the Studio application
6560
+ # belongs to.
6561
+ # @return [String]
6562
+ #
6563
+ # @!attribute [rw] trusted_identity_propagation_enabled
6564
+ # Indicates whether the Studio has Trusted identity propagation
6565
+ # enabled. The default value is `false`.
6566
+ # @return [Boolean]
6567
+ #
6568
+ # @!attribute [rw] idc_user_assignment
6569
+ # Indicates whether the Studio has `REQUIRED` or `OPTIONAL` IAM
6570
+ # Identity Center user assignment. If the value is set to `REQUIRED`,
6571
+ # users must be explicitly assigned to the Studio application to
6572
+ # access the Studio.
6573
+ # @return [String]
6574
+ #
6575
+ # @!attribute [rw] encryption_key_arn
6576
+ # The KMS key identifier (ARN) used to encrypt Amazon EMR Studio
6577
+ # workspace and notebook files when backed up to Amazon S3.
6578
+ # @return [String]
6579
+ #
6533
6580
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Studio AWS API Documentation
6534
6581
  #
6535
6582
  class Studio < Struct.new(
@@ -6549,14 +6596,18 @@ module Aws::EMR
6549
6596
  :default_s3_location,
6550
6597
  :idp_auth_url,
6551
6598
  :idp_relay_state_parameter_name,
6552
- :tags)
6599
+ :tags,
6600
+ :idc_instance_arn,
6601
+ :trusted_identity_propagation_enabled,
6602
+ :idc_user_assignment,
6603
+ :encryption_key_arn)
6553
6604
  SENSITIVE = []
6554
6605
  include Aws::Structure
6555
6606
  end
6556
6607
 
6557
6608
  # Details for an Amazon EMR Studio, including ID, Name, VPC, and
6558
- # Description. The details do not include subnets, IAM roles, security
6559
- # groups, or tags associated with the Studio.
6609
+ # Description. To fetch additional details such as subnets, IAM roles,
6610
+ # security groups, and tags for the Studio, use the DescribeStudio API.
6560
6611
  #
6561
6612
  # @!attribute [rw] studio_id
6562
6613
  # The ID of the Amazon EMR Studio.
@@ -6779,6 +6830,11 @@ module Aws::EMR
6779
6830
  # the Amazon EMR Studio.
6780
6831
  # @return [String]
6781
6832
  #
6833
+ # @!attribute [rw] encryption_key_arn
6834
+ # The KMS key identifier (ARN) used to encrypt Amazon EMR Studio
6835
+ # workspace and notebook files when backed up to Amazon S3.
6836
+ # @return [String]
6837
+ #
6782
6838
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/UpdateStudioInput AWS API Documentation
6783
6839
  #
6784
6840
  class UpdateStudioInput < Struct.new(
@@ -6786,7 +6842,8 @@ module Aws::EMR
6786
6842
  :name,
6787
6843
  :description,
6788
6844
  :subnet_ids,
6789
- :default_s3_location)
6845
+ :default_s3_location,
6846
+ :encryption_key_arn)
6790
6847
  SENSITIVE = []
6791
6848
  include Aws::Structure
6792
6849
  end
data/lib/aws-sdk-emr.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-emr/customizations'
53
53
  # @!group service
54
54
  module Aws::EMR
55
55
 
56
- GEM_VERSION = '1.78.0'
56
+ GEM_VERSION = '1.79.0'
57
57
 
58
58
  end
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.78.0
4
+ version: 1.79.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-13 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core