aws-sdk-emrcontainers 1.32.0 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 565a15ea0f652d26cc9e3093b1c1772f159ee741033aec6114cd9c4a83b87332
4
- data.tar.gz: 187d8d5330a5d76215ebc053297b32bc628bc5f597535aa2e76e2f608c4dcb2c
3
+ metadata.gz: 38a25b77fe75ad14506eba32f857df5b8a3f0991b0671c8c69516d8788c38445
4
+ data.tar.gz: e9c1d0a20872c9fcfe24f706cd3238e8185652761a8c5e8a012b0f4fbebb8874
5
5
  SHA512:
6
- metadata.gz: 51b2ed58bd334b1b64824442dfc86085eecb9003e74f8c816a76d94eb5900d5aab06acdc0c56d52fbe66ef71e25cd1e892ef5955fe6698d755250433db756a26
7
- data.tar.gz: b77e19d80bd3daa157d9e49314e2fde1d93898289fb1d8f8a99fbd9874862aec56a67a2db346913ff2123bf7d9f803db18a9451e08ee68d9cb030e0b0c26c442
6
+ metadata.gz: 79bed2da7ed497e1e947d2ef9eaaa4979d93668bc03729848d38b7e9b34c7b4e17f44f84fcf91b0cb9d44065228b4023bf8537fb8b91359be248f85a178f695d
7
+ data.tar.gz: 40b94b0cb5e147f14be68037fad82a99ff9223f3c7edea9ec89c980eb3de20b7d6fe1f659dfdaae433b8bee6daedfaa241d928a0722f5471cf0e8b99a072b03f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2024-04-24)
5
+ ------------------
6
+
7
+ * Feature - EMRonEKS Service support for SecurityConfiguration enforcement for Spark Jobs.
8
+
4
9
  1.32.0 (2024-04-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -629,6 +629,80 @@ module Aws::EMRContainers
629
629
  req.send_request(options)
630
630
  end
631
631
 
632
+ # Creates a security configuration. Security configurations in Amazon
633
+ # EMR on EKS are templates for different security setups. You can use
634
+ # security configurations to configure the Lake Formation integration
635
+ # setup. You can also create a security configuration to re-use a
636
+ # security setup each time you create a virtual cluster.
637
+ #
638
+ # @option params [required, String] :client_token
639
+ # The client idempotency token to use when creating the security
640
+ # configuration.
641
+ #
642
+ # **A suitable default value is auto-generated.** You should normally
643
+ # not need to pass this option.**
644
+ #
645
+ # @option params [required, String] :name
646
+ # The name of the security configuration.
647
+ #
648
+ # @option params [required, Types::SecurityConfigurationData] :security_configuration_data
649
+ # Security configuration input for the request.
650
+ #
651
+ # @option params [Hash<String,String>] :tags
652
+ # The tags to add to the security configuration.
653
+ #
654
+ # @return [Types::CreateSecurityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
655
+ #
656
+ # * {Types::CreateSecurityConfigurationResponse#id #id} => String
657
+ # * {Types::CreateSecurityConfigurationResponse#name #name} => String
658
+ # * {Types::CreateSecurityConfigurationResponse#arn #arn} => String
659
+ #
660
+ # @example Request syntax with placeholder values
661
+ #
662
+ # resp = client.create_security_configuration({
663
+ # client_token: "ClientToken", # required
664
+ # name: "ResourceNameString", # required
665
+ # security_configuration_data: { # required
666
+ # authorization_configuration: {
667
+ # lake_formation_configuration: {
668
+ # authorized_session_tag_value: "SessionTagValue",
669
+ # secure_namespace_info: {
670
+ # cluster_id: "ClusterId",
671
+ # namespace: "KubernetesNamespace",
672
+ # },
673
+ # query_engine_role_arn: "IAMRoleArn",
674
+ # },
675
+ # encryption_configuration: {
676
+ # in_transit_encryption_configuration: {
677
+ # tls_certificate_configuration: {
678
+ # certificate_provider_type: "PEM", # accepts PEM
679
+ # public_certificate_secret_arn: "SecretsManagerArn",
680
+ # private_certificate_secret_arn: "SecretsManagerArn",
681
+ # },
682
+ # },
683
+ # },
684
+ # },
685
+ # },
686
+ # tags: {
687
+ # "String128" => "StringEmpty256",
688
+ # },
689
+ # })
690
+ #
691
+ # @example Response structure
692
+ #
693
+ # resp.id #=> String
694
+ # resp.name #=> String
695
+ # resp.arn #=> String
696
+ #
697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateSecurityConfiguration AWS API Documentation
698
+ #
699
+ # @overload create_security_configuration(params = {})
700
+ # @param [Hash] params ({})
701
+ def create_security_configuration(params = {}, options = {})
702
+ req = build_request(:create_security_configuration, params)
703
+ req.send_request(options)
704
+ end
705
+
632
706
  # Creates a virtual cluster. Virtual cluster is a managed entity on
633
707
  # Amazon EMR on EKS. You can create, describe, list and delete virtual
634
708
  # clusters. They do not consume any additional resource in your system.
@@ -651,6 +725,9 @@ module Aws::EMRContainers
651
725
  # @option params [Hash<String,String>] :tags
652
726
  # The tags assigned to the virtual cluster.
653
727
  #
728
+ # @option params [String] :security_configuration_id
729
+ # The ID of the security configuration.
730
+ #
654
731
  # @return [Types::CreateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
655
732
  #
656
733
  # * {Types::CreateVirtualClusterResponse#id #id} => String
@@ -674,6 +751,7 @@ module Aws::EMRContainers
674
751
  # tags: {
675
752
  # "String128" => "StringEmpty256",
676
753
  # },
754
+ # security_configuration_id: "ResourceIdString",
677
755
  # })
678
756
  #
679
757
  # @example Response structure
@@ -985,6 +1063,52 @@ module Aws::EMRContainers
985
1063
  req.send_request(options)
986
1064
  end
987
1065
 
1066
+ # Displays detailed information about a specified security
1067
+ # configuration. Security configurations in Amazon EMR on EKS are
1068
+ # templates for different security setups. You can use security
1069
+ # configurations to configure the Lake Formation integration setup. You
1070
+ # can also create a security configuration to re-use a security setup
1071
+ # each time you create a virtual cluster.
1072
+ #
1073
+ # @option params [required, String] :id
1074
+ # The ID of the security configuration.
1075
+ #
1076
+ # @return [Types::DescribeSecurityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1077
+ #
1078
+ # * {Types::DescribeSecurityConfigurationResponse#security_configuration #security_configuration} => Types::SecurityConfiguration
1079
+ #
1080
+ # @example Request syntax with placeholder values
1081
+ #
1082
+ # resp = client.describe_security_configuration({
1083
+ # id: "ResourceIdString", # required
1084
+ # })
1085
+ #
1086
+ # @example Response structure
1087
+ #
1088
+ # resp.security_configuration.id #=> String
1089
+ # resp.security_configuration.name #=> String
1090
+ # resp.security_configuration.arn #=> String
1091
+ # resp.security_configuration.created_at #=> Time
1092
+ # resp.security_configuration.created_by #=> String
1093
+ # resp.security_configuration.security_configuration_data.authorization_configuration.lake_formation_configuration.authorized_session_tag_value #=> String
1094
+ # resp.security_configuration.security_configuration_data.authorization_configuration.lake_formation_configuration.secure_namespace_info.cluster_id #=> String
1095
+ # resp.security_configuration.security_configuration_data.authorization_configuration.lake_formation_configuration.secure_namespace_info.namespace #=> String
1096
+ # resp.security_configuration.security_configuration_data.authorization_configuration.lake_formation_configuration.query_engine_role_arn #=> String
1097
+ # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.certificate_provider_type #=> String, one of "PEM"
1098
+ # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
1099
+ # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
1100
+ # resp.security_configuration.tags #=> Hash
1101
+ # resp.security_configuration.tags["String128"] #=> String
1102
+ #
1103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeSecurityConfiguration AWS API Documentation
1104
+ #
1105
+ # @overload describe_security_configuration(params = {})
1106
+ # @param [Hash] params ({})
1107
+ def describe_security_configuration(params = {}, options = {})
1108
+ req = build_request(:describe_security_configuration, params)
1109
+ req.send_request(options)
1110
+ end
1111
+
988
1112
  # Displays detailed information about a specified virtual cluster.
989
1113
  # Virtual cluster is a managed entity on Amazon EMR on EKS. You can
990
1114
  # create, describe, list and delete virtual clusters. They do not
@@ -1018,6 +1142,7 @@ module Aws::EMRContainers
1018
1142
  # resp.virtual_cluster.created_at #=> Time
1019
1143
  # resp.virtual_cluster.tags #=> Hash
1020
1144
  # resp.virtual_cluster.tags["String128"] #=> String
1145
+ # resp.virtual_cluster.security_configuration_id #=> String
1021
1146
  #
1022
1147
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeVirtualCluster AWS API Documentation
1023
1148
  #
@@ -1351,6 +1476,69 @@ module Aws::EMRContainers
1351
1476
  req.send_request(options)
1352
1477
  end
1353
1478
 
1479
+ # Lists security configurations based on a set of parameters. Security
1480
+ # configurations in Amazon EMR on EKS are templates for different
1481
+ # security setups. You can use security configurations to configure the
1482
+ # Lake Formation integration setup. You can also create a security
1483
+ # configuration to re-use a security setup each time you create a
1484
+ # virtual cluster.
1485
+ #
1486
+ # @option params [Time,DateTime,Date,Integer,String] :created_after
1487
+ # The date and time after which the security configuration was created.
1488
+ #
1489
+ # @option params [Time,DateTime,Date,Integer,String] :created_before
1490
+ # The date and time before which the security configuration was created.
1491
+ #
1492
+ # @option params [Integer] :max_results
1493
+ # The maximum number of security configurations the operation can list.
1494
+ #
1495
+ # @option params [String] :next_token
1496
+ # The token for the next set of security configurations to return.
1497
+ #
1498
+ # @return [Types::ListSecurityConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1499
+ #
1500
+ # * {Types::ListSecurityConfigurationsResponse#security_configurations #security_configurations} => Array&lt;Types::SecurityConfiguration&gt;
1501
+ # * {Types::ListSecurityConfigurationsResponse#next_token #next_token} => String
1502
+ #
1503
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1504
+ #
1505
+ # @example Request syntax with placeholder values
1506
+ #
1507
+ # resp = client.list_security_configurations({
1508
+ # created_after: Time.now,
1509
+ # created_before: Time.now,
1510
+ # max_results: 1,
1511
+ # next_token: "NextToken",
1512
+ # })
1513
+ #
1514
+ # @example Response structure
1515
+ #
1516
+ # resp.security_configurations #=> Array
1517
+ # resp.security_configurations[0].id #=> String
1518
+ # resp.security_configurations[0].name #=> String
1519
+ # resp.security_configurations[0].arn #=> String
1520
+ # resp.security_configurations[0].created_at #=> Time
1521
+ # resp.security_configurations[0].created_by #=> String
1522
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.lake_formation_configuration.authorized_session_tag_value #=> String
1523
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.lake_formation_configuration.secure_namespace_info.cluster_id #=> String
1524
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.lake_formation_configuration.secure_namespace_info.namespace #=> String
1525
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.lake_formation_configuration.query_engine_role_arn #=> String
1526
+ # 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"
1527
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
1528
+ # resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
1529
+ # resp.security_configurations[0].tags #=> Hash
1530
+ # resp.security_configurations[0].tags["String128"] #=> String
1531
+ # resp.next_token #=> String
1532
+ #
1533
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListSecurityConfigurations AWS API Documentation
1534
+ #
1535
+ # @overload list_security_configurations(params = {})
1536
+ # @param [Hash] params ({})
1537
+ def list_security_configurations(params = {}, options = {})
1538
+ req = build_request(:list_security_configurations, params)
1539
+ req.send_request(options)
1540
+ end
1541
+
1354
1542
  # Lists the tags assigned to the resources.
1355
1543
  #
1356
1544
  # @option params [required, String] :resource_arn
@@ -1449,6 +1637,7 @@ module Aws::EMRContainers
1449
1637
  # resp.virtual_clusters[0].created_at #=> Time
1450
1638
  # resp.virtual_clusters[0].tags #=> Hash
1451
1639
  # resp.virtual_clusters[0].tags["String128"] #=> String
1640
+ # resp.virtual_clusters[0].security_configuration_id #=> String
1452
1641
  # resp.next_token #=> String
1453
1642
  #
1454
1643
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClusters AWS API Documentation
@@ -1658,7 +1847,7 @@ module Aws::EMRContainers
1658
1847
  params: params,
1659
1848
  config: config)
1660
1849
  context[:gem_name] = 'aws-sdk-emrcontainers'
1661
- context[:gem_version] = '1.32.0'
1850
+ context[:gem_version] = '1.33.0'
1662
1851
  Seahorse::Client::Request.new(handlers, context)
1663
1852
  end
1664
1853
 
@@ -14,11 +14,13 @@ module Aws::EMRContainers
14
14
  include Seahorse::Model
15
15
 
16
16
  ACMCertArn = Shapes::StringShape.new(name: 'ACMCertArn')
17
+ AuthorizationConfiguration = Shapes::StructureShape.new(name: 'AuthorizationConfiguration')
17
18
  Base64Encoded = Shapes::StringShape.new(name: 'Base64Encoded')
18
19
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
20
  CancelJobRunRequest = Shapes::StructureShape.new(name: 'CancelJobRunRequest')
20
21
  CancelJobRunResponse = Shapes::StructureShape.new(name: 'CancelJobRunResponse')
21
22
  Certificate = Shapes::StructureShape.new(name: 'Certificate')
23
+ CertificateProviderType = Shapes::StringShape.new(name: 'CertificateProviderType')
22
24
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
23
25
  CloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'CloudWatchMonitoringConfiguration')
24
26
  ClusterId = Shapes::StringShape.new(name: 'ClusterId')
@@ -33,6 +35,8 @@ module Aws::EMRContainers
33
35
  CreateJobTemplateResponse = Shapes::StructureShape.new(name: 'CreateJobTemplateResponse')
34
36
  CreateManagedEndpointRequest = Shapes::StructureShape.new(name: 'CreateManagedEndpointRequest')
35
37
  CreateManagedEndpointResponse = Shapes::StructureShape.new(name: 'CreateManagedEndpointResponse')
38
+ CreateSecurityConfigurationRequest = Shapes::StructureShape.new(name: 'CreateSecurityConfigurationRequest')
39
+ CreateSecurityConfigurationResponse = Shapes::StructureShape.new(name: 'CreateSecurityConfigurationResponse')
36
40
  CreateVirtualClusterRequest = Shapes::StructureShape.new(name: 'CreateVirtualClusterRequest')
37
41
  CreateVirtualClusterResponse = Shapes::StructureShape.new(name: 'CreateVirtualClusterResponse')
38
42
  CredentialType = Shapes::StringShape.new(name: 'CredentialType')
@@ -50,10 +54,13 @@ module Aws::EMRContainers
50
54
  DescribeJobTemplateResponse = Shapes::StructureShape.new(name: 'DescribeJobTemplateResponse')
51
55
  DescribeManagedEndpointRequest = Shapes::StructureShape.new(name: 'DescribeManagedEndpointRequest')
52
56
  DescribeManagedEndpointResponse = Shapes::StructureShape.new(name: 'DescribeManagedEndpointResponse')
57
+ DescribeSecurityConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeSecurityConfigurationRequest')
58
+ DescribeSecurityConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeSecurityConfigurationResponse')
53
59
  DescribeVirtualClusterRequest = Shapes::StructureShape.new(name: 'DescribeVirtualClusterRequest')
54
60
  DescribeVirtualClusterResponse = Shapes::StructureShape.new(name: 'DescribeVirtualClusterResponse')
55
61
  EKSRequestThrottledException = Shapes::StructureShape.new(name: 'EKSRequestThrottledException')
56
62
  EksInfo = Shapes::StructureShape.new(name: 'EksInfo')
63
+ EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
57
64
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
58
65
  EndpointArn = Shapes::StringShape.new(name: 'EndpointArn')
59
66
  EndpointState = Shapes::StringShape.new(name: 'EndpointState')
@@ -68,6 +75,7 @@ module Aws::EMRContainers
68
75
  GetManagedEndpointSessionCredentialsRequest = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsRequest')
69
76
  GetManagedEndpointSessionCredentialsResponse = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsResponse')
70
77
  IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
78
+ InTransitEncryptionConfiguration = Shapes::StructureShape.new(name: 'InTransitEncryptionConfiguration')
71
79
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
72
80
  JavaInteger = Shapes::IntegerShape.new(name: 'JavaInteger')
73
81
  JobArn = Shapes::StringShape.new(name: 'JobArn')
@@ -82,12 +90,15 @@ module Aws::EMRContainers
82
90
  JobTemplates = Shapes::ListShape.new(name: 'JobTemplates')
83
91
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
84
92
  KubernetesNamespace = Shapes::StringShape.new(name: 'KubernetesNamespace')
93
+ LakeFormationConfiguration = Shapes::StructureShape.new(name: 'LakeFormationConfiguration')
85
94
  ListJobRunsRequest = Shapes::StructureShape.new(name: 'ListJobRunsRequest')
86
95
  ListJobRunsResponse = Shapes::StructureShape.new(name: 'ListJobRunsResponse')
87
96
  ListJobTemplatesRequest = Shapes::StructureShape.new(name: 'ListJobTemplatesRequest')
88
97
  ListJobTemplatesResponse = Shapes::StructureShape.new(name: 'ListJobTemplatesResponse')
89
98
  ListManagedEndpointsRequest = Shapes::StructureShape.new(name: 'ListManagedEndpointsRequest')
90
99
  ListManagedEndpointsResponse = Shapes::StructureShape.new(name: 'ListManagedEndpointsResponse')
100
+ ListSecurityConfigurationsRequest = Shapes::StructureShape.new(name: 'ListSecurityConfigurationsRequest')
101
+ ListSecurityConfigurationsResponse = Shapes::StructureShape.new(name: 'ListSecurityConfigurationsResponse')
91
102
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
92
103
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
93
104
  ListVirtualClustersRequest = Shapes::StructureShape.new(name: 'ListVirtualClustersRequest')
@@ -115,7 +126,14 @@ module Aws::EMRContainers
115
126
  RotationSize = Shapes::StringShape.new(name: 'RotationSize')
116
127
  RsiArn = Shapes::StringShape.new(name: 'RsiArn')
117
128
  S3MonitoringConfiguration = Shapes::StructureShape.new(name: 'S3MonitoringConfiguration')
129
+ SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
130
+ SecureNamespaceInfo = Shapes::StructureShape.new(name: 'SecureNamespaceInfo')
131
+ SecurityConfiguration = Shapes::StructureShape.new(name: 'SecurityConfiguration')
132
+ SecurityConfigurationArn = Shapes::StringShape.new(name: 'SecurityConfigurationArn')
133
+ SecurityConfigurationData = Shapes::StructureShape.new(name: 'SecurityConfigurationData')
134
+ SecurityConfigurations = Shapes::ListShape.new(name: 'SecurityConfigurations')
118
135
  SensitivePropertiesMap = Shapes::MapShape.new(name: 'SensitivePropertiesMap')
136
+ SessionTagValue = Shapes::StringShape.new(name: 'SessionTagValue')
119
137
  SparkSqlJobDriver = Shapes::StructureShape.new(name: 'SparkSqlJobDriver')
120
138
  SparkSqlParameters = Shapes::StringShape.new(name: 'SparkSqlParameters')
121
139
  SparkSubmitJobDriver = Shapes::StructureShape.new(name: 'SparkSubmitJobDriver')
@@ -128,6 +146,7 @@ module Aws::EMRContainers
128
146
  String256 = Shapes::StringShape.new(name: 'String256')
129
147
  StringEmpty256 = Shapes::StringShape.new(name: 'StringEmpty256')
130
148
  SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
149
+ TLSCertificateConfiguration = Shapes::StructureShape.new(name: 'TLSCertificateConfiguration')
131
150
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
132
151
  TagMap = Shapes::MapShape.new(name: 'TagMap')
133
152
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
@@ -149,6 +168,10 @@ module Aws::EMRContainers
149
168
  VirtualClusterStates = Shapes::ListShape.new(name: 'VirtualClusterStates')
150
169
  VirtualClusters = Shapes::ListShape.new(name: 'VirtualClusters')
151
170
 
171
+ AuthorizationConfiguration.add_member(:lake_formation_configuration, Shapes::ShapeRef.new(shape: LakeFormationConfiguration, location_name: "lakeFormationConfiguration"))
172
+ AuthorizationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
173
+ AuthorizationConfiguration.struct_class = Types::AuthorizationConfiguration
174
+
152
175
  CancelJobRunRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "jobRunId"))
153
176
  CancelJobRunRequest.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
154
177
  CancelJobRunRequest.struct_class = Types::CancelJobRunRequest
@@ -221,10 +244,22 @@ module Aws::EMRContainers
221
244
  CreateManagedEndpointResponse.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "virtualClusterId"))
222
245
  CreateManagedEndpointResponse.struct_class = Types::CreateManagedEndpointResponse
223
246
 
247
+ CreateSecurityConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
248
+ CreateSecurityConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, required: true, location_name: "name"))
249
+ CreateSecurityConfigurationRequest.add_member(:security_configuration_data, Shapes::ShapeRef.new(shape: SecurityConfigurationData, required: true, location_name: "securityConfigurationData"))
250
+ CreateSecurityConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
251
+ CreateSecurityConfigurationRequest.struct_class = Types::CreateSecurityConfigurationRequest
252
+
253
+ CreateSecurityConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
254
+ CreateSecurityConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, location_name: "name"))
255
+ CreateSecurityConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: SecurityConfigurationArn, location_name: "arn"))
256
+ CreateSecurityConfigurationResponse.struct_class = Types::CreateSecurityConfigurationResponse
257
+
224
258
  CreateVirtualClusterRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, required: true, location_name: "name"))
225
259
  CreateVirtualClusterRequest.add_member(:container_provider, Shapes::ShapeRef.new(shape: ContainerProvider, required: true, location_name: "containerProvider"))
226
260
  CreateVirtualClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
227
261
  CreateVirtualClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
262
+ CreateVirtualClusterRequest.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
228
263
  CreateVirtualClusterRequest.struct_class = Types::CreateVirtualClusterRequest
229
264
 
230
265
  CreateVirtualClusterResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
@@ -278,6 +313,12 @@ module Aws::EMRContainers
278
313
  DescribeManagedEndpointResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
279
314
  DescribeManagedEndpointResponse.struct_class = Types::DescribeManagedEndpointResponse
280
315
 
316
+ DescribeSecurityConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "securityConfigurationId"))
317
+ DescribeSecurityConfigurationRequest.struct_class = Types::DescribeSecurityConfigurationRequest
318
+
319
+ DescribeSecurityConfigurationResponse.add_member(:security_configuration, Shapes::ShapeRef.new(shape: SecurityConfiguration, location_name: "securityConfiguration"))
320
+ DescribeSecurityConfigurationResponse.struct_class = Types::DescribeSecurityConfigurationResponse
321
+
281
322
  DescribeVirtualClusterRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
282
323
  DescribeVirtualClusterRequest.struct_class = Types::DescribeVirtualClusterRequest
283
324
 
@@ -290,6 +331,9 @@ module Aws::EMRContainers
290
331
  EksInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
291
332
  EksInfo.struct_class = Types::EksInfo
292
333
 
334
+ EncryptionConfiguration.add_member(:in_transit_encryption_configuration, Shapes::ShapeRef.new(shape: InTransitEncryptionConfiguration, location_name: "inTransitEncryptionConfiguration"))
335
+ EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
336
+
293
337
  Endpoint.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
294
338
  Endpoint.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, location_name: "name"))
295
339
  Endpoint.add_member(:arn, Shapes::ShapeRef.new(shape: EndpointArn, location_name: "arn"))
@@ -332,6 +376,9 @@ module Aws::EMRContainers
332
376
  GetManagedEndpointSessionCredentialsResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Date, location_name: "expiresAt"))
333
377
  GetManagedEndpointSessionCredentialsResponse.struct_class = Types::GetManagedEndpointSessionCredentialsResponse
334
378
 
379
+ InTransitEncryptionConfiguration.add_member(:tls_certificate_configuration, Shapes::ShapeRef.new(shape: TLSCertificateConfiguration, location_name: "tlsCertificateConfiguration"))
380
+ InTransitEncryptionConfiguration.struct_class = Types::InTransitEncryptionConfiguration
381
+
335
382
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, location_name: "message"))
336
383
  InternalServerException.struct_class = Types::InternalServerException
337
384
 
@@ -384,6 +431,11 @@ module Aws::EMRContainers
384
431
 
385
432
  JobTemplates.member = Shapes::ShapeRef.new(shape: JobTemplate)
386
433
 
434
+ LakeFormationConfiguration.add_member(:authorized_session_tag_value, Shapes::ShapeRef.new(shape: SessionTagValue, location_name: "authorizedSessionTagValue"))
435
+ LakeFormationConfiguration.add_member(:secure_namespace_info, Shapes::ShapeRef.new(shape: SecureNamespaceInfo, location_name: "secureNamespaceInfo"))
436
+ LakeFormationConfiguration.add_member(:query_engine_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "queryEngineRoleArn"))
437
+ LakeFormationConfiguration.struct_class = Types::LakeFormationConfiguration
438
+
387
439
  ListJobRunsRequest.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
388
440
  ListJobRunsRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Date, location: "querystring", location_name: "createdBefore"))
389
441
  ListJobRunsRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Date, location: "querystring", location_name: "createdAfter"))
@@ -420,6 +472,16 @@ module Aws::EMRContainers
420
472
  ListManagedEndpointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
421
473
  ListManagedEndpointsResponse.struct_class = Types::ListManagedEndpointsResponse
422
474
 
475
+ ListSecurityConfigurationsRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Date, location: "querystring", location_name: "createdAfter"))
476
+ ListSecurityConfigurationsRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Date, location: "querystring", location_name: "createdBefore"))
477
+ ListSecurityConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: JavaInteger, location: "querystring", location_name: "maxResults"))
478
+ ListSecurityConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
479
+ ListSecurityConfigurationsRequest.struct_class = Types::ListSecurityConfigurationsRequest
480
+
481
+ ListSecurityConfigurationsResponse.add_member(:security_configurations, Shapes::ShapeRef.new(shape: SecurityConfigurations, location_name: "securityConfigurations"))
482
+ ListSecurityConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
483
+ ListSecurityConfigurationsResponse.struct_class = Types::ListSecurityConfigurationsResponse
484
+
423
485
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: RsiArn, required: true, location: "uri", location_name: "resourceArn"))
424
486
  ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
425
487
 
@@ -477,6 +539,24 @@ module Aws::EMRContainers
477
539
  S3MonitoringConfiguration.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, required: true, location_name: "logUri"))
478
540
  S3MonitoringConfiguration.struct_class = Types::S3MonitoringConfiguration
479
541
 
542
+ SecureNamespaceInfo.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "clusterId"))
543
+ SecureNamespaceInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
544
+ SecureNamespaceInfo.struct_class = Types::SecureNamespaceInfo
545
+
546
+ SecurityConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
547
+ SecurityConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, location_name: "name"))
548
+ SecurityConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: SecurityConfigurationArn, location_name: "arn"))
549
+ SecurityConfiguration.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
550
+ SecurityConfiguration.add_member(:created_by, Shapes::ShapeRef.new(shape: RequestIdentityUserArn, location_name: "createdBy"))
551
+ SecurityConfiguration.add_member(:security_configuration_data, Shapes::ShapeRef.new(shape: SecurityConfigurationData, location_name: "securityConfigurationData"))
552
+ SecurityConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
553
+ SecurityConfiguration.struct_class = Types::SecurityConfiguration
554
+
555
+ SecurityConfigurationData.add_member(:authorization_configuration, Shapes::ShapeRef.new(shape: AuthorizationConfiguration, location_name: "authorizationConfiguration"))
556
+ SecurityConfigurationData.struct_class = Types::SecurityConfigurationData
557
+
558
+ SecurityConfigurations.member = Shapes::ShapeRef.new(shape: SecurityConfiguration)
559
+
480
560
  SensitivePropertiesMap.key = Shapes::ShapeRef.new(shape: String1024)
481
561
  SensitivePropertiesMap.value = Shapes::ShapeRef.new(shape: String1024)
482
562
 
@@ -510,6 +590,11 @@ module Aws::EMRContainers
510
590
 
511
591
  SubnetIds.member = Shapes::ShapeRef.new(shape: String256)
512
592
 
593
+ TLSCertificateConfiguration.add_member(:certificate_provider_type, Shapes::ShapeRef.new(shape: CertificateProviderType, location_name: "certificateProviderType"))
594
+ TLSCertificateConfiguration.add_member(:public_certificate_secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerArn, location_name: "publicCertificateSecretArn"))
595
+ TLSCertificateConfiguration.add_member(:private_certificate_secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerArn, location_name: "privateCertificateSecretArn"))
596
+ TLSCertificateConfiguration.struct_class = Types::TLSCertificateConfiguration
597
+
513
598
  TagKeyList.member = Shapes::ShapeRef.new(shape: String128)
514
599
 
515
600
  TagMap.key = Shapes::ShapeRef.new(shape: String128)
@@ -547,6 +632,7 @@ module Aws::EMRContainers
547
632
  VirtualCluster.add_member(:container_provider, Shapes::ShapeRef.new(shape: ContainerProvider, location_name: "containerProvider"))
548
633
  VirtualCluster.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
549
634
  VirtualCluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
635
+ VirtualCluster.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
550
636
  VirtualCluster.struct_class = Types::VirtualCluster
551
637
 
552
638
  VirtualClusterStates.member = Shapes::ShapeRef.new(shape: VirtualClusterState)
@@ -603,6 +689,16 @@ module Aws::EMRContainers
603
689
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
604
690
  end)
605
691
 
692
+ api.add_operation(:create_security_configuration, Seahorse::Model::Operation.new.tap do |o|
693
+ o.name = "CreateSecurityConfiguration"
694
+ o.http_method = "POST"
695
+ o.http_request_uri = "/securityconfigurations"
696
+ o.input = Shapes::ShapeRef.new(shape: CreateSecurityConfigurationRequest)
697
+ o.output = Shapes::ShapeRef.new(shape: CreateSecurityConfigurationResponse)
698
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
699
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
700
+ end)
701
+
606
702
  api.add_operation(:create_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
607
703
  o.name = "CreateVirtualCluster"
608
704
  o.http_method = "POST"
@@ -678,6 +774,17 @@ module Aws::EMRContainers
678
774
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
679
775
  end)
680
776
 
777
+ api.add_operation(:describe_security_configuration, Seahorse::Model::Operation.new.tap do |o|
778
+ o.name = "DescribeSecurityConfiguration"
779
+ o.http_method = "GET"
780
+ o.http_request_uri = "/securityconfigurations/{securityConfigurationId}"
781
+ o.input = Shapes::ShapeRef.new(shape: DescribeSecurityConfigurationRequest)
782
+ o.output = Shapes::ShapeRef.new(shape: DescribeSecurityConfigurationResponse)
783
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
784
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
785
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
786
+ end)
787
+
681
788
  api.add_operation(:describe_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
682
789
  o.name = "DescribeVirtualCluster"
683
790
  o.http_method = "GET"
@@ -749,6 +856,22 @@ module Aws::EMRContainers
749
856
  )
750
857
  end)
751
858
 
859
+ api.add_operation(:list_security_configurations, Seahorse::Model::Operation.new.tap do |o|
860
+ o.name = "ListSecurityConfigurations"
861
+ o.http_method = "GET"
862
+ o.http_request_uri = "/securityconfigurations"
863
+ o.input = Shapes::ShapeRef.new(shape: ListSecurityConfigurationsRequest)
864
+ o.output = Shapes::ShapeRef.new(shape: ListSecurityConfigurationsResponse)
865
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
866
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
867
+ o[:pager] = Aws::Pager.new(
868
+ limit_key: "max_results",
869
+ tokens: {
870
+ "next_token" => "next_token"
871
+ }
872
+ )
873
+ end)
874
+
752
875
  api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
753
876
  o.name = "ListTagsForResource"
754
877
  o.http_method = "GET"
@@ -54,6 +54,20 @@ module Aws::EMRContainers
54
54
  end
55
55
  end
56
56
 
57
+ class CreateSecurityConfiguration
58
+ def self.build(context)
59
+ unless context.config.regional_endpoint
60
+ endpoint = context.config.endpoint.to_s
61
+ end
62
+ Aws::EMRContainers::EndpointParameters.new(
63
+ region: context.config.region,
64
+ use_dual_stack: context.config.use_dualstack_endpoint,
65
+ use_fips: context.config.use_fips_endpoint,
66
+ endpoint: endpoint,
67
+ )
68
+ end
69
+ end
70
+
57
71
  class CreateVirtualCluster
58
72
  def self.build(context)
59
73
  unless context.config.regional_endpoint
@@ -152,6 +166,20 @@ module Aws::EMRContainers
152
166
  end
153
167
  end
154
168
 
169
+ class DescribeSecurityConfiguration
170
+ def self.build(context)
171
+ unless context.config.regional_endpoint
172
+ endpoint = context.config.endpoint.to_s
173
+ end
174
+ Aws::EMRContainers::EndpointParameters.new(
175
+ region: context.config.region,
176
+ use_dual_stack: context.config.use_dualstack_endpoint,
177
+ use_fips: context.config.use_fips_endpoint,
178
+ endpoint: endpoint,
179
+ )
180
+ end
181
+ end
182
+
155
183
  class DescribeVirtualCluster
156
184
  def self.build(context)
157
185
  unless context.config.regional_endpoint
@@ -222,6 +250,20 @@ module Aws::EMRContainers
222
250
  end
223
251
  end
224
252
 
253
+ class ListSecurityConfigurations
254
+ def self.build(context)
255
+ unless context.config.regional_endpoint
256
+ endpoint = context.config.endpoint.to_s
257
+ end
258
+ Aws::EMRContainers::EndpointParameters.new(
259
+ region: context.config.region,
260
+ use_dual_stack: context.config.use_dualstack_endpoint,
261
+ use_fips: context.config.use_fips_endpoint,
262
+ endpoint: endpoint,
263
+ )
264
+ end
265
+ end
266
+
225
267
  class ListTagsForResource
226
268
  def self.build(context)
227
269
  unless context.config.regional_endpoint
@@ -64,6 +64,8 @@ module Aws::EMRContainers
64
64
  Aws::EMRContainers::Endpoints::CreateJobTemplate.build(context)
65
65
  when :create_managed_endpoint
66
66
  Aws::EMRContainers::Endpoints::CreateManagedEndpoint.build(context)
67
+ when :create_security_configuration
68
+ Aws::EMRContainers::Endpoints::CreateSecurityConfiguration.build(context)
67
69
  when :create_virtual_cluster
68
70
  Aws::EMRContainers::Endpoints::CreateVirtualCluster.build(context)
69
71
  when :delete_job_template
@@ -78,6 +80,8 @@ module Aws::EMRContainers
78
80
  Aws::EMRContainers::Endpoints::DescribeJobTemplate.build(context)
79
81
  when :describe_managed_endpoint
80
82
  Aws::EMRContainers::Endpoints::DescribeManagedEndpoint.build(context)
83
+ when :describe_security_configuration
84
+ Aws::EMRContainers::Endpoints::DescribeSecurityConfiguration.build(context)
81
85
  when :describe_virtual_cluster
82
86
  Aws::EMRContainers::Endpoints::DescribeVirtualCluster.build(context)
83
87
  when :get_managed_endpoint_session_credentials
@@ -88,6 +92,8 @@ module Aws::EMRContainers
88
92
  Aws::EMRContainers::Endpoints::ListJobTemplates.build(context)
89
93
  when :list_managed_endpoints
90
94
  Aws::EMRContainers::Endpoints::ListManagedEndpoints.build(context)
95
+ when :list_security_configurations
96
+ Aws::EMRContainers::Endpoints::ListSecurityConfigurations.build(context)
91
97
  when :list_tags_for_resource
92
98
  Aws::EMRContainers::Endpoints::ListTagsForResource.build(context)
93
99
  when :list_virtual_clusters
@@ -10,6 +10,28 @@
10
10
  module Aws::EMRContainers
11
11
  module Types
12
12
 
13
+ # Authorization-related configuration inputs for the security
14
+ # configuration.
15
+ #
16
+ # @!attribute [rw] lake_formation_configuration
17
+ # Lake Formation related configuration inputs for the security
18
+ # configuration.
19
+ # @return [Types::LakeFormationConfiguration]
20
+ #
21
+ # @!attribute [rw] encryption_configuration
22
+ # Encryption-related configuration input for the security
23
+ # configuration.
24
+ # @return [Types::EncryptionConfiguration]
25
+ #
26
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/AuthorizationConfiguration AWS API Documentation
27
+ #
28
+ class AuthorizationConfiguration < Struct.new(
29
+ :lake_formation_configuration,
30
+ :encryption_configuration)
31
+ SENSITIVE = []
32
+ include Aws::Structure
33
+ end
34
+
13
35
  # @!attribute [rw] id
14
36
  # The ID of the job run to cancel.
15
37
  # @return [String]
@@ -354,6 +376,59 @@ module Aws::EMRContainers
354
376
  include Aws::Structure
355
377
  end
356
378
 
379
+ # @!attribute [rw] client_token
380
+ # The client idempotency token to use when creating the security
381
+ # configuration.
382
+ #
383
+ # **A suitable default value is auto-generated.** You should normally
384
+ # not need to pass this option.
385
+ # @return [String]
386
+ #
387
+ # @!attribute [rw] name
388
+ # The name of the security configuration.
389
+ # @return [String]
390
+ #
391
+ # @!attribute [rw] security_configuration_data
392
+ # Security configuration input for the request.
393
+ # @return [Types::SecurityConfigurationData]
394
+ #
395
+ # @!attribute [rw] tags
396
+ # The tags to add to the security configuration.
397
+ # @return [Hash<String,String>]
398
+ #
399
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateSecurityConfigurationRequest AWS API Documentation
400
+ #
401
+ class CreateSecurityConfigurationRequest < Struct.new(
402
+ :client_token,
403
+ :name,
404
+ :security_configuration_data,
405
+ :tags)
406
+ SENSITIVE = []
407
+ include Aws::Structure
408
+ end
409
+
410
+ # @!attribute [rw] id
411
+ # The ID of the security configuration.
412
+ # @return [String]
413
+ #
414
+ # @!attribute [rw] name
415
+ # The name of the security configuration.
416
+ # @return [String]
417
+ #
418
+ # @!attribute [rw] arn
419
+ # The ARN (Amazon Resource Name) of the security configuration.
420
+ # @return [String]
421
+ #
422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateSecurityConfigurationResponse AWS API Documentation
423
+ #
424
+ class CreateSecurityConfigurationResponse < Struct.new(
425
+ :id,
426
+ :name,
427
+ :arn)
428
+ SENSITIVE = []
429
+ include Aws::Structure
430
+ end
431
+
357
432
  # @!attribute [rw] name
358
433
  # The specified name of the virtual cluster.
359
434
  # @return [String]
@@ -373,13 +448,18 @@ module Aws::EMRContainers
373
448
  # The tags assigned to the virtual cluster.
374
449
  # @return [Hash<String,String>]
375
450
  #
451
+ # @!attribute [rw] security_configuration_id
452
+ # The ID of the security configuration.
453
+ # @return [String]
454
+ #
376
455
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateVirtualClusterRequest AWS API Documentation
377
456
  #
378
457
  class CreateVirtualClusterRequest < Struct.new(
379
458
  :name,
380
459
  :container_provider,
381
460
  :client_token,
382
- :tags)
461
+ :tags,
462
+ :security_configuration_id)
383
463
  SENSITIVE = []
384
464
  include Aws::Structure
385
465
  end
@@ -592,6 +672,30 @@ module Aws::EMRContainers
592
672
  include Aws::Structure
593
673
  end
594
674
 
675
+ # @!attribute [rw] id
676
+ # The ID of the security configuration.
677
+ # @return [String]
678
+ #
679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeSecurityConfigurationRequest AWS API Documentation
680
+ #
681
+ class DescribeSecurityConfigurationRequest < Struct.new(
682
+ :id)
683
+ SENSITIVE = []
684
+ include Aws::Structure
685
+ end
686
+
687
+ # @!attribute [rw] security_configuration
688
+ # Details of the security configuration.
689
+ # @return [Types::SecurityConfiguration]
690
+ #
691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeSecurityConfigurationResponse AWS API Documentation
692
+ #
693
+ class DescribeSecurityConfigurationResponse < Struct.new(
694
+ :security_configuration)
695
+ SENSITIVE = []
696
+ include Aws::Structure
697
+ end
698
+
595
699
  # @!attribute [rw] id
596
700
  # The ID of the virtual cluster that will be described.
597
701
  # @return [String]
@@ -644,6 +748,20 @@ module Aws::EMRContainers
644
748
  include Aws::Structure
645
749
  end
646
750
 
751
+ # Configurations related to encryption for the security configuration.
752
+ #
753
+ # @!attribute [rw] in_transit_encryption_configuration
754
+ # In-transit encryption-related input for the security configuration.
755
+ # @return [Types::InTransitEncryptionConfiguration]
756
+ #
757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/EncryptionConfiguration AWS API Documentation
758
+ #
759
+ class EncryptionConfiguration < Struct.new(
760
+ :in_transit_encryption_configuration)
761
+ SENSITIVE = []
762
+ include Aws::Structure
763
+ end
764
+
647
765
  # This entity represents the endpoint that is managed by Amazon EMR on
648
766
  # EKS.
649
767
  #
@@ -818,6 +936,22 @@ module Aws::EMRContainers
818
936
  include Aws::Structure
819
937
  end
820
938
 
939
+ # Configurations related to in-transit encryption for the security
940
+ # configuration.
941
+ #
942
+ # @!attribute [rw] tls_certificate_configuration
943
+ # TLS certificate-related configuration input for the security
944
+ # configuration.
945
+ # @return [Types::TLSCertificateConfiguration]
946
+ #
947
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/InTransitEncryptionConfiguration AWS API Documentation
948
+ #
949
+ class InTransitEncryptionConfiguration < Struct.new(
950
+ :tls_certificate_configuration)
951
+ SENSITIVE = []
952
+ include Aws::Structure
953
+ end
954
+
821
955
  # This is an internal server exception.
822
956
  #
823
957
  # @!attribute [rw] message
@@ -1055,6 +1189,34 @@ module Aws::EMRContainers
1055
1189
  include Aws::Structure
1056
1190
  end
1057
1191
 
1192
+ # Lake Formation related configuration inputs for the security
1193
+ # configuration.
1194
+ #
1195
+ # @!attribute [rw] authorized_session_tag_value
1196
+ # The session tag to authorize Amazon EMR on EKS for API calls to Lake
1197
+ # Formation.
1198
+ # @return [String]
1199
+ #
1200
+ # @!attribute [rw] secure_namespace_info
1201
+ # The namespace input of the system job.
1202
+ # @return [Types::SecureNamespaceInfo]
1203
+ #
1204
+ # @!attribute [rw] query_engine_role_arn
1205
+ # The query engine IAM role ARN that is tied to the secure Spark job.
1206
+ # The `QueryEngine` role assumes the `JobExecutionRole` to execute all
1207
+ # the Lake Formation calls.
1208
+ # @return [String]
1209
+ #
1210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/LakeFormationConfiguration AWS API Documentation
1211
+ #
1212
+ class LakeFormationConfiguration < Struct.new(
1213
+ :authorized_session_tag_value,
1214
+ :secure_namespace_info,
1215
+ :query_engine_role_arn)
1216
+ SENSITIVE = []
1217
+ include Aws::Structure
1218
+ end
1219
+
1058
1220
  # @!attribute [rw] virtual_cluster_id
1059
1221
  # The ID of the virtual cluster for which to list the job run.
1060
1222
  # @return [String]
@@ -1217,6 +1379,53 @@ module Aws::EMRContainers
1217
1379
  include Aws::Structure
1218
1380
  end
1219
1381
 
1382
+ # @!attribute [rw] created_after
1383
+ # The date and time after which the security configuration was
1384
+ # created.
1385
+ # @return [Time]
1386
+ #
1387
+ # @!attribute [rw] created_before
1388
+ # The date and time before which the security configuration was
1389
+ # created.
1390
+ # @return [Time]
1391
+ #
1392
+ # @!attribute [rw] max_results
1393
+ # The maximum number of security configurations the operation can
1394
+ # list.
1395
+ # @return [Integer]
1396
+ #
1397
+ # @!attribute [rw] next_token
1398
+ # The token for the next set of security configurations to return.
1399
+ # @return [String]
1400
+ #
1401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListSecurityConfigurationsRequest AWS API Documentation
1402
+ #
1403
+ class ListSecurityConfigurationsRequest < Struct.new(
1404
+ :created_after,
1405
+ :created_before,
1406
+ :max_results,
1407
+ :next_token)
1408
+ SENSITIVE = []
1409
+ include Aws::Structure
1410
+ end
1411
+
1412
+ # @!attribute [rw] security_configurations
1413
+ # The list of returned security configurations.
1414
+ # @return [Array<Types::SecurityConfiguration>]
1415
+ #
1416
+ # @!attribute [rw] next_token
1417
+ # The token for the next set of security configurations to return.
1418
+ # @return [String]
1419
+ #
1420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListSecurityConfigurationsResponse AWS API Documentation
1421
+ #
1422
+ class ListSecurityConfigurationsResponse < Struct.new(
1423
+ :security_configurations,
1424
+ :next_token)
1425
+ SENSITIVE = []
1426
+ include Aws::Structure
1427
+ end
1428
+
1220
1429
  # @!attribute [rw] resource_arn
1221
1430
  # The ARN of tagged resources.
1222
1431
  # @return [String]
@@ -1490,6 +1699,88 @@ module Aws::EMRContainers
1490
1699
  include Aws::Structure
1491
1700
  end
1492
1701
 
1702
+ # Namespace inputs for the system job.
1703
+ #
1704
+ # @!attribute [rw] cluster_id
1705
+ # The ID of the Amazon EKS cluster where Amazon EMR on EKS jobs run.
1706
+ # @return [String]
1707
+ #
1708
+ # @!attribute [rw] namespace
1709
+ # The namespace of the Amazon EKS cluster where the system jobs run.
1710
+ # @return [String]
1711
+ #
1712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecureNamespaceInfo AWS API Documentation
1713
+ #
1714
+ class SecureNamespaceInfo < Struct.new(
1715
+ :cluster_id,
1716
+ :namespace)
1717
+ SENSITIVE = []
1718
+ include Aws::Structure
1719
+ end
1720
+
1721
+ # Inputs related to the security configuration. Security configurations
1722
+ # in Amazon EMR on EKS are templates for different security setups. You
1723
+ # can use security configurations to configure the Lake Formation
1724
+ # integration setup. You can also create a security configuration to
1725
+ # re-use a security setup each time you create a virtual cluster.
1726
+ #
1727
+ # @!attribute [rw] id
1728
+ # The ID of the security configuration.
1729
+ # @return [String]
1730
+ #
1731
+ # @!attribute [rw] name
1732
+ # The name of the security configuration.
1733
+ # @return [String]
1734
+ #
1735
+ # @!attribute [rw] arn
1736
+ # The ARN (Amazon Resource Name) of the security configuration.
1737
+ # @return [String]
1738
+ #
1739
+ # @!attribute [rw] created_at
1740
+ # The date and time that the job run was created.
1741
+ # @return [Time]
1742
+ #
1743
+ # @!attribute [rw] created_by
1744
+ # The user who created the job run.
1745
+ # @return [String]
1746
+ #
1747
+ # @!attribute [rw] security_configuration_data
1748
+ # Security configuration inputs for the request.
1749
+ # @return [Types::SecurityConfigurationData]
1750
+ #
1751
+ # @!attribute [rw] tags
1752
+ # The tags to assign to the security configuration.
1753
+ # @return [Hash<String,String>]
1754
+ #
1755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecurityConfiguration AWS API Documentation
1756
+ #
1757
+ class SecurityConfiguration < Struct.new(
1758
+ :id,
1759
+ :name,
1760
+ :arn,
1761
+ :created_at,
1762
+ :created_by,
1763
+ :security_configuration_data,
1764
+ :tags)
1765
+ SENSITIVE = []
1766
+ include Aws::Structure
1767
+ end
1768
+
1769
+ # Configurations related to the security configuration for the request.
1770
+ #
1771
+ # @!attribute [rw] authorization_configuration
1772
+ # Authorization-related configuration input for the security
1773
+ # configuration.
1774
+ # @return [Types::AuthorizationConfiguration]
1775
+ #
1776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecurityConfigurationData AWS API Documentation
1777
+ #
1778
+ class SecurityConfigurationData < Struct.new(
1779
+ :authorization_configuration)
1780
+ SENSITIVE = []
1781
+ include Aws::Structure
1782
+ end
1783
+
1493
1784
  # The job driver for job type.
1494
1785
  #
1495
1786
  # @!attribute [rw] entry_point
@@ -1626,6 +1917,35 @@ module Aws::EMRContainers
1626
1917
  include Aws::Structure
1627
1918
  end
1628
1919
 
1920
+ # Configurations related to the TLS certificate for the security
1921
+ # configuration.
1922
+ #
1923
+ # @!attribute [rw] certificate_provider_type
1924
+ # The TLS certificate type. Acceptable values: `PEM` or `Custom`.
1925
+ # @return [String]
1926
+ #
1927
+ # @!attribute [rw] public_certificate_secret_arn
1928
+ # Secrets Manager ARN that contains the public TLS certificate
1929
+ # contents, used for communication between the user job and the system
1930
+ # job.
1931
+ # @return [String]
1932
+ #
1933
+ # @!attribute [rw] private_certificate_secret_arn
1934
+ # Secrets Manager ARN that contains the private TLS certificate
1935
+ # contents, used for communication between the user job and the system
1936
+ # job.
1937
+ # @return [String]
1938
+ #
1939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/TLSCertificateConfiguration AWS API Documentation
1940
+ #
1941
+ class TLSCertificateConfiguration < Struct.new(
1942
+ :certificate_provider_type,
1943
+ :public_certificate_secret_arn,
1944
+ :private_certificate_secret_arn)
1945
+ SENSITIVE = []
1946
+ include Aws::Structure
1947
+ end
1948
+
1629
1949
  # @!attribute [rw] resource_arn
1630
1950
  # The ARN of resources.
1631
1951
  # @return [String]
@@ -1737,6 +2057,10 @@ module Aws::EMRContainers
1737
2057
  # The assigned tags of the virtual cluster.
1738
2058
  # @return [Hash<String,String>]
1739
2059
  #
2060
+ # @!attribute [rw] security_configuration_id
2061
+ # The ID of the security configuration.
2062
+ # @return [String]
2063
+ #
1740
2064
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/VirtualCluster AWS API Documentation
1741
2065
  #
1742
2066
  class VirtualCluster < Struct.new(
@@ -1746,7 +2070,8 @@ module Aws::EMRContainers
1746
2070
  :state,
1747
2071
  :container_provider,
1748
2072
  :created_at,
1749
- :tags)
2073
+ :tags,
2074
+ :security_configuration_id)
1750
2075
  SENSITIVE = []
1751
2076
  include Aws::Structure
1752
2077
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-emrcontainers/customizations'
52
52
  # @!group service
53
53
  module Aws::EMRContainers
54
54
 
55
- GEM_VERSION = '1.32.0'
55
+ GEM_VERSION = '1.33.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -182,6 +182,41 @@ module Aws
182
182
  ) -> _CreateManagedEndpointResponseSuccess
183
183
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateManagedEndpointResponseSuccess
184
184
 
185
+ interface _CreateSecurityConfigurationResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSecurityConfigurationResponse]
187
+ def id: () -> ::String
188
+ def name: () -> ::String
189
+ def arn: () -> ::String
190
+ end
191
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#create_security_configuration-instance_method
192
+ def create_security_configuration: (
193
+ client_token: ::String,
194
+ name: ::String,
195
+ security_configuration_data: {
196
+ authorization_configuration: {
197
+ lake_formation_configuration: {
198
+ authorized_session_tag_value: ::String?,
199
+ secure_namespace_info: {
200
+ cluster_id: ::String?,
201
+ namespace: ::String?
202
+ }?,
203
+ query_engine_role_arn: ::String?
204
+ }?,
205
+ encryption_configuration: {
206
+ in_transit_encryption_configuration: {
207
+ tls_certificate_configuration: {
208
+ certificate_provider_type: ("PEM")?,
209
+ public_certificate_secret_arn: ::String?,
210
+ private_certificate_secret_arn: ::String?
211
+ }?
212
+ }?
213
+ }?
214
+ }?
215
+ },
216
+ ?tags: Hash[::String, ::String]
217
+ ) -> _CreateSecurityConfigurationResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityConfigurationResponseSuccess
219
+
185
220
  interface _CreateVirtualClusterResponseSuccess
186
221
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateVirtualClusterResponse]
187
222
  def id: () -> ::String
@@ -201,7 +236,8 @@ module Aws
201
236
  }?
202
237
  },
203
238
  client_token: ::String,
204
- ?tags: Hash[::String, ::String]
239
+ ?tags: Hash[::String, ::String],
240
+ ?security_configuration_id: ::String
205
241
  ) -> _CreateVirtualClusterResponseSuccess
206
242
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualClusterResponseSuccess
207
243
 
@@ -269,6 +305,16 @@ module Aws
269
305
  ) -> _DescribeManagedEndpointResponseSuccess
270
306
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeManagedEndpointResponseSuccess
271
307
 
308
+ interface _DescribeSecurityConfigurationResponseSuccess
309
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSecurityConfigurationResponse]
310
+ def security_configuration: () -> Types::SecurityConfiguration
311
+ end
312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#describe_security_configuration-instance_method
313
+ def describe_security_configuration: (
314
+ id: ::String
315
+ ) -> _DescribeSecurityConfigurationResponseSuccess
316
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSecurityConfigurationResponseSuccess
317
+
272
318
  interface _DescribeVirtualClusterResponseSuccess
273
319
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVirtualClusterResponse]
274
320
  def virtual_cluster: () -> Types::VirtualCluster
@@ -345,6 +391,20 @@ module Aws
345
391
  ) -> _ListManagedEndpointsResponseSuccess
346
392
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedEndpointsResponseSuccess
347
393
 
394
+ interface _ListSecurityConfigurationsResponseSuccess
395
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityConfigurationsResponse]
396
+ def security_configurations: () -> ::Array[Types::SecurityConfiguration]
397
+ def next_token: () -> ::String
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#list_security_configurations-instance_method
400
+ def list_security_configurations: (
401
+ ?created_after: ::Time,
402
+ ?created_before: ::Time,
403
+ ?max_results: ::Integer,
404
+ ?next_token: ::String
405
+ ) -> _ListSecurityConfigurationsResponseSuccess
406
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityConfigurationsResponseSuccess
407
+
348
408
  interface _ListTagsForResourceResponseSuccess
349
409
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
350
410
  def tags: () -> ::Hash[::String, ::String]
data/sig/types.rbs CHANGED
@@ -8,6 +8,12 @@
8
8
  module Aws::EMRContainers
9
9
  module Types
10
10
 
11
+ class AuthorizationConfiguration
12
+ attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
13
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
14
+ SENSITIVE: []
15
+ end
16
+
11
17
  class CancelJobRunRequest
12
18
  attr_accessor id: ::String
13
19
  attr_accessor virtual_cluster_id: ::String
@@ -107,11 +113,27 @@ module Aws::EMRContainers
107
113
  SENSITIVE: []
108
114
  end
109
115
 
116
+ class CreateSecurityConfigurationRequest
117
+ attr_accessor client_token: ::String
118
+ attr_accessor name: ::String
119
+ attr_accessor security_configuration_data: Types::SecurityConfigurationData
120
+ attr_accessor tags: ::Hash[::String, ::String]
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class CreateSecurityConfigurationResponse
125
+ attr_accessor id: ::String
126
+ attr_accessor name: ::String
127
+ attr_accessor arn: ::String
128
+ SENSITIVE: []
129
+ end
130
+
110
131
  class CreateVirtualClusterRequest
111
132
  attr_accessor name: ::String
112
133
  attr_accessor container_provider: Types::ContainerProvider
113
134
  attr_accessor client_token: ::String
114
135
  attr_accessor tags: ::Hash[::String, ::String]
136
+ attr_accessor security_configuration_id: ::String
115
137
  SENSITIVE: []
116
138
  end
117
139
 
@@ -197,6 +219,16 @@ module Aws::EMRContainers
197
219
  SENSITIVE: []
198
220
  end
199
221
 
222
+ class DescribeSecurityConfigurationRequest
223
+ attr_accessor id: ::String
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class DescribeSecurityConfigurationResponse
228
+ attr_accessor security_configuration: Types::SecurityConfiguration
229
+ SENSITIVE: []
230
+ end
231
+
200
232
  class DescribeVirtualClusterRequest
201
233
  attr_accessor id: ::String
202
234
  SENSITIVE: []
@@ -217,6 +249,11 @@ module Aws::EMRContainers
217
249
  SENSITIVE: []
218
250
  end
219
251
 
252
+ class EncryptionConfiguration
253
+ attr_accessor in_transit_encryption_configuration: Types::InTransitEncryptionConfiguration
254
+ SENSITIVE: []
255
+ end
256
+
220
257
  class Endpoint
221
258
  attr_accessor id: ::String
222
259
  attr_accessor name: ::String
@@ -257,6 +294,11 @@ module Aws::EMRContainers
257
294
  SENSITIVE: []
258
295
  end
259
296
 
297
+ class InTransitEncryptionConfiguration
298
+ attr_accessor tls_certificate_configuration: Types::TLSCertificateConfiguration
299
+ SENSITIVE: []
300
+ end
301
+
260
302
  class InternalServerException
261
303
  attr_accessor message: ::String
262
304
  SENSITIVE: []
@@ -313,6 +355,13 @@ module Aws::EMRContainers
313
355
  SENSITIVE: []
314
356
  end
315
357
 
358
+ class LakeFormationConfiguration
359
+ attr_accessor authorized_session_tag_value: ::String
360
+ attr_accessor secure_namespace_info: Types::SecureNamespaceInfo
361
+ attr_accessor query_engine_role_arn: ::String
362
+ SENSITIVE: []
363
+ end
364
+
316
365
  class ListJobRunsRequest
317
366
  attr_accessor virtual_cluster_id: ::String
318
367
  attr_accessor created_before: ::Time
@@ -361,6 +410,20 @@ module Aws::EMRContainers
361
410
  SENSITIVE: []
362
411
  end
363
412
 
413
+ class ListSecurityConfigurationsRequest
414
+ attr_accessor created_after: ::Time
415
+ attr_accessor created_before: ::Time
416
+ attr_accessor max_results: ::Integer
417
+ attr_accessor next_token: ::String
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class ListSecurityConfigurationsResponse
422
+ attr_accessor security_configurations: ::Array[Types::SecurityConfiguration]
423
+ attr_accessor next_token: ::String
424
+ SENSITIVE: []
425
+ end
426
+
364
427
  class ListTagsForResourceRequest
365
428
  attr_accessor resource_arn: ::String
366
429
  SENSITIVE: []
@@ -446,6 +509,28 @@ module Aws::EMRContainers
446
509
  SENSITIVE: []
447
510
  end
448
511
 
512
+ class SecureNamespaceInfo
513
+ attr_accessor cluster_id: ::String
514
+ attr_accessor namespace: ::String
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class SecurityConfiguration
519
+ attr_accessor id: ::String
520
+ attr_accessor name: ::String
521
+ attr_accessor arn: ::String
522
+ attr_accessor created_at: ::Time
523
+ attr_accessor created_by: ::String
524
+ attr_accessor security_configuration_data: Types::SecurityConfigurationData
525
+ attr_accessor tags: ::Hash[::String, ::String]
526
+ SENSITIVE: []
527
+ end
528
+
529
+ class SecurityConfigurationData
530
+ attr_accessor authorization_configuration: Types::AuthorizationConfiguration
531
+ SENSITIVE: []
532
+ end
533
+
449
534
  class SparkSqlJobDriver
450
535
  attr_accessor entry_point: ::String
451
536
  attr_accessor spark_sql_parameters: ::String
@@ -482,6 +567,13 @@ module Aws::EMRContainers
482
567
  SENSITIVE: []
483
568
  end
484
569
 
570
+ class TLSCertificateConfiguration
571
+ attr_accessor certificate_provider_type: ("PEM")
572
+ attr_accessor public_certificate_secret_arn: ::String
573
+ attr_accessor private_certificate_secret_arn: ::String
574
+ SENSITIVE: []
575
+ end
576
+
485
577
  class TagResourceRequest
486
578
  attr_accessor resource_arn: ::String
487
579
  attr_accessor tags: ::Hash[::String, ::String]
@@ -519,6 +611,7 @@ module Aws::EMRContainers
519
611
  attr_accessor container_provider: Types::ContainerProvider
520
612
  attr_accessor created_at: ::Time
521
613
  attr_accessor tags: ::Hash[::String, ::String]
614
+ attr_accessor security_configuration_id: ::String
522
615
  SENSITIVE: []
523
616
  end
524
617
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.33.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: 2024-04-04 00:00:00.000000000 Z
11
+ date: 2024-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core