public static interface EmrCreateCluster.KerberosAttributesProperty
See the RunJobFlow API for complete documentation on input parameters
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.stepfunctions.tasks.*; KerberosAttributesProperty kerberosAttributesProperty = KerberosAttributesProperty.builder() .realm("realm") // the properties below are optional .adDomainJoinPassword("adDomainJoinPassword") .adDomainJoinUser("adDomainJoinUser") .crossRealmTrustPrincipalPassword("crossRealmTrustPrincipalPassword") .kdcAdminPassword("kdcAdminPassword") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
EmrCreateCluster.KerberosAttributesProperty.Builder
A builder for
EmrCreateCluster.KerberosAttributesProperty |
static class |
EmrCreateCluster.KerberosAttributesProperty.Jsii$Proxy
An implementation for
EmrCreateCluster.KerberosAttributesProperty |
Modifier and Type | Method and Description |
---|---|
static EmrCreateCluster.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.
|
default 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 getRealm()
For example, EC2.INTERNAL.
default java.lang.String getAdDomainJoinPassword()
Default: No adDomainJoinPassword
default java.lang.String getAdDomainJoinUser()
A user with sufficient privileges to join resources to the domain.
Default: No adDomainJoinUser
default java.lang.String getCrossRealmTrustPrincipalPassword()
The cross-realm principal password, which must be identical across realms.
Default: No crossRealmTrustPrincipalPassword
default java.lang.String getKdcAdminPassword()
Default: No kdcAdminPassword
static EmrCreateCluster.KerberosAttributesProperty.Builder builder()