public static interface CfnCluster.KerberosAttributesProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCluster.KerberosAttributesProperty.Builder
A builder for
CfnCluster.KerberosAttributesProperty |
static class |
CfnCluster.KerberosAttributesProperty.Jsii$Proxy
An implementation for
CfnCluster.KerberosAttributesProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCluster.KerberosAttributesProperty.Builder |
builder() |
default java.lang.String |
getAdDomainJoinPassword()
The Active Directory password for `ADDomainJoinUser` .
|
default java.lang.String |
getAdDomainJoinUser()
Required only when establishing a cross-realm trust with an Active Directory domain.
|
default java.lang.String |
getCrossRealmTrustPrincipalPassword()
Required only when establishing a cross-realm trust with a KDC in a different realm.
|
java.lang.String |
getKdcAdminPassword()
The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster.
|
java.lang.String |
getRealm()
The name of the Kerberos realm to which all nodes in a cluster belong.
|
java.lang.String getKdcAdminPassword()
java.lang.String getRealm()
For example, EC2.INTERNAL
.
default java.lang.String getAdDomainJoinPassword()
default java.lang.String getAdDomainJoinUser()
A user with sufficient privileges to join resources to the domain.
default java.lang.String getCrossRealmTrustPrincipalPassword()
The cross-realm principal password, which must be identical across realms.
static CfnCluster.KerberosAttributesProperty.Builder builder()