Module Values.CreateMicrosoftADRequestSource

Creates an Managed Microsoft AD directory.

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

    The fully qualified domain name for the Managed Microsoft AD directory, such as corp.example.com. This name will resolve inside your VPC only. It does not need to be publicly resolvable.

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

    The NetBIOS name for your domain, such as CORP. If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example, CORP for the directory DNS corp.example.com.

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

    The password for the default administrative user named Admin. If you need to change the password for the administrator account, you can use the ResetUserPassword API call.

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

    A description for the directory. This label will appear on the Amazon Web Services console Directory Details page after the directory is created.

    *)
  5. vpcSettings : DirectoryVpcSettings.t;
    (*

    Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

    *)
  6. edition : DirectoryEdition.t option;
    (*

    Managed Microsoft AD is available in two editions: Standard and Enterprise. Enterprise is the default.

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

    The tags to be assigned to the Managed Microsoft AD directory.

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

    The network type for your domain. The default value is IPv4 or IPv6 based on the provided subnet capabilities.

    *)
}
Sourceval context_ : string
Sourceval make : ?shortName:??? -> ?description:??? -> ?edition:??? -> ?tags:??? -> ?networkType:??? -> name:DirectoryName.t -> password:Password.t -> vpcSettings:DirectoryVpcSettings.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