Module Values.CreateTestGridProjectRequestSource

Creates a Selenium testing project. Projects are used to track TestGridSession instances.

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

    Human-readable name of the Selenium testing project.

    *)
  2. description : ResourceDescription.t option;
    (*

    Human-readable description of the project.

    *)
  3. vpcConfig : TestGridVpcConfig.t option;
    (*

    The VPC security groups and subnets that are attached to a project.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?vpcConfig:??? -> name:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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