Interface CfnCluster.KerberosAttributesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.KerberosAttributesProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.KerberosAttributesProperty extends software.amazon.jsii.JsiiSerializable
KerberosAttributes is a property of the AWS::EMR::Cluster resource.

KerberosAttributes define the cluster-specific Kerberos configuration when Kerberos authentication is enabled using a security configuration. The cluster-specific configuration must be compatible with the security configuration. For more information see Use Kerberos Authentication in the EMR Management Guide .

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.emr.*;
 KerberosAttributesProperty kerberosAttributesProperty = KerberosAttributesProperty.builder()
         .kdcAdminPassword("kdcAdminPassword")
         .realm("realm")
         // the properties below are optional
         .adDomainJoinPassword("adDomainJoinPassword")
         .adDomainJoinUser("adDomainJoinUser")
         .crossRealmTrustPrincipalPassword("crossRealmTrustPrincipalPassword")
         .build();
 

See Also: