aws-sdk-emr 1.51.0 → 1.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emr/client.rb +58 -31
- data/lib/aws-sdk-emr/client_api.rb +6 -1
- data/lib/aws-sdk-emr/types.rb +69 -27
- data/lib/aws-sdk-emr.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42a286ab147260cb668f85ebba3485e70a16d1a2af7556e9ed0dfc81131f651a
|
4
|
+
data.tar.gz: 6581d0af1e255d9b3ad6336b9fe4673fa6d0df21db5dd2185b16855944cc8a20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bac8e32daec1f4f810c2435c62c1516f8aca959fea9b278ab52eefc0cb1408bdea5b0e358bbbbaeff4ba319fff03881ce3a495ed86122fa44f821d216baed31c
|
7
|
+
data.tar.gz: 429803b334541b0c3bf8a00ed014a53f36c08795e3e2bfc87e2ba91de81ef50d17037fb6f124fa54f0eb7a29871fc7d2f8ed44370d90153599a20916d9d71fbb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.52.0 (2021-09-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
4
9
|
1.51.0 (2021-09-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -618,24 +618,24 @@ module Aws::EMR
|
|
618
618
|
req.send_request(options)
|
619
619
|
end
|
620
620
|
|
621
|
-
# Adds tags to an Amazon EMR resource
|
622
|
-
#
|
623
|
-
#
|
624
|
-
# Clusters][1].
|
621
|
+
# Adds tags to an Amazon EMR resource, such as a cluster or an Amazon
|
622
|
+
# EMR Studio. Tags make it easier to associate resources in various
|
623
|
+
# ways, such as grouping clusters to track your Amazon EMR resource
|
624
|
+
# allocation costs. For more information, see [Tag Clusters][1].
|
625
625
|
#
|
626
626
|
#
|
627
627
|
#
|
628
628
|
# [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
629
629
|
#
|
630
630
|
# @option params [required, String] :resource_id
|
631
|
-
# The Amazon EMR resource identifier to which tags will be added.
|
632
|
-
#
|
631
|
+
# The Amazon EMR resource identifier to which tags will be added. For
|
632
|
+
# example, a cluster identifier or an Amazon EMR Studio ID.
|
633
633
|
#
|
634
634
|
# @option params [required, Array<Types::Tag>] :tags
|
635
|
-
# A list of tags to associate with a
|
636
|
-
#
|
637
|
-
#
|
638
|
-
#
|
635
|
+
# A list of tags to associate with a resource. Tags are user-defined
|
636
|
+
# key-value pairs that consist of a required key string with a maximum
|
637
|
+
# of 128 characters, and an optional value string with a maximum of 256
|
638
|
+
# characters.
|
639
639
|
#
|
640
640
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
641
641
|
#
|
@@ -760,9 +760,8 @@ module Aws::EMR
|
|
760
760
|
# A detailed description of the Amazon EMR Studio.
|
761
761
|
#
|
762
762
|
# @option params [required, String] :auth_mode
|
763
|
-
# Specifies whether the Studio authenticates users using
|
764
|
-
#
|
765
|
-
# authentication.
|
763
|
+
# Specifies whether the Studio authenticates users using IAM or Amazon
|
764
|
+
# Web Services SSO.
|
766
765
|
#
|
767
766
|
# @option params [required, String] :vpc_id
|
768
767
|
# The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate
|
@@ -775,14 +774,16 @@ module Aws::EMR
|
|
775
774
|
# the specified subnets.
|
776
775
|
#
|
777
776
|
# @option params [required, String] :service_role
|
778
|
-
# The IAM role that
|
779
|
-
#
|
780
|
-
#
|
777
|
+
# The IAM role that the Amazon EMR Studio assumes. The service role
|
778
|
+
# provides a way for Amazon EMR Studio to interoperate with other Amazon
|
779
|
+
# Web Services services.
|
781
780
|
#
|
782
|
-
# @option params [
|
783
|
-
# The IAM user role that
|
784
|
-
#
|
785
|
-
#
|
781
|
+
# @option params [String] :user_role
|
782
|
+
# The IAM user role that users and groups assume when logged in to an
|
783
|
+
# Amazon EMR Studio. Only specify a `UserRole` when you use Amazon Web
|
784
|
+
# Services SSO authentication. The permissions attached to the
|
785
|
+
# `UserRole` can be scoped down for each user or group using session
|
786
|
+
# policies.
|
786
787
|
#
|
787
788
|
# @option params [required, String] :workspace_security_group_id
|
788
789
|
# The ID of the Amazon EMR Studio Workspace security group. The
|
@@ -799,6 +800,20 @@ module Aws::EMR
|
|
799
800
|
# The Amazon S3 location to back up Amazon EMR Studio Workspaces and
|
800
801
|
# notebook files.
|
801
802
|
#
|
803
|
+
# @option params [String] :idp_auth_url
|
804
|
+
# The authentication endpoint of your identity provider (IdP). Specify
|
805
|
+
# this value when you use IAM authentication and want to let federated
|
806
|
+
# users log in to a Studio with the Studio URL and credentials from your
|
807
|
+
# IdP. Amazon EMR Studio redirects users to this endpoint to enter
|
808
|
+
# credentials.
|
809
|
+
#
|
810
|
+
# @option params [String] :idp_relay_state_parameter_name
|
811
|
+
# The name that your identity provider (IdP) uses for its `RelayState`
|
812
|
+
# parameter. For example, `RelayState` or `TargetSource`. Specify this
|
813
|
+
# value when you use IAM authentication and want to let federated users
|
814
|
+
# log in to a Studio using the Studio URL. The `RelayState` parameter
|
815
|
+
# differs by IdP.
|
816
|
+
#
|
802
817
|
# @option params [Array<Types::Tag>] :tags
|
803
818
|
# A list of tags to associate with the Amazon EMR Studio. Tags are
|
804
819
|
# user-defined key-value pairs that consist of a required key string
|
@@ -819,10 +834,12 @@ module Aws::EMR
|
|
819
834
|
# vpc_id: "XmlStringMaxLen256", # required
|
820
835
|
# subnet_ids: ["String"], # required
|
821
836
|
# service_role: "XmlString", # required
|
822
|
-
# user_role: "XmlString",
|
837
|
+
# user_role: "XmlString",
|
823
838
|
# workspace_security_group_id: "XmlStringMaxLen256", # required
|
824
839
|
# engine_security_group_id: "XmlStringMaxLen256", # required
|
825
840
|
# default_s3_location: "XmlString", # required
|
841
|
+
# idp_auth_url: "XmlString",
|
842
|
+
# idp_relay_state_parameter_name: "XmlStringMaxLen256",
|
826
843
|
# tags: [
|
827
844
|
# {
|
828
845
|
# key: "String",
|
@@ -847,7 +864,14 @@ module Aws::EMR
|
|
847
864
|
|
848
865
|
# Maps a user or group to the Amazon EMR Studio specified by `StudioId`,
|
849
866
|
# and applies a session policy to refine Studio permissions for that
|
850
|
-
# user or group.
|
867
|
+
# user or group. Use `CreateStudioSessionMapping` to assign users to a
|
868
|
+
# Studio when you use Amazon Web Services SSO authentication. For
|
869
|
+
# instructions on how to assign users to a Studio when you use IAM
|
870
|
+
# authentication, see [Assign a user or group to your EMR Studio][1].
|
871
|
+
#
|
872
|
+
#
|
873
|
+
#
|
874
|
+
# [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio-manage-users.html#emr-studio-assign-users-groups
|
851
875
|
#
|
852
876
|
# @option params [required, String] :studio_id
|
853
877
|
# The ID of the Amazon EMR Studio to which the user or group will be
|
@@ -1445,6 +1469,8 @@ module Aws::EMR
|
|
1445
1469
|
# resp.studio.url #=> String
|
1446
1470
|
# resp.studio.creation_time #=> Time
|
1447
1471
|
# resp.studio.default_s3_location #=> String
|
1472
|
+
# resp.studio.idp_auth_url #=> String
|
1473
|
+
# resp.studio.idp_relay_state_parameter_name #=> String
|
1448
1474
|
# resp.studio.tags #=> Array
|
1449
1475
|
# resp.studio.tags[0].key #=> String
|
1450
1476
|
# resp.studio.tags[0].value #=> String
|
@@ -2311,6 +2337,7 @@ module Aws::EMR
|
|
2311
2337
|
# resp.studios[0].vpc_id #=> String
|
2312
2338
|
# resp.studios[0].description #=> String
|
2313
2339
|
# resp.studios[0].url #=> String
|
2340
|
+
# resp.studios[0].auth_mode #=> String, one of "SSO", "IAM"
|
2314
2341
|
# resp.studios[0].creation_time #=> Time
|
2315
2342
|
# resp.marker #=> String
|
2316
2343
|
#
|
@@ -2765,10 +2792,10 @@ module Aws::EMR
|
|
2765
2792
|
req.send_request(options)
|
2766
2793
|
end
|
2767
2794
|
|
2768
|
-
# Removes tags from an Amazon EMR resource
|
2769
|
-
#
|
2770
|
-
#
|
2771
|
-
# [Tag Clusters][1].
|
2795
|
+
# Removes tags from an Amazon EMR resource, such as a cluster or Amazon
|
2796
|
+
# EMR Studio. Tags make it easier to associate resources in various
|
2797
|
+
# ways, such as grouping clusters to track your Amazon EMR resource
|
2798
|
+
# allocation costs. For more information, see [Tag Clusters][1].
|
2772
2799
|
#
|
2773
2800
|
# The following example removes the stack tag with value Prod from a
|
2774
2801
|
# cluster:
|
@@ -2779,10 +2806,10 @@ module Aws::EMR
|
|
2779
2806
|
#
|
2780
2807
|
# @option params [required, String] :resource_id
|
2781
2808
|
# The Amazon EMR resource identifier from which tags will be removed.
|
2782
|
-
#
|
2809
|
+
# For example, a cluster identifier or an Amazon EMR Studio ID.
|
2783
2810
|
#
|
2784
2811
|
# @option params [required, Array<String>] :tag_keys
|
2785
|
-
# A list of tag keys to remove from
|
2812
|
+
# A list of tag keys to remove from the resource.
|
2786
2813
|
#
|
2787
2814
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2788
2815
|
#
|
@@ -2979,8 +3006,8 @@ module Aws::EMR
|
|
2979
3006
|
# role, you must have already created it using the CLI or console.
|
2980
3007
|
#
|
2981
3008
|
# @option params [String] :service_role
|
2982
|
-
# The IAM role that
|
2983
|
-
#
|
3009
|
+
# The IAM role that Amazon EMR assumes in order to access Amazon Web
|
3010
|
+
# Services resources on your behalf.
|
2984
3011
|
#
|
2985
3012
|
# @option params [Array<Types::Tag>] :tags
|
2986
3013
|
# A list of tags to associate with a cluster and propagate to Amazon EC2
|
@@ -3694,7 +3721,7 @@ module Aws::EMR
|
|
3694
3721
|
params: params,
|
3695
3722
|
config: config)
|
3696
3723
|
context[:gem_name] = 'aws-sdk-emr'
|
3697
|
-
context[:gem_version] = '1.
|
3724
|
+
context[:gem_version] = '1.52.0'
|
3698
3725
|
Seahorse::Client::Request.new(handlers, context)
|
3699
3726
|
end
|
3700
3727
|
|
@@ -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,
|
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
|
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -292,7 +292,8 @@ module Aws::EMR
|
|
292
292
|
include Aws::Structure
|
293
293
|
end
|
294
294
|
|
295
|
-
# This input identifies
|
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.
|
312
|
-
#
|
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
|
317
|
-
#
|
318
|
-
#
|
319
|
-
#
|
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
|
960
|
-
#
|
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",
|
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
|
1436
|
-
#
|
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
|
1454
|
-
#
|
1455
|
-
#
|
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
|
1460
|
-
#
|
1461
|
-
#
|
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
|
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
|
-
#
|
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
|
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
|
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
|
6504
|
-
#
|
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
|
-
#
|
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
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.52.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-
|
11
|
+
date: 2021-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|