Interface CfnSecurityConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)",
date="2026-02-03T13:58:23.408Z")
@Stability(Stable)
public interface CfnSecurityConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSecurityConfiguration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.emrcontainers.*;
CfnSecurityConfigurationProps cfnSecurityConfigurationProps = CfnSecurityConfigurationProps.builder()
.securityConfigurationData(SecurityConfigurationDataProperty.builder()
.authenticationConfiguration(AuthenticationConfigurationProperty.builder()
.iamConfiguration(Map.of(
"systemRole", "systemRole"))
.identityCenterConfiguration(IdentityCenterConfigurationProperty.builder()
.enableIdentityCenter(false)
.identityCenterApplicationAssignmentRequired(false)
.identityCenterInstanceArn("identityCenterInstanceArn")
.build())
.build())
.authorizationConfiguration(AuthorizationConfigurationProperty.builder()
.lakeFormationConfiguration(LakeFormationConfigurationProperty.builder()
.authorizedSessionTagValue("authorizedSessionTagValue")
.queryAccessControlEnabled(false)
.queryEngineRoleArn("queryEngineRoleArn")
.secureNamespaceInfo(SecureNamespaceInfoProperty.builder()
.clusterId("clusterId")
.namespace("namespace")
.build())
.build())
.build())
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.atRestEncryptionConfiguration(AtRestEncryptionConfigurationProperty.builder()
.localDiskEncryptionConfiguration(LocalDiskEncryptionConfigurationProperty.builder()
.awsKmsKeyId("awsKmsKeyId")
.encryptionKeyProviderType("encryptionKeyProviderType")
.build())
.s3EncryptionConfiguration(S3EncryptionConfigurationProperty.builder()
.encryptionOption("encryptionOption")
.kmsKeyId("kmsKeyId")
.build())
.build())
.inTransitEncryptionConfiguration(InTransitEncryptionConfigurationProperty.builder()
.tlsCertificateConfiguration(TLSCertificateConfigurationProperty.builder()
.certificateProviderType("certificateProviderType")
.privateKeySecretArn("privateKeySecretArn")
.publicKeySecretArn("publicKeySecretArn")
.build())
.build())
.build())
.build())
// the properties below are optional
.containerProvider(ContainerProviderProperty.builder()
.id("id")
.type("type")
// the properties below are optional
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityConfigurationPropsstatic final classAn implementation forCfnSecurityConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectContainer provider information.default StringgetName()The name of the security configuration.Security configuration data containing encryption and authorization settings.getTags()An array of key-value pairs to apply to this security configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityConfigurationData
Security configuration data containing encryption and authorization settings.Returns union: either
IResolvableorCfnSecurityConfiguration.SecurityConfigurationDataProperty- See Also:
-
getContainerProvider
Container provider information.Returns union: either
IResolvableorCfnSecurityConfiguration.ContainerProviderProperty- See Also:
-
getName
The name of the security configuration.- See Also:
-
getTags
An array of key-value pairs to apply to this security configuration.- See Also:
-
builder
-