Module Values.ConnectDirectoryRequestSource

Contains the inputs for the ConnectDirectory operation.

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

    The fully qualified name of your self-managed directory, such as corp.example.com.

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

    The NetBIOS name of your self-managed directory, such as CORP.

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

    The password for your self-managed user account.

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

    A description for the directory.

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

    The size of the directory.

    *)
  6. connectSettings : DirectoryConnectSettings.t;
    (*

    A DirectoryConnectSettings object that contains additional information for the operation.

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

    The tags to be assigned to AD Connector.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?shortName:??? -> ?description:??? -> ?tags:??? -> ?networkType:??? -> name:DirectoryName.t -> password:ConnectPassword.t -> size:DirectorySize.t -> connectSettings:DirectoryConnectSettings.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