Module Values.KerberosAttributesSource

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the Amazon EMR Management Guide.

Sourcetype nonrec t = {
  1. realm : XmlStringMaxLen256.t;
    (*

    The name of the Kerberos realm to which all nodes in a cluster belong. For example, EC2.INTERNAL.

    *)
  2. kdcAdminPassword : XmlStringMaxLen256.t;
    (*

    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.

    *)
  3. crossRealmTrustPrincipalPassword : XmlStringMaxLen256.t option;
    (*

    Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms.

    *)
  4. aDDomainJoinUser : XmlStringMaxLen256.t option;
    (*

    Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain.

    *)
  5. aDDomainJoinPassword : XmlStringMaxLen256.t option;
    (*

    The Active Directory password for ADDomainJoinUser.

    *)
}
Sourceval context_ : string
Sourceval make : ?crossRealmTrustPrincipalPassword:??? -> ?aDDomainJoinUser:??? -> ?aDDomainJoinPassword:??? -> realm:XmlStringMaxLen256.t -> kdcAdminPassword:XmlStringMaxLen256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of XmlStringMaxLen256.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t