Module Values.SelfManagedActiveDirectoryAttributesSource

The configuration of the self-managed Microsoft Active Directory (AD) directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.

Sourcetype nonrec t = {
  1. domainName : ActiveDirectoryFullyQualifiedName.t option;
    (*

    The fully qualified domain name of the self-managed AD directory.

    *)
  2. organizationalUnitDistinguishedName : OrganizationalUnitDistinguishedName.t option;
    (*

    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.

    *)
  3. fileSystemAdministratorsGroup : FileSystemAdministratorsGroupName.t option;
    (*

    The name of the domain group whose members have administrative privileges for the FSx file system.

    *)
  4. userName : DirectoryUserName.t option;
    (*

    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.

    *)
  5. dnsIps : DnsIps.t option;
    (*

    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.

    *)
  6. domainJoinServiceAccountSecret : CustomerSecretsManagerARN.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret containing the service account credentials used to join the file system to your self-managed Active Directory domain.

    *)
}
Sourceval make : ?domainName:??? -> ?organizationalUnitDistinguishedName:??? -> ?fileSystemAdministratorsGroup:??? -> ?userName:??? -> ?dnsIps:??? -> ?domainJoinServiceAccountSecret:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddress.t ] list | `String of ActiveDirectoryFullyQualifiedName.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