aws-sdk-emrcontainers 1.73.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +72 -3
- data/lib/aws-sdk-emrcontainers/client_api.rb +46 -1
- data/lib/aws-sdk-emrcontainers/types.rb +130 -5
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- data/sig/client.rbs +26 -2
- data/sig/params.rbs +2 -1
- data/sig/types.rbs +36 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.74.0 (2026-07-14)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Introduced 5 new fields across 3 APIs as part of Spark Connect server launch for EMR on EKS. The fields added are sessionIdleTimeoutInMinutes, sessionEnabled, endpointToken, authProxyUrl and encryptionKeyArn.
|
|
13
|
+
|
|
4
14
|
1.73.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -650,6 +650,9 @@ module Aws::EMRContainers
|
|
|
650
650
|
# @option params [Hash<String,String>] :tags
|
|
651
651
|
# The tags of the managed endpoint.
|
|
652
652
|
#
|
|
653
|
+
# @option params [Integer] :session_idle_timeout_in_minutes
|
|
654
|
+
# The idle timeout in minutes for the managed endpoint session.
|
|
655
|
+
#
|
|
653
656
|
# @return [Types::CreateManagedEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
654
657
|
#
|
|
655
658
|
# * {Types::CreateManagedEndpointResponse#id #id} => String
|
|
@@ -690,6 +693,7 @@ module Aws::EMRContainers
|
|
|
690
693
|
# },
|
|
691
694
|
# s3_monitoring_configuration: {
|
|
692
695
|
# log_uri: "UriString", # required
|
|
696
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
693
697
|
# },
|
|
694
698
|
# container_log_rotation_configuration: {
|
|
695
699
|
# rotation_size: "RotationSize", # required
|
|
@@ -701,6 +705,7 @@ module Aws::EMRContainers
|
|
|
701
705
|
# tags: {
|
|
702
706
|
# "String128" => "StringEmpty256",
|
|
703
707
|
# },
|
|
708
|
+
# session_idle_timeout_in_minutes: 1,
|
|
704
709
|
# })
|
|
705
710
|
#
|
|
706
711
|
# @example Response structure
|
|
@@ -761,7 +766,7 @@ module Aws::EMRContainers
|
|
|
761
766
|
# info: {
|
|
762
767
|
# eks_info: {
|
|
763
768
|
# namespace: "KubernetesNamespace",
|
|
764
|
-
# node_label: "
|
|
769
|
+
# node_label: "NodeLabelString",
|
|
765
770
|
# },
|
|
766
771
|
# },
|
|
767
772
|
# },
|
|
@@ -785,6 +790,17 @@ module Aws::EMRContainers
|
|
|
785
790
|
# },
|
|
786
791
|
# },
|
|
787
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
|
+
# },
|
|
788
804
|
# },
|
|
789
805
|
# tags: {
|
|
790
806
|
# "String128" => "StringEmpty256",
|
|
@@ -831,6 +847,9 @@ module Aws::EMRContainers
|
|
|
831
847
|
# @option params [String] :security_configuration_id
|
|
832
848
|
# The ID of the security configuration.
|
|
833
849
|
#
|
|
850
|
+
# @option params [Boolean] :session_enabled
|
|
851
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
852
|
+
#
|
|
834
853
|
# @return [Types::CreateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
835
854
|
#
|
|
836
855
|
# * {Types::CreateVirtualClusterResponse#id #id} => String
|
|
@@ -847,7 +866,7 @@ module Aws::EMRContainers
|
|
|
847
866
|
# info: {
|
|
848
867
|
# eks_info: {
|
|
849
868
|
# namespace: "KubernetesNamespace",
|
|
850
|
-
# node_label: "
|
|
869
|
+
# node_label: "NodeLabelString",
|
|
851
870
|
# },
|
|
852
871
|
# },
|
|
853
872
|
# },
|
|
@@ -856,6 +875,7 @@ module Aws::EMRContainers
|
|
|
856
875
|
# "String128" => "StringEmpty256",
|
|
857
876
|
# },
|
|
858
877
|
# security_configuration_id: "ResourceIdString",
|
|
878
|
+
# session_enabled: false,
|
|
859
879
|
# })
|
|
860
880
|
#
|
|
861
881
|
# @example Response structure
|
|
@@ -940,6 +960,34 @@ module Aws::EMRContainers
|
|
|
940
960
|
req.send_request(options)
|
|
941
961
|
end
|
|
942
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
|
+
|
|
943
991
|
# Deletes a virtual cluster. Virtual cluster is a managed entity on
|
|
944
992
|
# Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
945
993
|
# clusters. They do not consume any additional resource in your system.
|
|
@@ -1015,6 +1063,7 @@ module Aws::EMRContainers
|
|
|
1015
1063
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1016
1064
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1017
1065
|
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1066
|
+
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1018
1067
|
# resp.job_run.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1019
1068
|
# resp.job_run.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1020
1069
|
# resp.job_run.job_driver.spark_submit_job_driver.entry_point #=> String
|
|
@@ -1150,9 +1199,11 @@ module Aws::EMRContainers
|
|
|
1150
1199
|
# resp.endpoint.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1151
1200
|
# resp.endpoint.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1152
1201
|
# resp.endpoint.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1202
|
+
# resp.endpoint.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1153
1203
|
# resp.endpoint.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1154
1204
|
# resp.endpoint.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1155
1205
|
# resp.endpoint.server_url #=> String
|
|
1206
|
+
# resp.endpoint.auth_proxy_url #=> String
|
|
1156
1207
|
# resp.endpoint.created_at #=> Time
|
|
1157
1208
|
# resp.endpoint.security_group #=> String
|
|
1158
1209
|
# resp.endpoint.subnet_ids #=> Array
|
|
@@ -1205,6 +1256,11 @@ module Aws::EMRContainers
|
|
|
1205
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"
|
|
1206
1257
|
# resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
|
|
1207
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
|
|
1208
1264
|
# resp.security_configuration.tags #=> Hash
|
|
1209
1265
|
# resp.security_configuration.tags["String128"] #=> String
|
|
1210
1266
|
#
|
|
@@ -1252,6 +1308,7 @@ module Aws::EMRContainers
|
|
|
1252
1308
|
# resp.virtual_cluster.tags #=> Hash
|
|
1253
1309
|
# resp.virtual_cluster.tags["String128"] #=> String
|
|
1254
1310
|
# resp.virtual_cluster.security_configuration_id #=> String
|
|
1311
|
+
# resp.virtual_cluster.session_enabled #=> Boolean
|
|
1255
1312
|
#
|
|
1256
1313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeVirtualCluster AWS API Documentation
|
|
1257
1314
|
#
|
|
@@ -1295,6 +1352,7 @@ module Aws::EMRContainers
|
|
|
1295
1352
|
#
|
|
1296
1353
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#id #id} => String
|
|
1297
1354
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#credentials #credentials} => Types::Credentials
|
|
1355
|
+
# * {Types::GetManagedEndpointSessionCredentialsResponse#endpoint_credentials #endpoint_credentials} => Types::Credentials
|
|
1298
1356
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#expires_at #expires_at} => Time
|
|
1299
1357
|
#
|
|
1300
1358
|
# @example Request syntax with placeholder values
|
|
@@ -1313,6 +1371,7 @@ module Aws::EMRContainers
|
|
|
1313
1371
|
#
|
|
1314
1372
|
# resp.id #=> String
|
|
1315
1373
|
# resp.credentials.token #=> String
|
|
1374
|
+
# resp.endpoint_credentials.token #=> String
|
|
1316
1375
|
# resp.expires_at #=> Time
|
|
1317
1376
|
#
|
|
1318
1377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/GetManagedEndpointSessionCredentials AWS API Documentation
|
|
@@ -1390,6 +1449,7 @@ module Aws::EMRContainers
|
|
|
1390
1449
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1391
1450
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1392
1451
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1452
|
+
# resp.job_runs[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1393
1453
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1394
1454
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1395
1455
|
# resp.job_runs[0].job_driver.spark_submit_job_driver.entry_point #=> String
|
|
@@ -1567,9 +1627,11 @@ module Aws::EMRContainers
|
|
|
1567
1627
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1568
1628
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1569
1629
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1630
|
+
# resp.endpoints[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1570
1631
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1571
1632
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1572
1633
|
# resp.endpoints[0].server_url #=> String
|
|
1634
|
+
# resp.endpoints[0].auth_proxy_url #=> String
|
|
1573
1635
|
# resp.endpoints[0].created_at #=> Time
|
|
1574
1636
|
# resp.endpoints[0].security_group #=> String
|
|
1575
1637
|
# resp.endpoints[0].subnet_ids #=> Array
|
|
@@ -1639,6 +1701,11 @@ module Aws::EMRContainers
|
|
|
1639
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"
|
|
1640
1702
|
# resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
|
|
1641
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
|
|
1642
1709
|
# resp.security_configurations[0].tags #=> Hash
|
|
1643
1710
|
# resp.security_configurations[0].tags["String128"] #=> String
|
|
1644
1711
|
# resp.next_token #=> String
|
|
@@ -1752,6 +1819,7 @@ module Aws::EMRContainers
|
|
|
1752
1819
|
# resp.virtual_clusters[0].tags #=> Hash
|
|
1753
1820
|
# resp.virtual_clusters[0].tags["String128"] #=> String
|
|
1754
1821
|
# resp.virtual_clusters[0].security_configuration_id #=> String
|
|
1822
|
+
# resp.virtual_clusters[0].session_enabled #=> Boolean
|
|
1755
1823
|
# resp.next_token #=> String
|
|
1756
1824
|
#
|
|
1757
1825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClusters AWS API Documentation
|
|
@@ -1853,6 +1921,7 @@ module Aws::EMRContainers
|
|
|
1853
1921
|
# },
|
|
1854
1922
|
# s3_monitoring_configuration: {
|
|
1855
1923
|
# log_uri: "UriString", # required
|
|
1924
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
1856
1925
|
# },
|
|
1857
1926
|
# container_log_rotation_configuration: {
|
|
1858
1927
|
# rotation_size: "RotationSize", # required
|
|
@@ -1970,7 +2039,7 @@ module Aws::EMRContainers
|
|
|
1970
2039
|
tracer: tracer
|
|
1971
2040
|
)
|
|
1972
2041
|
context[:gem_name] = 'aws-sdk-emrcontainers'
|
|
1973
|
-
context[:gem_version] = '1.
|
|
2042
|
+
context[:gem_version] = '1.75.0'
|
|
1974
2043
|
Seahorse::Client::Request.new(handlers, context)
|
|
1975
2044
|
end
|
|
1976
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')
|
|
@@ -111,6 +118,7 @@ module Aws::EMRContainers
|
|
|
111
118
|
MaxFilesToKeep = Shapes::IntegerShape.new(name: 'MaxFilesToKeep')
|
|
112
119
|
MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
|
|
113
120
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
121
|
+
NodeLabelString = Shapes::StringShape.new(name: 'NodeLabelString')
|
|
114
122
|
ParametricCloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'ParametricCloudWatchMonitoringConfiguration')
|
|
115
123
|
ParametricConfigurationOverrides = Shapes::StructureShape.new(name: 'ParametricConfigurationOverrides')
|
|
116
124
|
ParametricIAMRoleArn = Shapes::StringShape.new(name: 'ParametricIAMRoleArn')
|
|
@@ -136,6 +144,7 @@ module Aws::EMRContainers
|
|
|
136
144
|
SecurityConfigurationData = Shapes::StructureShape.new(name: 'SecurityConfigurationData')
|
|
137
145
|
SecurityConfigurations = Shapes::ListShape.new(name: 'SecurityConfigurations')
|
|
138
146
|
SensitivePropertiesMap = Shapes::MapShape.new(name: 'SensitivePropertiesMap')
|
|
147
|
+
SessionIdleTimeoutInMinutes = Shapes::IntegerShape.new(name: 'SessionIdleTimeoutInMinutes')
|
|
139
148
|
SessionTagValue = Shapes::StringShape.new(name: 'SessionTagValue')
|
|
140
149
|
SparkSqlJobDriver = Shapes::StructureShape.new(name: 'SparkSqlJobDriver')
|
|
141
150
|
SparkSqlParameters = Shapes::StringShape.new(name: 'SparkSqlParameters')
|
|
@@ -171,6 +180,10 @@ module Aws::EMRContainers
|
|
|
171
180
|
VirtualClusterStates = Shapes::ListShape.new(name: 'VirtualClusterStates')
|
|
172
181
|
VirtualClusters = Shapes::ListShape.new(name: 'VirtualClusters')
|
|
173
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
|
+
|
|
174
187
|
AuthorizationConfiguration.add_member(:lake_formation_configuration, Shapes::ShapeRef.new(shape: LakeFormationConfiguration, location_name: "lakeFormationConfiguration"))
|
|
175
188
|
AuthorizationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
|
|
176
189
|
AuthorizationConfiguration.struct_class = Types::AuthorizationConfiguration
|
|
@@ -239,6 +252,7 @@ module Aws::EMRContainers
|
|
|
239
252
|
CreateManagedEndpointRequest.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
|
240
253
|
CreateManagedEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
241
254
|
CreateManagedEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
255
|
+
CreateManagedEndpointRequest.add_member(:session_idle_timeout_in_minutes, Shapes::ShapeRef.new(shape: SessionIdleTimeoutInMinutes, location_name: "sessionIdleTimeoutInMinutes"))
|
|
242
256
|
CreateManagedEndpointRequest.struct_class = Types::CreateManagedEndpointRequest
|
|
243
257
|
|
|
244
258
|
CreateManagedEndpointResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
@@ -264,6 +278,7 @@ module Aws::EMRContainers
|
|
|
264
278
|
CreateVirtualClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
265
279
|
CreateVirtualClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
266
280
|
CreateVirtualClusterRequest.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
281
|
+
CreateVirtualClusterRequest.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
|
|
267
282
|
CreateVirtualClusterRequest.struct_class = Types::CreateVirtualClusterRequest
|
|
268
283
|
|
|
269
284
|
CreateVirtualClusterResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
@@ -291,6 +306,12 @@ module Aws::EMRContainers
|
|
|
291
306
|
DeleteManagedEndpointResponse.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "virtualClusterId"))
|
|
292
307
|
DeleteManagedEndpointResponse.struct_class = Types::DeleteManagedEndpointResponse
|
|
293
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
|
+
|
|
294
315
|
DeleteVirtualClusterRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
|
|
295
316
|
DeleteVirtualClusterRequest.struct_class = Types::DeleteVirtualClusterRequest
|
|
296
317
|
|
|
@@ -333,7 +354,7 @@ module Aws::EMRContainers
|
|
|
333
354
|
EKSRequestThrottledException.struct_class = Types::EKSRequestThrottledException
|
|
334
355
|
|
|
335
356
|
EksInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
|
|
336
|
-
EksInfo.add_member(:node_label, Shapes::ShapeRef.new(shape:
|
|
357
|
+
EksInfo.add_member(:node_label, Shapes::ShapeRef.new(shape: NodeLabelString, location_name: "nodeLabel"))
|
|
337
358
|
EksInfo.struct_class = Types::EksInfo
|
|
338
359
|
|
|
339
360
|
EncryptionConfiguration.add_member(:in_transit_encryption_configuration, Shapes::ShapeRef.new(shape: InTransitEncryptionConfiguration, location_name: "inTransitEncryptionConfiguration"))
|
|
@@ -351,6 +372,7 @@ module Aws::EMRContainers
|
|
|
351
372
|
Endpoint.add_member(:certificate_authority, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificateAuthority"))
|
|
352
373
|
Endpoint.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
|
353
374
|
Endpoint.add_member(:server_url, Shapes::ShapeRef.new(shape: UriString, location_name: "serverUrl"))
|
|
375
|
+
Endpoint.add_member(:auth_proxy_url, Shapes::ShapeRef.new(shape: UriString, location_name: "authProxyUrl"))
|
|
354
376
|
Endpoint.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
|
355
377
|
Endpoint.add_member(:security_group, Shapes::ShapeRef.new(shape: String256, location_name: "securityGroup"))
|
|
356
378
|
Endpoint.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "subnetIds"))
|
|
@@ -378,9 +400,19 @@ module Aws::EMRContainers
|
|
|
378
400
|
|
|
379
401
|
GetManagedEndpointSessionCredentialsResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
380
402
|
GetManagedEndpointSessionCredentialsResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "credentials"))
|
|
403
|
+
GetManagedEndpointSessionCredentialsResponse.add_member(:endpoint_credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "endpointCredentials"))
|
|
381
404
|
GetManagedEndpointSessionCredentialsResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Date, location_name: "expiresAt"))
|
|
382
405
|
GetManagedEndpointSessionCredentialsResponse.struct_class = Types::GetManagedEndpointSessionCredentialsResponse
|
|
383
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
|
+
|
|
384
416
|
InTransitEncryptionConfiguration.add_member(:tls_certificate_configuration, Shapes::ShapeRef.new(shape: TLSCertificateConfiguration, location_name: "tlsCertificateConfiguration"))
|
|
385
417
|
InTransitEncryptionConfiguration.struct_class = Types::InTransitEncryptionConfiguration
|
|
386
418
|
|
|
@@ -547,6 +579,7 @@ module Aws::EMRContainers
|
|
|
547
579
|
RetryPolicyExecution.struct_class = Types::RetryPolicyExecution
|
|
548
580
|
|
|
549
581
|
S3MonitoringConfiguration.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, required: true, location_name: "logUri"))
|
|
582
|
+
S3MonitoringConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
550
583
|
S3MonitoringConfiguration.struct_class = Types::S3MonitoringConfiguration
|
|
551
584
|
|
|
552
585
|
SecureNamespaceInfo.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "clusterId"))
|
|
@@ -563,6 +596,7 @@ module Aws::EMRContainers
|
|
|
563
596
|
SecurityConfiguration.struct_class = Types::SecurityConfiguration
|
|
564
597
|
|
|
565
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"))
|
|
566
600
|
SecurityConfigurationData.struct_class = Types::SecurityConfigurationData
|
|
567
601
|
|
|
568
602
|
SecurityConfigurations.member = Shapes::ShapeRef.new(shape: SecurityConfiguration)
|
|
@@ -643,6 +677,7 @@ module Aws::EMRContainers
|
|
|
643
677
|
VirtualCluster.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
|
644
678
|
VirtualCluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
645
679
|
VirtualCluster.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
680
|
+
VirtualCluster.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
|
|
646
681
|
VirtualCluster.struct_class = Types::VirtualCluster
|
|
647
682
|
|
|
648
683
|
VirtualClusterStates.member = Shapes::ShapeRef.new(shape: VirtualClusterState)
|
|
@@ -743,6 +778,16 @@ module Aws::EMRContainers
|
|
|
743
778
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
744
779
|
end)
|
|
745
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
|
+
|
|
746
791
|
api.add_operation(:delete_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
747
792
|
o.name = "DeleteVirtualCluster"
|
|
748
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
|
#
|
|
@@ -333,6 +353,10 @@ module Aws::EMRContainers
|
|
|
333
353
|
# The tags of the managed endpoint.
|
|
334
354
|
# @return [Hash<String,String>]
|
|
335
355
|
#
|
|
356
|
+
# @!attribute [rw] session_idle_timeout_in_minutes
|
|
357
|
+
# The idle timeout in minutes for the managed endpoint session.
|
|
358
|
+
# @return [Integer]
|
|
359
|
+
#
|
|
336
360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateManagedEndpointRequest AWS API Documentation
|
|
337
361
|
#
|
|
338
362
|
class CreateManagedEndpointRequest < Struct.new(
|
|
@@ -344,7 +368,8 @@ module Aws::EMRContainers
|
|
|
344
368
|
:certificate_arn,
|
|
345
369
|
:configuration_overrides,
|
|
346
370
|
:client_token,
|
|
347
|
-
:tags
|
|
371
|
+
:tags,
|
|
372
|
+
:session_idle_timeout_in_minutes)
|
|
348
373
|
SENSITIVE = []
|
|
349
374
|
include Aws::Structure
|
|
350
375
|
end
|
|
@@ -457,6 +482,10 @@ module Aws::EMRContainers
|
|
|
457
482
|
# The ID of the security configuration.
|
|
458
483
|
# @return [String]
|
|
459
484
|
#
|
|
485
|
+
# @!attribute [rw] session_enabled
|
|
486
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
487
|
+
# @return [Boolean]
|
|
488
|
+
#
|
|
460
489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateVirtualClusterRequest AWS API Documentation
|
|
461
490
|
#
|
|
462
491
|
class CreateVirtualClusterRequest < Struct.new(
|
|
@@ -464,7 +493,8 @@ module Aws::EMRContainers
|
|
|
464
493
|
:container_provider,
|
|
465
494
|
:client_token,
|
|
466
495
|
:tags,
|
|
467
|
-
:security_configuration_id
|
|
496
|
+
:security_configuration_id,
|
|
497
|
+
:session_enabled)
|
|
468
498
|
SENSITIVE = []
|
|
469
499
|
include Aws::Structure
|
|
470
500
|
end
|
|
@@ -570,6 +600,30 @@ module Aws::EMRContainers
|
|
|
570
600
|
include Aws::Structure
|
|
571
601
|
end
|
|
572
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
|
+
|
|
573
627
|
# @!attribute [rw] id
|
|
574
628
|
# The ID of the virtual cluster that will be deleted.
|
|
575
629
|
# @return [String]
|
|
@@ -828,6 +882,10 @@ module Aws::EMRContainers
|
|
|
828
882
|
# The server URL of the endpoint.
|
|
829
883
|
# @return [String]
|
|
830
884
|
#
|
|
885
|
+
# @!attribute [rw] auth_proxy_url
|
|
886
|
+
# The auth proxy URL of the endpoint.
|
|
887
|
+
# @return [String]
|
|
888
|
+
#
|
|
831
889
|
# @!attribute [rw] created_at
|
|
832
890
|
# The date and time when the endpoint was created.
|
|
833
891
|
# @return [Time]
|
|
@@ -867,6 +925,7 @@ module Aws::EMRContainers
|
|
|
867
925
|
:certificate_authority,
|
|
868
926
|
:configuration_overrides,
|
|
869
927
|
:server_url,
|
|
928
|
+
:auth_proxy_url,
|
|
870
929
|
:created_at,
|
|
871
930
|
:security_group,
|
|
872
931
|
:subnet_ids,
|
|
@@ -934,6 +993,10 @@ module Aws::EMRContainers
|
|
|
934
993
|
# The structure containing the session credentials.
|
|
935
994
|
# @return [Types::Credentials]
|
|
936
995
|
#
|
|
996
|
+
# @!attribute [rw] endpoint_credentials
|
|
997
|
+
# The structure containing the session token being returned.
|
|
998
|
+
# @return [Types::Credentials]
|
|
999
|
+
#
|
|
937
1000
|
# @!attribute [rw] expires_at
|
|
938
1001
|
# The date and time when the session token will expire.
|
|
939
1002
|
# @return [Time]
|
|
@@ -943,11 +1006,57 @@ module Aws::EMRContainers
|
|
|
943
1006
|
class GetManagedEndpointSessionCredentialsResponse < Struct.new(
|
|
944
1007
|
:id,
|
|
945
1008
|
:credentials,
|
|
1009
|
+
:endpoint_credentials,
|
|
946
1010
|
:expires_at)
|
|
947
1011
|
SENSITIVE = []
|
|
948
1012
|
include Aws::Structure
|
|
949
1013
|
end
|
|
950
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
|
+
|
|
951
1060
|
# Configurations related to in-transit encryption for the security
|
|
952
1061
|
# configuration.
|
|
953
1062
|
#
|
|
@@ -1727,10 +1836,15 @@ module Aws::EMRContainers
|
|
|
1727
1836
|
# Amazon S3 destination URI for log publishing.
|
|
1728
1837
|
# @return [String]
|
|
1729
1838
|
#
|
|
1839
|
+
# @!attribute [rw] encryption_key_arn
|
|
1840
|
+
# The Amazon resource name (ARN) of the encryption key for logs.
|
|
1841
|
+
# @return [String]
|
|
1842
|
+
#
|
|
1730
1843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/S3MonitoringConfiguration AWS API Documentation
|
|
1731
1844
|
#
|
|
1732
1845
|
class S3MonitoringConfiguration < Struct.new(
|
|
1733
|
-
:log_uri
|
|
1846
|
+
:log_uri,
|
|
1847
|
+
:encryption_key_arn)
|
|
1734
1848
|
SENSITIVE = []
|
|
1735
1849
|
include Aws::Structure
|
|
1736
1850
|
end
|
|
@@ -1809,10 +1923,16 @@ module Aws::EMRContainers
|
|
|
1809
1923
|
# configuration.
|
|
1810
1924
|
# @return [Types::AuthorizationConfiguration]
|
|
1811
1925
|
#
|
|
1926
|
+
# @!attribute [rw] authentication_configuration
|
|
1927
|
+
# Authentication-related configuration input for the security
|
|
1928
|
+
# configuration.
|
|
1929
|
+
# @return [Types::AuthenticationConfiguration]
|
|
1930
|
+
#
|
|
1812
1931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecurityConfigurationData AWS API Documentation
|
|
1813
1932
|
#
|
|
1814
1933
|
class SecurityConfigurationData < Struct.new(
|
|
1815
|
-
:authorization_configuration
|
|
1934
|
+
:authorization_configuration,
|
|
1935
|
+
:authentication_configuration)
|
|
1816
1936
|
SENSITIVE = []
|
|
1817
1937
|
include Aws::Structure
|
|
1818
1938
|
end
|
|
@@ -2097,6 +2217,10 @@ module Aws::EMRContainers
|
|
|
2097
2217
|
# The ID of the security configuration.
|
|
2098
2218
|
# @return [String]
|
|
2099
2219
|
#
|
|
2220
|
+
# @!attribute [rw] session_enabled
|
|
2221
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
2222
|
+
# @return [Boolean]
|
|
2223
|
+
#
|
|
2100
2224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/VirtualCluster AWS API Documentation
|
|
2101
2225
|
#
|
|
2102
2226
|
class VirtualCluster < Struct.new(
|
|
@@ -2107,7 +2231,8 @@ module Aws::EMRContainers
|
|
|
2107
2231
|
:container_provider,
|
|
2108
2232
|
:created_at,
|
|
2109
2233
|
:tags,
|
|
2110
|
-
:security_configuration_id
|
|
2234
|
+
:security_configuration_id,
|
|
2235
|
+
:session_enabled)
|
|
2111
2236
|
SENSITIVE = []
|
|
2112
2237
|
include Aws::Structure
|
|
2113
2238
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -152,7 +152,8 @@ module Aws
|
|
|
152
152
|
?certificate_arn: ::String,
|
|
153
153
|
?configuration_overrides: Params::configuration_overrides,
|
|
154
154
|
client_token: ::String,
|
|
155
|
-
?tags: Hash[::String, ::String]
|
|
155
|
+
?tags: Hash[::String, ::String],
|
|
156
|
+
?session_idle_timeout_in_minutes: ::Integer
|
|
156
157
|
) -> _CreateManagedEndpointResponseSuccess
|
|
157
158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateManagedEndpointResponseSuccess
|
|
158
159
|
|
|
@@ -186,6 +187,17 @@ module Aws
|
|
|
186
187
|
}?
|
|
187
188
|
}?
|
|
188
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
|
+
}?
|
|
189
201
|
}?
|
|
190
202
|
},
|
|
191
203
|
?tags: Hash[::String, ::String]
|
|
@@ -204,7 +216,8 @@ module Aws
|
|
|
204
216
|
container_provider: Params::container_provider,
|
|
205
217
|
client_token: ::String,
|
|
206
218
|
?tags: Hash[::String, ::String],
|
|
207
|
-
?security_configuration_id: ::String
|
|
219
|
+
?security_configuration_id: ::String,
|
|
220
|
+
?session_enabled: bool
|
|
208
221
|
) -> _CreateVirtualClusterResponseSuccess
|
|
209
222
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualClusterResponseSuccess
|
|
210
223
|
|
|
@@ -230,6 +243,16 @@ module Aws
|
|
|
230
243
|
) -> _DeleteManagedEndpointResponseSuccess
|
|
231
244
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteManagedEndpointResponseSuccess
|
|
232
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
|
+
|
|
233
256
|
interface _DeleteVirtualClusterResponseSuccess
|
|
234
257
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualClusterResponse]
|
|
235
258
|
def id: () -> ::String
|
|
@@ -296,6 +319,7 @@ module Aws
|
|
|
296
319
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedEndpointSessionCredentialsResponse]
|
|
297
320
|
def id: () -> ::String
|
|
298
321
|
def credentials: () -> Types::Credentials
|
|
322
|
+
def endpoint_credentials: () -> Types::Credentials
|
|
299
323
|
def expires_at: () -> ::Time
|
|
300
324
|
end
|
|
301
325
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#get_managed_endpoint_session_credentials-instance_method
|
data/sig/params.rbs
CHANGED
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
|
|
@@ -102,6 +108,7 @@ module Aws::EMRContainers
|
|
|
102
108
|
attr_accessor configuration_overrides: Types::ConfigurationOverrides
|
|
103
109
|
attr_accessor client_token: ::String
|
|
104
110
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
111
|
+
attr_accessor session_idle_timeout_in_minutes: ::Integer
|
|
105
112
|
SENSITIVE: []
|
|
106
113
|
end
|
|
107
114
|
|
|
@@ -135,6 +142,7 @@ module Aws::EMRContainers
|
|
|
135
142
|
attr_accessor client_token: ::String
|
|
136
143
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
137
144
|
attr_accessor security_configuration_id: ::String
|
|
145
|
+
attr_accessor session_enabled: bool
|
|
138
146
|
SENSITIVE: []
|
|
139
147
|
end
|
|
140
148
|
|
|
@@ -178,6 +186,16 @@ module Aws::EMRContainers
|
|
|
178
186
|
SENSITIVE: []
|
|
179
187
|
end
|
|
180
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
|
+
|
|
181
199
|
class DeleteVirtualClusterRequest
|
|
182
200
|
attr_accessor id: ::String
|
|
183
201
|
SENSITIVE: []
|
|
@@ -269,6 +287,7 @@ module Aws::EMRContainers
|
|
|
269
287
|
attr_accessor certificate_authority: Types::Certificate
|
|
270
288
|
attr_accessor configuration_overrides: Types::ConfigurationOverrides
|
|
271
289
|
attr_accessor server_url: ::String
|
|
290
|
+
attr_accessor auth_proxy_url: ::String
|
|
272
291
|
attr_accessor created_at: ::Time
|
|
273
292
|
attr_accessor security_group: ::String
|
|
274
293
|
attr_accessor subnet_ids: ::Array[::String]
|
|
@@ -292,10 +311,24 @@ module Aws::EMRContainers
|
|
|
292
311
|
class GetManagedEndpointSessionCredentialsResponse
|
|
293
312
|
attr_accessor id: ::String
|
|
294
313
|
attr_accessor credentials: Types::Credentials
|
|
314
|
+
attr_accessor endpoint_credentials: Types::Credentials
|
|
295
315
|
attr_accessor expires_at: ::Time
|
|
296
316
|
SENSITIVE: []
|
|
297
317
|
end
|
|
298
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
|
+
|
|
299
332
|
class InTransitEncryptionConfiguration
|
|
300
333
|
attr_accessor tls_certificate_configuration: Types::TLSCertificateConfiguration
|
|
301
334
|
SENSITIVE: []
|
|
@@ -515,6 +548,7 @@ module Aws::EMRContainers
|
|
|
515
548
|
|
|
516
549
|
class S3MonitoringConfiguration
|
|
517
550
|
attr_accessor log_uri: ::String
|
|
551
|
+
attr_accessor encryption_key_arn: ::String
|
|
518
552
|
SENSITIVE: []
|
|
519
553
|
end
|
|
520
554
|
|
|
@@ -537,6 +571,7 @@ module Aws::EMRContainers
|
|
|
537
571
|
|
|
538
572
|
class SecurityConfigurationData
|
|
539
573
|
attr_accessor authorization_configuration: Types::AuthorizationConfiguration
|
|
574
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
|
540
575
|
SENSITIVE: []
|
|
541
576
|
end
|
|
542
577
|
|
|
@@ -621,6 +656,7 @@ module Aws::EMRContainers
|
|
|
621
656
|
attr_accessor created_at: ::Time
|
|
622
657
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
623
658
|
attr_accessor security_configuration_id: ::String
|
|
659
|
+
attr_accessor session_enabled: bool
|
|
624
660
|
SENSITIVE: []
|
|
625
661
|
end
|
|
626
662
|
end
|