aws-sdk-emr 1.51.0 → 1.55.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: 3ed693aacc3d4a96059288bcfc308229b347a3156e07b6dfc575d9eba5ca9fb5
4
- data.tar.gz: dcadb3f2e1c2a534177c8bfbccb4093656f79b34b18e22e762f68d9997f6619f
3
+ metadata.gz: e93050dc683b16c456788218f7e90e4970144699517f04cac2df6bcbe30ea5ad
4
+ data.tar.gz: a41f937138d2422ff3472dfb1a3c75e5b6db1df6abf6a22d49e56ee882a19746
5
5
  SHA512:
6
- metadata.gz: 891ef1c6c0f9aaecfcdb33f40612689ea143da87ddf606aec65ee5bc172bcae6108b33faa0e5eb924a7b9d8b66a1bc669e61cf0b28e8b70cded6df3f9ac5d93d
7
- data.tar.gz: c7f3148a45d46a59c22fe284e8dc06a4c60f6f8beb949f0f119b67b0d17968f314d75e66b556fcad87766dfd7ee6b8b77a0011004339614324bbc4a92fc4d82d
6
+ metadata.gz: 19c33719d77b94078de9a17d617734f2b7de60d14490db8e1d4dac055515326d2d76e531bb6bf1dfd42019a602f76492e91c1428a7bc9d01f901a8421f945c50
7
+ data.tar.gz: dc9fca7474bf259b40a5b70ffcb7b67a49f6e30a55da2c13ab637898b8ec74eeb2b3324a5fba03fd46ddaa0439e572f94a081cbe833545e8ed98d4448a145a1c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.54.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.53.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.52.0 (2021-09-09)
20
+ ------------------
21
+
22
+ * Feature - This release enables customers to login to EMR Studio using AWS Identity and Access Management (IAM) identities or identities in their Identity Provider (IdP) via IAM.
23
+
4
24
  1.51.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.55.0
@@ -119,7 +119,9 @@ module Aws::EMR
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::EMR
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -618,24 +629,24 @@ module Aws::EMR
618
629
  req.send_request(options)
619
630
  end
620
631
 
621
- # Adds tags to an Amazon EMR resource. Tags make it easier to associate
622
- # clusters in various ways, such as grouping clusters to track your
623
- # Amazon EMR resource allocation costs. For more information, see [Tag
624
- # Clusters][1].
632
+ # Adds tags to an Amazon EMR resource, such as a cluster or an Amazon
633
+ # EMR Studio. Tags make it easier to associate resources in various
634
+ # ways, such as grouping clusters to track your Amazon EMR resource
635
+ # allocation costs. For more information, see [Tag Clusters][1].
625
636
  #
626
637
  #
627
638
  #
628
639
  # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
629
640
  #
630
641
  # @option params [required, String] :resource_id
631
- # The Amazon EMR resource identifier to which tags will be added. This
632
- # value must be a cluster identifier.
642
+ # The Amazon EMR resource identifier to which tags will be added. For
643
+ # example, a cluster identifier or an Amazon EMR Studio ID.
633
644
  #
634
645
  # @option params [required, Array<Types::Tag>] :tags
635
- # A list of tags to associate with a cluster and propagate to EC2
636
- # instances. Tags are user-defined key-value pairs that consist of a
637
- # required key string with a maximum of 128 characters, and an optional
638
- # value string with a maximum of 256 characters.
646
+ # A list of tags to associate with a resource. Tags are user-defined
647
+ # key-value pairs that consist of a required key string with a maximum
648
+ # of 128 characters, and an optional value string with a maximum of 256
649
+ # characters.
639
650
  #
640
651
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
641
652
  #
@@ -760,9 +771,8 @@ module Aws::EMR
760
771
  # A detailed description of the Amazon EMR Studio.
761
772
  #
762
773
  # @option params [required, String] :auth_mode
763
- # Specifies whether the Studio authenticates users using single sign-on
764
- # (SSO) or IAM. Amazon EMR Studio currently only supports SSO
765
- # authentication.
774
+ # Specifies whether the Studio authenticates users using IAM or Amazon
775
+ # Web Services SSO.
766
776
  #
767
777
  # @option params [required, String] :vpc_id
768
778
  # The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate
@@ -775,14 +785,16 @@ module Aws::EMR
775
785
  # the specified subnets.
776
786
  #
777
787
  # @option params [required, String] :service_role
778
- # The IAM role that will be assumed by the Amazon EMR Studio. The
779
- # service role provides a way for Amazon EMR Studio to interoperate with
780
- # other Amazon Web Services services.
788
+ # The IAM role that the Amazon EMR Studio assumes. The service role
789
+ # provides a way for Amazon EMR Studio to interoperate with other Amazon
790
+ # Web Services services.
781
791
  #
782
- # @option params [required, String] :user_role
783
- # The IAM user role that will be assumed by users and groups logged in
784
- # to an Amazon EMR Studio. The permissions attached to this IAM role can
785
- # be scoped down for each user or group using session policies.
792
+ # @option params [String] :user_role
793
+ # The IAM user role that users and groups assume when logged in to an
794
+ # Amazon EMR Studio. Only specify a `UserRole` when you use Amazon Web
795
+ # Services SSO authentication. The permissions attached to the
796
+ # `UserRole` can be scoped down for each user or group using session
797
+ # policies.
786
798
  #
787
799
  # @option params [required, String] :workspace_security_group_id
788
800
  # The ID of the Amazon EMR Studio Workspace security group. The
@@ -799,6 +811,20 @@ module Aws::EMR
799
811
  # The Amazon S3 location to back up Amazon EMR Studio Workspaces and
800
812
  # notebook files.
801
813
  #
814
+ # @option params [String] :idp_auth_url
815
+ # The authentication endpoint of your identity provider (IdP). Specify
816
+ # this value when you use IAM authentication and want to let federated
817
+ # users log in to a Studio with the Studio URL and credentials from your
818
+ # IdP. Amazon EMR Studio redirects users to this endpoint to enter
819
+ # credentials.
820
+ #
821
+ # @option params [String] :idp_relay_state_parameter_name
822
+ # The name that your identity provider (IdP) uses for its `RelayState`
823
+ # parameter. For example, `RelayState` or `TargetSource`. Specify this
824
+ # value when you use IAM authentication and want to let federated users
825
+ # log in to a Studio using the Studio URL. The `RelayState` parameter
826
+ # differs by IdP.
827
+ #
802
828
  # @option params [Array<Types::Tag>] :tags
803
829
  # A list of tags to associate with the Amazon EMR Studio. Tags are
804
830
  # user-defined key-value pairs that consist of a required key string
@@ -819,10 +845,12 @@ module Aws::EMR
819
845
  # vpc_id: "XmlStringMaxLen256", # required
820
846
  # subnet_ids: ["String"], # required
821
847
  # service_role: "XmlString", # required
822
- # user_role: "XmlString", # required
848
+ # user_role: "XmlString",
823
849
  # workspace_security_group_id: "XmlStringMaxLen256", # required
824
850
  # engine_security_group_id: "XmlStringMaxLen256", # required
825
851
  # default_s3_location: "XmlString", # required
852
+ # idp_auth_url: "XmlString",
853
+ # idp_relay_state_parameter_name: "XmlStringMaxLen256",
826
854
  # tags: [
827
855
  # {
828
856
  # key: "String",
@@ -847,7 +875,14 @@ module Aws::EMR
847
875
 
848
876
  # Maps a user or group to the Amazon EMR Studio specified by `StudioId`,
849
877
  # and applies a session policy to refine Studio permissions for that
850
- # user or group.
878
+ # user or group. Use `CreateStudioSessionMapping` to assign users to a
879
+ # Studio when you use Amazon Web Services SSO authentication. For
880
+ # instructions on how to assign users to a Studio when you use IAM
881
+ # authentication, see [Assign a user or group to your EMR Studio][1].
882
+ #
883
+ #
884
+ #
885
+ # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups
851
886
  #
852
887
  # @option params [required, String] :studio_id
853
888
  # The ID of the Amazon EMR Studio to which the user or group will be
@@ -1445,6 +1480,8 @@ module Aws::EMR
1445
1480
  # resp.studio.url #=> String
1446
1481
  # resp.studio.creation_time #=> Time
1447
1482
  # resp.studio.default_s3_location #=> String
1483
+ # resp.studio.idp_auth_url #=> String
1484
+ # resp.studio.idp_relay_state_parameter_name #=> String
1448
1485
  # resp.studio.tags #=> Array
1449
1486
  # resp.studio.tags[0].key #=> String
1450
1487
  # resp.studio.tags[0].value #=> String
@@ -2311,6 +2348,7 @@ module Aws::EMR
2311
2348
  # resp.studios[0].vpc_id #=> String
2312
2349
  # resp.studios[0].description #=> String
2313
2350
  # resp.studios[0].url #=> String
2351
+ # resp.studios[0].auth_mode #=> String, one of "SSO", "IAM"
2314
2352
  # resp.studios[0].creation_time #=> Time
2315
2353
  # resp.marker #=> String
2316
2354
  #
@@ -2765,10 +2803,10 @@ module Aws::EMR
2765
2803
  req.send_request(options)
2766
2804
  end
2767
2805
 
2768
- # Removes tags from an Amazon EMR resource. Tags make it easier to
2769
- # associate clusters in various ways, such as grouping clusters to track
2770
- # your Amazon EMR resource allocation costs. For more information, see
2771
- # [Tag Clusters][1].
2806
+ # Removes tags from an Amazon EMR resource, such as a cluster or Amazon
2807
+ # EMR Studio. Tags make it easier to associate resources in various
2808
+ # ways, such as grouping clusters to track your Amazon EMR resource
2809
+ # allocation costs. For more information, see [Tag Clusters][1].
2772
2810
  #
2773
2811
  # The following example removes the stack tag with value Prod from a
2774
2812
  # cluster:
@@ -2779,10 +2817,10 @@ module Aws::EMR
2779
2817
  #
2780
2818
  # @option params [required, String] :resource_id
2781
2819
  # The Amazon EMR resource identifier from which tags will be removed.
2782
- # This value must be a cluster identifier.
2820
+ # For example, a cluster identifier or an Amazon EMR Studio ID.
2783
2821
  #
2784
2822
  # @option params [required, Array<String>] :tag_keys
2785
- # A list of tag keys to remove from a resource.
2823
+ # A list of tag keys to remove from the resource.
2786
2824
  #
2787
2825
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2788
2826
  #
@@ -2979,8 +3017,8 @@ module Aws::EMR
2979
3017
  # role, you must have already created it using the CLI or console.
2980
3018
  #
2981
3019
  # @option params [String] :service_role
2982
- # The IAM role that will be assumed by the Amazon EMR service to access
2983
- # Amazon Web Services resources on your behalf.
3020
+ # The IAM role that Amazon EMR assumes in order to access Amazon Web
3021
+ # Services resources on your behalf.
2984
3022
  #
2985
3023
  # @option params [Array<Types::Tag>] :tags
2986
3024
  # A list of tags to associate with a cluster and propagate to Amazon EC2
@@ -3694,7 +3732,7 @@ module Aws::EMR
3694
3732
  params: params,
3695
3733
  config: config)
3696
3734
  context[:gem_name] = 'aws-sdk-emr'
3697
- context[:gem_version] = '1.51.0'
3735
+ context[:gem_version] = '1.55.0'
3698
3736
  Seahorse::Client::Request.new(handlers, context)
3699
3737
  end
3700
3738
 
@@ -512,10 +512,12 @@ module Aws::EMR
512
512
  CreateStudioInput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "VpcId"))
513
513
  CreateStudioInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
514
514
  CreateStudioInput.add_member(:service_role, Shapes::ShapeRef.new(shape: XmlString, required: true, location_name: "ServiceRole"))
515
- CreateStudioInput.add_member(:user_role, Shapes::ShapeRef.new(shape: XmlString, required: true, location_name: "UserRole"))
515
+ CreateStudioInput.add_member(:user_role, Shapes::ShapeRef.new(shape: XmlString, location_name: "UserRole"))
516
516
  CreateStudioInput.add_member(:workspace_security_group_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "WorkspaceSecurityGroupId"))
517
517
  CreateStudioInput.add_member(:engine_security_group_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "EngineSecurityGroupId"))
518
518
  CreateStudioInput.add_member(:default_s3_location, Shapes::ShapeRef.new(shape: XmlString, required: true, location_name: "DefaultS3Location"))
519
+ CreateStudioInput.add_member(:idp_auth_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "IdpAuthUrl"))
520
+ CreateStudioInput.add_member(:idp_relay_state_parameter_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdpRelayStateParameterName"))
519
521
  CreateStudioInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
520
522
  CreateStudioInput.struct_class = Types::CreateStudioInput
521
523
 
@@ -1391,6 +1393,8 @@ module Aws::EMR
1391
1393
  Studio.add_member(:url, Shapes::ShapeRef.new(shape: XmlString, location_name: "Url"))
1392
1394
  Studio.add_member(:creation_time, Shapes::ShapeRef.new(shape: Date, location_name: "CreationTime"))
1393
1395
  Studio.add_member(:default_s3_location, Shapes::ShapeRef.new(shape: XmlString, location_name: "DefaultS3Location"))
1396
+ Studio.add_member(:idp_auth_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "IdpAuthUrl"))
1397
+ Studio.add_member(:idp_relay_state_parameter_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdpRelayStateParameterName"))
1394
1398
  Studio.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1395
1399
  Studio.struct_class = Types::Studio
1396
1400
 
@@ -1399,6 +1403,7 @@ module Aws::EMR
1399
1403
  StudioSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "VpcId"))
1400
1404
  StudioSummary.add_member(:description, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Description"))
1401
1405
  StudioSummary.add_member(:url, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Url"))
1406
+ StudioSummary.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AuthMode, location_name: "AuthMode"))
1402
1407
  StudioSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: Date, location_name: "CreationTime"))
1403
1408
  StudioSummary.struct_class = Types::StudioSummary
1404
1409
 
@@ -292,7 +292,8 @@ module Aws::EMR
292
292
  include Aws::Structure
293
293
  end
294
294
 
295
- # This input identifies a cluster and a list of tags to attach.
295
+ # This input identifies an Amazon EMR resource and a list of tags to
296
+ # attach.
296
297
  #
297
298
  # @note When making an API call, you may pass AddTagsInput
298
299
  # data as a hash:
@@ -308,15 +309,15 @@ module Aws::EMR
308
309
  # }
309
310
  #
310
311
  # @!attribute [rw] resource_id
311
- # The Amazon EMR resource identifier to which tags will be added. This
312
- # value must be a cluster identifier.
312
+ # The Amazon EMR resource identifier to which tags will be added. For
313
+ # example, a cluster identifier or an Amazon EMR Studio ID.
313
314
  # @return [String]
314
315
  #
315
316
  # @!attribute [rw] tags
316
- # A list of tags to associate with a cluster and propagate to EC2
317
- # instances. Tags are user-defined key-value pairs that consist of a
318
- # required key string with a maximum of 128 characters, and an
319
- # optional value string with a maximum of 256 characters.
317
+ # A list of tags to associate with a resource. Tags are user-defined
318
+ # key-value pairs that consist of a required key string with a maximum
319
+ # of 128 characters, and an optional value string with a maximum of
320
+ # 256 characters.
320
321
  # @return [Array<Types::Tag>]
321
322
  #
322
323
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/AddTagsInput AWS API Documentation
@@ -956,8 +957,8 @@ module Aws::EMR
956
957
  # @return [Array<Types::Tag>]
957
958
  #
958
959
  # @!attribute [rw] service_role
959
- # The IAM role that will be assumed by the Amazon EMR service to
960
- # access Amazon Web Services resources on your behalf.
960
+ # The IAM role that Amazon EMR assumes in order to access Amazon Web
961
+ # Services resources on your behalf.
961
962
  # @return [String]
962
963
  #
963
964
  # @!attribute [rw] normalized_instance_hours
@@ -1411,10 +1412,12 @@ module Aws::EMR
1411
1412
  # vpc_id: "XmlStringMaxLen256", # required
1412
1413
  # subnet_ids: ["String"], # required
1413
1414
  # service_role: "XmlString", # required
1414
- # user_role: "XmlString", # required
1415
+ # user_role: "XmlString",
1415
1416
  # workspace_security_group_id: "XmlStringMaxLen256", # required
1416
1417
  # engine_security_group_id: "XmlStringMaxLen256", # required
1417
1418
  # default_s3_location: "XmlString", # required
1419
+ # idp_auth_url: "XmlString",
1420
+ # idp_relay_state_parameter_name: "XmlStringMaxLen256",
1418
1421
  # tags: [
1419
1422
  # {
1420
1423
  # key: "String",
@@ -1432,9 +1435,8 @@ module Aws::EMR
1432
1435
  # @return [String]
1433
1436
  #
1434
1437
  # @!attribute [rw] auth_mode
1435
- # Specifies whether the Studio authenticates users using single
1436
- # sign-on (SSO) or IAM. Amazon EMR Studio currently only supports SSO
1437
- # authentication.
1438
+ # Specifies whether the Studio authenticates users using IAM or Amazon
1439
+ # Web Services SSO.
1438
1440
  # @return [String]
1439
1441
  #
1440
1442
  # @!attribute [rw] vpc_id
@@ -1450,15 +1452,17 @@ module Aws::EMR
1450
1452
  # @return [Array<String>]
1451
1453
  #
1452
1454
  # @!attribute [rw] service_role
1453
- # The IAM role that will be assumed by the Amazon EMR Studio. The
1454
- # service role provides a way for Amazon EMR Studio to interoperate
1455
- # with other Amazon Web Services services.
1455
+ # The IAM role that the Amazon EMR Studio assumes. The service role
1456
+ # provides a way for Amazon EMR Studio to interoperate with other
1457
+ # Amazon Web Services services.
1456
1458
  # @return [String]
1457
1459
  #
1458
1460
  # @!attribute [rw] user_role
1459
- # The IAM user role that will be assumed by users and groups logged in
1460
- # to an Amazon EMR Studio. The permissions attached to this IAM role
1461
- # can be scoped down for each user or group using session policies.
1461
+ # The IAM user role that users and groups assume when logged in to an
1462
+ # Amazon EMR Studio. Only specify a `UserRole` when you use Amazon Web
1463
+ # Services SSO authentication. The permissions attached to the
1464
+ # `UserRole` can be scoped down for each user or group using session
1465
+ # policies.
1462
1466
  # @return [String]
1463
1467
  #
1464
1468
  # @!attribute [rw] workspace_security_group_id
@@ -1479,6 +1483,22 @@ module Aws::EMR
1479
1483
  # notebook files.
1480
1484
  # @return [String]
1481
1485
  #
1486
+ # @!attribute [rw] idp_auth_url
1487
+ # The authentication endpoint of your identity provider (IdP). Specify
1488
+ # this value when you use IAM authentication and want to let federated
1489
+ # users log in to a Studio with the Studio URL and credentials from
1490
+ # your IdP. Amazon EMR Studio redirects users to this endpoint to
1491
+ # enter credentials.
1492
+ # @return [String]
1493
+ #
1494
+ # @!attribute [rw] idp_relay_state_parameter_name
1495
+ # The name that your identity provider (IdP) uses for its `RelayState`
1496
+ # parameter. For example, `RelayState` or `TargetSource`. Specify this
1497
+ # value when you use IAM authentication and want to let federated
1498
+ # users log in to a Studio using the Studio URL. The `RelayState`
1499
+ # parameter differs by IdP.
1500
+ # @return [String]
1501
+ #
1482
1502
  # @!attribute [rw] tags
1483
1503
  # A list of tags to associate with the Amazon EMR Studio. Tags are
1484
1504
  # user-defined key-value pairs that consist of a required key string
@@ -1499,6 +1519,8 @@ module Aws::EMR
1499
1519
  :workspace_security_group_id,
1500
1520
  :engine_security_group_id,
1501
1521
  :default_s3_location,
1522
+ :idp_auth_url,
1523
+ :idp_relay_state_parameter_name,
1502
1524
  :tags)
1503
1525
  SENSITIVE = []
1504
1526
  include Aws::Structure
@@ -6051,7 +6073,8 @@ module Aws::EMR
6051
6073
  #
6052
6074
  class RemoveManagedScalingPolicyOutput < Aws::EmptyStructure; end
6053
6075
 
6054
- # This input identifies a cluster and a list of tags to remove.
6076
+ # This input identifies an Amazon EMR resource and a list of tags to
6077
+ # remove.
6055
6078
  #
6056
6079
  # @note When making an API call, you may pass RemoveTagsInput
6057
6080
  # data as a hash:
@@ -6063,11 +6086,11 @@ module Aws::EMR
6063
6086
  #
6064
6087
  # @!attribute [rw] resource_id
6065
6088
  # The Amazon EMR resource identifier from which tags will be removed.
6066
- # This value must be a cluster identifier.
6089
+ # For example, a cluster identifier or an Amazon EMR Studio ID.
6067
6090
  # @return [String]
6068
6091
  #
6069
6092
  # @!attribute [rw] tag_keys
6070
- # A list of tag keys to remove from a resource.
6093
+ # A list of tag keys to remove from the resource.
6071
6094
  # @return [Array<String>]
6072
6095
  #
6073
6096
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTagsInput AWS API Documentation
@@ -6079,7 +6102,7 @@ module Aws::EMR
6079
6102
  include Aws::Structure
6080
6103
  end
6081
6104
 
6082
- # This output indicates the result of removing tags from a resource.
6105
+ # This output indicates the result of removing tags from the resource.
6083
6106
  #
6084
6107
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RemoveTagsOutput AWS API Documentation
6085
6108
  #
@@ -6500,8 +6523,8 @@ module Aws::EMR
6500
6523
  # @return [String]
6501
6524
  #
6502
6525
  # @!attribute [rw] service_role
6503
- # The IAM role that will be assumed by the Amazon EMR service to
6504
- # access Amazon Web Services resources on your behalf.
6526
+ # The IAM role that Amazon EMR assumes in order to access Amazon Web
6527
+ # Services resources on your behalf.
6505
6528
  # @return [String]
6506
6529
  #
6507
6530
  # @!attribute [rw] tags
@@ -7654,7 +7677,7 @@ module Aws::EMR
7654
7677
  #
7655
7678
  # @!attribute [rw] auth_mode
7656
7679
  # Specifies whether the Amazon EMR Studio authenticates users using
7657
- # single sign-on (SSO) or IAM.
7680
+ # IAM or Amazon Web Services SSO.
7658
7681
  # @return [String]
7659
7682
  #
7660
7683
  # @!attribute [rw] vpc_id
@@ -7672,7 +7695,8 @@ module Aws::EMR
7672
7695
  #
7673
7696
  # @!attribute [rw] user_role
7674
7697
  # The name of the IAM role assumed by users logged in to the Amazon
7675
- # EMR Studio.
7698
+ # EMR Studio. A Studio only requires a `UserRole` when you use IAM
7699
+ # authentication.
7676
7700
  # @return [String]
7677
7701
  #
7678
7702
  # @!attribute [rw] workspace_security_group_id
@@ -7701,6 +7725,16 @@ module Aws::EMR
7701
7725
  # notebook files.
7702
7726
  # @return [String]
7703
7727
  #
7728
+ # @!attribute [rw] idp_auth_url
7729
+ # Your identity provider's authentication endpoint. Amazon EMR Studio
7730
+ # redirects federated users to this endpoint for authentication when
7731
+ # logging in to a Studio with the Studio URL.
7732
+ # @return [String]
7733
+ #
7734
+ # @!attribute [rw] idp_relay_state_parameter_name
7735
+ # The name of your identity provider's `RelayState` parameter.
7736
+ # @return [String]
7737
+ #
7704
7738
  # @!attribute [rw] tags
7705
7739
  # A list of tags associated with the Amazon EMR Studio.
7706
7740
  # @return [Array<Types::Tag>]
@@ -7722,6 +7756,8 @@ module Aws::EMR
7722
7756
  :url,
7723
7757
  :creation_time,
7724
7758
  :default_s3_location,
7759
+ :idp_auth_url,
7760
+ :idp_relay_state_parameter_name,
7725
7761
  :tags)
7726
7762
  SENSITIVE = []
7727
7763
  include Aws::Structure
@@ -7752,6 +7788,11 @@ module Aws::EMR
7752
7788
  # The unique access URL of the Amazon EMR Studio.
7753
7789
  # @return [String]
7754
7790
  #
7791
+ # @!attribute [rw] auth_mode
7792
+ # Specifies whether the Studio authenticates users using IAM or Amazon
7793
+ # Web Services SSO.
7794
+ # @return [String]
7795
+ #
7755
7796
  # @!attribute [rw] creation_time
7756
7797
  # The time when the Amazon EMR Studio was created.
7757
7798
  # @return [Time]
@@ -7764,6 +7805,7 @@ module Aws::EMR
7764
7805
  :vpc_id,
7765
7806
  :description,
7766
7807
  :url,
7808
+ :auth_mode,
7767
7809
  :creation_time)
7768
7810
  SENSITIVE = []
7769
7811
  include Aws::Structure
data/lib/aws-sdk-emr.rb CHANGED
@@ -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.51.0'
52
+ GEM_VERSION = '1.55.0'
53
53
 
54
54
  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.51.0
4
+ version: 1.55.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.120.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement