Module Values.DirectoryVpcSettingsDescriptionSource

Contains information about the directory.

Sourcetype nonrec t = {
  1. vpcId : VpcId.t option;
    (*

    The identifier of the VPC that the directory is in.

    *)
  2. subnetIds : SubnetIds.t option;
    (*

    The identifiers of the subnets for the directory servers.

    *)
  3. securityGroupId : SecurityGroupId.t option;
    (*

    The domain controller security group identifier for the directory.

    *)
  4. availabilityZones : AvailabilityZones.t option;
    (*

    The list of Availability Zones that the directory is in.

    *)
}
Sourceval make : ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupId:??? -> ?availabilityZones:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of VpcId.t ]) 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