Module DirectoryService.MicrosoftAD

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

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

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

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

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

val make_properties : ?create_alias:bool -> ?edition:string -> ?enable_sso:bool -> name:string -> password:string -> ?short_name:string -> vpc_settings:vpc_settings -> unit -> properties
val make_vpc_settings : subnet_ids:string list -> vpc_id:string -> 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. alias : string;
  3. dns_ip_addresses : string list;
}
val create_attributes : string -> attributes
val cloudformation_type : string