Module DirectoryService.SimpleAD

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html

type vpc_settings = {
  1. vpc_id : string;
  2. subnet_ids : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html

type properties = {
  1. description : string option;
  2. vpc_settings : vpc_settings;
  3. size : string;
  4. create_alias : bool option;
  5. enable_sso : bool option;
  6. short_name : string option;
  7. name : string;
  8. password : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html;

val make_properties : ?description:string -> vpc_settings:vpc_settings -> size:string -> ?create_alias:bool -> ?enable_sso:bool -> ?short_name:string -> name:string -> ?password:string -> unit -> properties
val make_vpc_settings : vpc_id:string -> subnet_ids:string list -> unit -> vpc_settings
val yojson_of_vpc_settings : vpc_settings -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. directory_id : string;
  3. alias : string;
  4. dns_ip_addresses : string list;
}
val create_attributes : string -> attributes
val cloudformation_type : string