Module Values.CreateDirectoryRequestSource

Contains the inputs for the CreateDirectory operation.

Sourcetype nonrec t = {
  1. name : DirectoryName.t;
    (*

    The fully qualified name for the directory, such as corp.example.com.

    *)
  2. shortName : DirectoryShortName.t option;
    (*

    The NetBIOS name of the directory, such as CORP.

    *)
  3. password : Password.t;
    (*

    The password for the directory administrator. The directory creation process creates a directory administrator account with the user name Administrator and this password. If you need to change the password for the administrator account, you can use the ResetUserPassword API call. The regex pattern for this string is made up of the following conditions: Length (?=^.{8,64}$) – Must be between 8 and 64 characters AND any 3 of the following password complexity rules required by Active Directory: Numbers and upper case and lowercase (?=.*\d)(?=.*[A-Z])(?=.*[a-z]) Numbers and special characters and lower case (?=.*\d)(?=.*[^A-Za-z0-9\s])(?=.*[a-z]) Special characters and upper case and lower case (?=.*[^A-Za-z0-9\s])(?=.*[A-Z])(?=.*[a-z]) Numbers and upper case and special characters (?=.*\d)(?=.*[A-Z])(?=.*[^A-Za-z0-9\s]) For additional information about how Active Directory passwords are enforced, see Password must meet complexity requirements on the Microsoft website.

    *)
  4. description : Description.t option;
    (*

    A description for the directory.

    *)
  5. size : DirectorySize.t;
    (*

    The size of the directory.

    *)
  6. vpcSettings : DirectoryVpcSettings.t option;
    (*

    A DirectoryVpcSettings object that contains additional information for the operation.

    *)
  7. tags : Tags.t option;
    (*

    The tags to be assigned to the Simple AD directory.

    *)
  8. networkType : NetworkType.t option;
    (*

    The network type for your directory. Simple AD supports IPv4 and Dual-stack only.

    *)
}
Sourceval context_ : string
Sourceval make : ?shortName:??? -> ?description:??? -> ?vpcSettings:??? -> ?tags:??? -> ?networkType:??? -> name:DirectoryName.t -> password:Password.t -> size:DirectorySize.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of DirectoryName.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcId.t ]) list ]) 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