Module Values.TestGridProjectSource

A Selenium testing project. Projects are used to collect and collate sessions.

Sourcetype nonrec t = {
  1. arn : DeviceFarmArn.t option;
    (*

    The ARN for the project.

    *)
  2. name : String_.t option;
    (*

    A human-readable name for the project.

    *)
  3. description : String_.t option;
    (*

    A human-readable description for the project.

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

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

    *)
  5. created : DateTime.t option;
    (*

    When the project was created.

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