aws-sdk-emrcontainers 1.74.0 → 1.75.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +50 -1
- data/lib/aws-sdk-emrcontainers/client_api.rb +37 -0
- data/lib/aws-sdk-emrcontainers/types.rb +96 -1
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- data/sig/client.rbs +21 -0
- data/sig/types.rbs +30 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 382dc1c0b608e98beed67a9a208b8a6a9759177d42ce934a963c6736e43d8193
|
|
4
|
+
data.tar.gz: adc91f63662ae9d83e9fec41464885d75df522e34e9d12cbe2c5e7e7044b1357
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90d0e600bf4cb929f915766246afaa2eb67b9fb3c342252caa8f6f65314e25113f85515f72af250046893d5b424edbe244f22f68aeb9dcdacbfdf7a7a2a67fae
|
|
7
|
+
data.tar.gz: 0d1903b019eb607d025899c21ce2d3bb15ab2292f81798b70b6f6c9e7a3011209f0828eeac61dcc635277ae5a6f319fe2076d103bbd39374fc3d979e689b980c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.75.0 (2026-07-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for the DeleteSecurityConfiguration API, which allows customers to delete security configurations in Amazon EMR on EKS. Also added authenticationConfiguration in securityConfigurationdata structure.
|
|
8
|
+
|
|
4
9
|
1.74.0 (2026-07-14)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -790,6 +790,17 @@ module Aws::EMRContainers
|
|
|
790
790
|
# },
|
|
791
791
|
# },
|
|
792
792
|
# },
|
|
793
|
+
# authentication_configuration: {
|
|
794
|
+
# identity_center_configuration: {
|
|
795
|
+
# enable_identity_center: false,
|
|
796
|
+
# identity_center_application_assignment_required: false,
|
|
797
|
+
# identity_center_instance_arn: "IdentityCenterInstanceARN",
|
|
798
|
+
# emr_identity_center_application_arn: "EmrIdentityCenterApplicationARN",
|
|
799
|
+
# },
|
|
800
|
+
# iam_configuration: {
|
|
801
|
+
# system_role: "IAMRoleArn",
|
|
802
|
+
# },
|
|
803
|
+
# },
|
|
793
804
|
# },
|
|
794
805
|
# tags: {
|
|
795
806
|
# "String128" => "StringEmpty256",
|
|
@@ -949,6 +960,34 @@ module Aws::EMRContainers
|
|
|
949
960
|
req.send_request(options)
|
|
950
961
|
end
|
|
951
962
|
|
|
963
|
+
# Deletes a security configuration.
|
|
964
|
+
#
|
|
965
|
+
# @option params [required, String] :id
|
|
966
|
+
# The ID of the security configuration to delete.
|
|
967
|
+
#
|
|
968
|
+
# @return [Types::DeleteSecurityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
969
|
+
#
|
|
970
|
+
# * {Types::DeleteSecurityConfigurationResponse#id #id} => String
|
|
971
|
+
#
|
|
972
|
+
# @example Request syntax with placeholder values
|
|
973
|
+
#
|
|
974
|
+
# resp = client.delete_security_configuration({
|
|
975
|
+
# id: "ResourceIdString", # required
|
|
976
|
+
# })
|
|
977
|
+
#
|
|
978
|
+
# @example Response structure
|
|
979
|
+
#
|
|
980
|
+
# resp.id #=> String
|
|
981
|
+
#
|
|
982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfiguration AWS API Documentation
|
|
983
|
+
#
|
|
984
|
+
# @overload delete_security_configuration(params = {})
|
|
985
|
+
# @param [Hash] params ({})
|
|
986
|
+
def delete_security_configuration(params = {}, options = {})
|
|
987
|
+
req = build_request(:delete_security_configuration, params)
|
|
988
|
+
req.send_request(options)
|
|
989
|
+
end
|
|
990
|
+
|
|
952
991
|
# Deletes a virtual cluster. Virtual cluster is a managed entity on
|
|
953
992
|
# Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
954
993
|
# clusters. They do not consume any additional resource in your system.
|
|
@@ -1217,6 +1256,11 @@ module Aws::EMRContainers
|
|
|
1217
1256
|
# resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.certificate_provider_type #=> String, one of "PEM"
|
|
1218
1257
|
# resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
|
|
1219
1258
|
# resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
|
|
1259
|
+
# resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.enable_identity_center #=> Boolean
|
|
1260
|
+
# resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_application_assignment_required #=> Boolean
|
|
1261
|
+
# resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_instance_arn #=> String
|
|
1262
|
+
# resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.emr_identity_center_application_arn #=> String
|
|
1263
|
+
# resp.security_configuration.security_configuration_data.authentication_configuration.iam_configuration.system_role #=> String
|
|
1220
1264
|
# resp.security_configuration.tags #=> Hash
|
|
1221
1265
|
# resp.security_configuration.tags["String128"] #=> String
|
|
1222
1266
|
#
|
|
@@ -1657,6 +1701,11 @@ module Aws::EMRContainers
|
|
|
1657
1701
|
# resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.certificate_provider_type #=> String, one of "PEM"
|
|
1658
1702
|
# resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
|
|
1659
1703
|
# resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
|
|
1704
|
+
# resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.enable_identity_center #=> Boolean
|
|
1705
|
+
# resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_application_assignment_required #=> Boolean
|
|
1706
|
+
# resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_instance_arn #=> String
|
|
1707
|
+
# resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.emr_identity_center_application_arn #=> String
|
|
1708
|
+
# resp.security_configurations[0].security_configuration_data.authentication_configuration.iam_configuration.system_role #=> String
|
|
1660
1709
|
# resp.security_configurations[0].tags #=> Hash
|
|
1661
1710
|
# resp.security_configurations[0].tags["String128"] #=> String
|
|
1662
1711
|
# resp.next_token #=> String
|
|
@@ -1990,7 +2039,7 @@ module Aws::EMRContainers
|
|
|
1990
2039
|
tracer: tracer
|
|
1991
2040
|
)
|
|
1992
2041
|
context[:gem_name] = 'aws-sdk-emrcontainers'
|
|
1993
|
-
context[:gem_version] = '1.
|
|
2042
|
+
context[:gem_version] = '1.75.0'
|
|
1994
2043
|
Seahorse::Client::Request.new(handlers, context)
|
|
1995
2044
|
end
|
|
1996
2045
|
|
|
@@ -16,6 +16,7 @@ module Aws::EMRContainers
|
|
|
16
16
|
|
|
17
17
|
ACMCertArn = Shapes::StringShape.new(name: 'ACMCertArn')
|
|
18
18
|
AllowAWSToRetainLogs = Shapes::StringShape.new(name: 'AllowAWSToRetainLogs')
|
|
19
|
+
AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
|
|
19
20
|
AuthorizationConfiguration = Shapes::StructureShape.new(name: 'AuthorizationConfiguration')
|
|
20
21
|
Base64Encoded = Shapes::StringShape.new(name: 'Base64Encoded')
|
|
21
22
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
@@ -48,6 +49,8 @@ module Aws::EMRContainers
|
|
|
48
49
|
DeleteJobTemplateResponse = Shapes::StructureShape.new(name: 'DeleteJobTemplateResponse')
|
|
49
50
|
DeleteManagedEndpointRequest = Shapes::StructureShape.new(name: 'DeleteManagedEndpointRequest')
|
|
50
51
|
DeleteManagedEndpointResponse = Shapes::StructureShape.new(name: 'DeleteManagedEndpointResponse')
|
|
52
|
+
DeleteSecurityConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteSecurityConfigurationRequest')
|
|
53
|
+
DeleteSecurityConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteSecurityConfigurationResponse')
|
|
51
54
|
DeleteVirtualClusterRequest = Shapes::StructureShape.new(name: 'DeleteVirtualClusterRequest')
|
|
52
55
|
DeleteVirtualClusterResponse = Shapes::StructureShape.new(name: 'DeleteVirtualClusterResponse')
|
|
53
56
|
DescribeJobRunRequest = Shapes::StructureShape.new(name: 'DescribeJobRunRequest')
|
|
@@ -62,6 +65,7 @@ module Aws::EMRContainers
|
|
|
62
65
|
DescribeVirtualClusterResponse = Shapes::StructureShape.new(name: 'DescribeVirtualClusterResponse')
|
|
63
66
|
EKSRequestThrottledException = Shapes::StructureShape.new(name: 'EKSRequestThrottledException')
|
|
64
67
|
EksInfo = Shapes::StructureShape.new(name: 'EksInfo')
|
|
68
|
+
EmrIdentityCenterApplicationARN = Shapes::StringShape.new(name: 'EmrIdentityCenterApplicationARN')
|
|
65
69
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
|
66
70
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
|
67
71
|
EndpointArn = Shapes::StringShape.new(name: 'EndpointArn')
|
|
@@ -76,7 +80,10 @@ module Aws::EMRContainers
|
|
|
76
80
|
FailureReason = Shapes::StringShape.new(name: 'FailureReason')
|
|
77
81
|
GetManagedEndpointSessionCredentialsRequest = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsRequest')
|
|
78
82
|
GetManagedEndpointSessionCredentialsResponse = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsResponse')
|
|
83
|
+
IAMConfiguration = Shapes::StructureShape.new(name: 'IAMConfiguration')
|
|
79
84
|
IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
|
|
85
|
+
IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
|
|
86
|
+
IdentityCenterInstanceARN = Shapes::StringShape.new(name: 'IdentityCenterInstanceARN')
|
|
80
87
|
InTransitEncryptionConfiguration = Shapes::StructureShape.new(name: 'InTransitEncryptionConfiguration')
|
|
81
88
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
82
89
|
JavaInteger = Shapes::IntegerShape.new(name: 'JavaInteger')
|
|
@@ -173,6 +180,10 @@ module Aws::EMRContainers
|
|
|
173
180
|
VirtualClusterStates = Shapes::ListShape.new(name: 'VirtualClusterStates')
|
|
174
181
|
VirtualClusters = Shapes::ListShape.new(name: 'VirtualClusters')
|
|
175
182
|
|
|
183
|
+
AuthenticationConfiguration.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "identityCenterConfiguration"))
|
|
184
|
+
AuthenticationConfiguration.add_member(:iam_configuration, Shapes::ShapeRef.new(shape: IAMConfiguration, location_name: "iamConfiguration"))
|
|
185
|
+
AuthenticationConfiguration.struct_class = Types::AuthenticationConfiguration
|
|
186
|
+
|
|
176
187
|
AuthorizationConfiguration.add_member(:lake_formation_configuration, Shapes::ShapeRef.new(shape: LakeFormationConfiguration, location_name: "lakeFormationConfiguration"))
|
|
177
188
|
AuthorizationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
|
|
178
189
|
AuthorizationConfiguration.struct_class = Types::AuthorizationConfiguration
|
|
@@ -295,6 +306,12 @@ module Aws::EMRContainers
|
|
|
295
306
|
DeleteManagedEndpointResponse.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "virtualClusterId"))
|
|
296
307
|
DeleteManagedEndpointResponse.struct_class = Types::DeleteManagedEndpointResponse
|
|
297
308
|
|
|
309
|
+
DeleteSecurityConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "securityConfigurationId"))
|
|
310
|
+
DeleteSecurityConfigurationRequest.struct_class = Types::DeleteSecurityConfigurationRequest
|
|
311
|
+
|
|
312
|
+
DeleteSecurityConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
313
|
+
DeleteSecurityConfigurationResponse.struct_class = Types::DeleteSecurityConfigurationResponse
|
|
314
|
+
|
|
298
315
|
DeleteVirtualClusterRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
|
|
299
316
|
DeleteVirtualClusterRequest.struct_class = Types::DeleteVirtualClusterRequest
|
|
300
317
|
|
|
@@ -387,6 +404,15 @@ module Aws::EMRContainers
|
|
|
387
404
|
GetManagedEndpointSessionCredentialsResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Date, location_name: "expiresAt"))
|
|
388
405
|
GetManagedEndpointSessionCredentialsResponse.struct_class = Types::GetManagedEndpointSessionCredentialsResponse
|
|
389
406
|
|
|
407
|
+
IAMConfiguration.add_member(:system_role, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "systemRole"))
|
|
408
|
+
IAMConfiguration.struct_class = Types::IAMConfiguration
|
|
409
|
+
|
|
410
|
+
IdentityCenterConfiguration.add_member(:enable_identity_center, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableIdentityCenter"))
|
|
411
|
+
IdentityCenterConfiguration.add_member(:identity_center_application_assignment_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "identityCenterApplicationAssignmentRequired"))
|
|
412
|
+
IdentityCenterConfiguration.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceARN, location_name: "identityCenterInstanceARN"))
|
|
413
|
+
IdentityCenterConfiguration.add_member(:emr_identity_center_application_arn, Shapes::ShapeRef.new(shape: EmrIdentityCenterApplicationARN, location_name: "emrIdentityCenterApplicationARN"))
|
|
414
|
+
IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
|
|
415
|
+
|
|
390
416
|
InTransitEncryptionConfiguration.add_member(:tls_certificate_configuration, Shapes::ShapeRef.new(shape: TLSCertificateConfiguration, location_name: "tlsCertificateConfiguration"))
|
|
391
417
|
InTransitEncryptionConfiguration.struct_class = Types::InTransitEncryptionConfiguration
|
|
392
418
|
|
|
@@ -570,6 +596,7 @@ module Aws::EMRContainers
|
|
|
570
596
|
SecurityConfiguration.struct_class = Types::SecurityConfiguration
|
|
571
597
|
|
|
572
598
|
SecurityConfigurationData.add_member(:authorization_configuration, Shapes::ShapeRef.new(shape: AuthorizationConfiguration, location_name: "authorizationConfiguration"))
|
|
599
|
+
SecurityConfigurationData.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfiguration, location_name: "authenticationConfiguration"))
|
|
573
600
|
SecurityConfigurationData.struct_class = Types::SecurityConfigurationData
|
|
574
601
|
|
|
575
602
|
SecurityConfigurations.member = Shapes::ShapeRef.new(shape: SecurityConfiguration)
|
|
@@ -751,6 +778,16 @@ module Aws::EMRContainers
|
|
|
751
778
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
752
779
|
end)
|
|
753
780
|
|
|
781
|
+
api.add_operation(:delete_security_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
782
|
+
o.name = "DeleteSecurityConfiguration"
|
|
783
|
+
o.http_method = "DELETE"
|
|
784
|
+
o.http_request_uri = "/securityconfigurations/{securityConfigurationId}"
|
|
785
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteSecurityConfigurationRequest)
|
|
786
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteSecurityConfigurationResponse)
|
|
787
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
788
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
789
|
+
end)
|
|
790
|
+
|
|
754
791
|
api.add_operation(:delete_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
755
792
|
o.name = "DeleteVirtualCluster"
|
|
756
793
|
o.http_method = "DELETE"
|
|
@@ -10,6 +10,26 @@
|
|
|
10
10
|
module Aws::EMRContainers
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# Authentication configuration for the security configuration.
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] identity_center_configuration
|
|
16
|
+
# Identity Center configuration for authentication in the security
|
|
17
|
+
# configuration.
|
|
18
|
+
# @return [Types::IdentityCenterConfiguration]
|
|
19
|
+
#
|
|
20
|
+
# @!attribute [rw] iam_configuration
|
|
21
|
+
# IAM configuration for authentication in the security configuration.
|
|
22
|
+
# @return [Types::IAMConfiguration]
|
|
23
|
+
#
|
|
24
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/AuthenticationConfiguration AWS API Documentation
|
|
25
|
+
#
|
|
26
|
+
class AuthenticationConfiguration < Struct.new(
|
|
27
|
+
:identity_center_configuration,
|
|
28
|
+
:iam_configuration)
|
|
29
|
+
SENSITIVE = []
|
|
30
|
+
include Aws::Structure
|
|
31
|
+
end
|
|
32
|
+
|
|
13
33
|
# Authorization-related configuration inputs for the security
|
|
14
34
|
# configuration.
|
|
15
35
|
#
|
|
@@ -580,6 +600,30 @@ module Aws::EMRContainers
|
|
|
580
600
|
include Aws::Structure
|
|
581
601
|
end
|
|
582
602
|
|
|
603
|
+
# @!attribute [rw] id
|
|
604
|
+
# The ID of the security configuration to delete.
|
|
605
|
+
# @return [String]
|
|
606
|
+
#
|
|
607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfigurationRequest AWS API Documentation
|
|
608
|
+
#
|
|
609
|
+
class DeleteSecurityConfigurationRequest < Struct.new(
|
|
610
|
+
:id)
|
|
611
|
+
SENSITIVE = []
|
|
612
|
+
include Aws::Structure
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
# @!attribute [rw] id
|
|
616
|
+
# The ID of the security configuration that was deleted.
|
|
617
|
+
# @return [String]
|
|
618
|
+
#
|
|
619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfigurationResponse AWS API Documentation
|
|
620
|
+
#
|
|
621
|
+
class DeleteSecurityConfigurationResponse < Struct.new(
|
|
622
|
+
:id)
|
|
623
|
+
SENSITIVE = []
|
|
624
|
+
include Aws::Structure
|
|
625
|
+
end
|
|
626
|
+
|
|
583
627
|
# @!attribute [rw] id
|
|
584
628
|
# The ID of the virtual cluster that will be deleted.
|
|
585
629
|
# @return [String]
|
|
@@ -968,6 +1012,51 @@ module Aws::EMRContainers
|
|
|
968
1012
|
include Aws::Structure
|
|
969
1013
|
end
|
|
970
1014
|
|
|
1015
|
+
# IAM configuration for the security configuration.
|
|
1016
|
+
#
|
|
1017
|
+
# @!attribute [rw] system_role
|
|
1018
|
+
# The ARN of the system role used by the security configuration.
|
|
1019
|
+
# @return [String]
|
|
1020
|
+
#
|
|
1021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IAMConfiguration AWS API Documentation
|
|
1022
|
+
#
|
|
1023
|
+
class IAMConfiguration < Struct.new(
|
|
1024
|
+
:system_role)
|
|
1025
|
+
SENSITIVE = []
|
|
1026
|
+
include Aws::Structure
|
|
1027
|
+
end
|
|
1028
|
+
|
|
1029
|
+
# Identity Center related configuration for the security configuration.
|
|
1030
|
+
#
|
|
1031
|
+
# @!attribute [rw] enable_identity_center
|
|
1032
|
+
# Determines whether Identity Center is enabled for the security
|
|
1033
|
+
# configuration.
|
|
1034
|
+
# @return [Boolean]
|
|
1035
|
+
#
|
|
1036
|
+
# @!attribute [rw] identity_center_application_assignment_required
|
|
1037
|
+
# Determines whether user assignment is required for the Identity
|
|
1038
|
+
# Center application.
|
|
1039
|
+
# @return [Boolean]
|
|
1040
|
+
#
|
|
1041
|
+
# @!attribute [rw] identity_center_instance_arn
|
|
1042
|
+
# The ARN of the Identity Center instance.
|
|
1043
|
+
# @return [String]
|
|
1044
|
+
#
|
|
1045
|
+
# @!attribute [rw] emr_identity_center_application_arn
|
|
1046
|
+
# The ARN of the EMR Identity Center application.
|
|
1047
|
+
# @return [String]
|
|
1048
|
+
#
|
|
1049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IdentityCenterConfiguration AWS API Documentation
|
|
1050
|
+
#
|
|
1051
|
+
class IdentityCenterConfiguration < Struct.new(
|
|
1052
|
+
:enable_identity_center,
|
|
1053
|
+
:identity_center_application_assignment_required,
|
|
1054
|
+
:identity_center_instance_arn,
|
|
1055
|
+
:emr_identity_center_application_arn)
|
|
1056
|
+
SENSITIVE = []
|
|
1057
|
+
include Aws::Structure
|
|
1058
|
+
end
|
|
1059
|
+
|
|
971
1060
|
# Configurations related to in-transit encryption for the security
|
|
972
1061
|
# configuration.
|
|
973
1062
|
#
|
|
@@ -1834,10 +1923,16 @@ module Aws::EMRContainers
|
|
|
1834
1923
|
# configuration.
|
|
1835
1924
|
# @return [Types::AuthorizationConfiguration]
|
|
1836
1925
|
#
|
|
1926
|
+
# @!attribute [rw] authentication_configuration
|
|
1927
|
+
# Authentication-related configuration input for the security
|
|
1928
|
+
# configuration.
|
|
1929
|
+
# @return [Types::AuthenticationConfiguration]
|
|
1930
|
+
#
|
|
1837
1931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecurityConfigurationData AWS API Documentation
|
|
1838
1932
|
#
|
|
1839
1933
|
class SecurityConfigurationData < Struct.new(
|
|
1840
|
-
:authorization_configuration
|
|
1934
|
+
:authorization_configuration,
|
|
1935
|
+
:authentication_configuration)
|
|
1841
1936
|
SENSITIVE = []
|
|
1842
1937
|
include Aws::Structure
|
|
1843
1938
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -187,6 +187,17 @@ module Aws
|
|
|
187
187
|
}?
|
|
188
188
|
}?
|
|
189
189
|
}?
|
|
190
|
+
}?,
|
|
191
|
+
authentication_configuration: {
|
|
192
|
+
identity_center_configuration: {
|
|
193
|
+
enable_identity_center: bool?,
|
|
194
|
+
identity_center_application_assignment_required: bool?,
|
|
195
|
+
identity_center_instance_arn: ::String?,
|
|
196
|
+
emr_identity_center_application_arn: ::String?
|
|
197
|
+
}?,
|
|
198
|
+
iam_configuration: {
|
|
199
|
+
system_role: ::String?
|
|
200
|
+
}?
|
|
190
201
|
}?
|
|
191
202
|
},
|
|
192
203
|
?tags: Hash[::String, ::String]
|
|
@@ -232,6 +243,16 @@ module Aws
|
|
|
232
243
|
) -> _DeleteManagedEndpointResponseSuccess
|
|
233
244
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteManagedEndpointResponseSuccess
|
|
234
245
|
|
|
246
|
+
interface _DeleteSecurityConfigurationResponseSuccess
|
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSecurityConfigurationResponse]
|
|
248
|
+
def id: () -> ::String
|
|
249
|
+
end
|
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#delete_security_configuration-instance_method
|
|
251
|
+
def delete_security_configuration: (
|
|
252
|
+
id: ::String
|
|
253
|
+
) -> _DeleteSecurityConfigurationResponseSuccess
|
|
254
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSecurityConfigurationResponseSuccess
|
|
255
|
+
|
|
235
256
|
interface _DeleteVirtualClusterResponseSuccess
|
|
236
257
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualClusterResponse]
|
|
237
258
|
def id: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
module Aws::EMRContainers
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
class AuthenticationConfiguration
|
|
12
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
|
|
13
|
+
attr_accessor iam_configuration: Types::IAMConfiguration
|
|
14
|
+
SENSITIVE: []
|
|
15
|
+
end
|
|
16
|
+
|
|
11
17
|
class AuthorizationConfiguration
|
|
12
18
|
attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
|
|
13
19
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
@@ -180,6 +186,16 @@ module Aws::EMRContainers
|
|
|
180
186
|
SENSITIVE: []
|
|
181
187
|
end
|
|
182
188
|
|
|
189
|
+
class DeleteSecurityConfigurationRequest
|
|
190
|
+
attr_accessor id: ::String
|
|
191
|
+
SENSITIVE: []
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
class DeleteSecurityConfigurationResponse
|
|
195
|
+
attr_accessor id: ::String
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
183
199
|
class DeleteVirtualClusterRequest
|
|
184
200
|
attr_accessor id: ::String
|
|
185
201
|
SENSITIVE: []
|
|
@@ -300,6 +316,19 @@ module Aws::EMRContainers
|
|
|
300
316
|
SENSITIVE: []
|
|
301
317
|
end
|
|
302
318
|
|
|
319
|
+
class IAMConfiguration
|
|
320
|
+
attr_accessor system_role: ::String
|
|
321
|
+
SENSITIVE: []
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
class IdentityCenterConfiguration
|
|
325
|
+
attr_accessor enable_identity_center: bool
|
|
326
|
+
attr_accessor identity_center_application_assignment_required: bool
|
|
327
|
+
attr_accessor identity_center_instance_arn: ::String
|
|
328
|
+
attr_accessor emr_identity_center_application_arn: ::String
|
|
329
|
+
SENSITIVE: []
|
|
330
|
+
end
|
|
331
|
+
|
|
303
332
|
class InTransitEncryptionConfiguration
|
|
304
333
|
attr_accessor tls_certificate_configuration: Types::TLSCertificateConfiguration
|
|
305
334
|
SENSITIVE: []
|
|
@@ -542,6 +571,7 @@ module Aws::EMRContainers
|
|
|
542
571
|
|
|
543
572
|
class SecurityConfigurationData
|
|
544
573
|
attr_accessor authorization_configuration: Types::AuthorizationConfiguration
|
|
574
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
|
545
575
|
SENSITIVE: []
|
|
546
576
|
end
|
|
547
577
|
|