Module Values.UpdateTestGridProjectRequestSource

Change details of a project.

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

    ARN of the project to update.

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

    Human-readable name for the project.

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

    Human-readable description for the project.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?vpcConfig:??? -> projectArn:DeviceFarmArn.t -> 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 ]) 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