Module Values.UpdateProjectRequestSource

Represents a request to the update project operation.

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

    The Amazon Resource Name (ARN) of the project whose name to update.

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

    A string that represents the new name of the project that you are updating.

    *)
  3. defaultJobTimeoutMinutes : JobTimeoutMinutes.t option;
    (*

    The number of minutes a test run in the project executes before it times out.

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

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

    *)
  5. environmentVariables : EnvironmentVariables.t option;
    (*

    A set of environment variables which are used by default for all runs in the project. These environment variables are applied to the test run during the execution of a test spec file. For more information about using test spec files, please see Custom test environments in AWS Device Farm.

    *)
  6. executionRoleArn : AmazonRoleResourceName.t option;
    (*

    An IAM role to be assumed by the test host for all runs in the project.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?defaultJobTimeoutMinutes:??? -> ?vpcConfig:??? -> ?environmentVariables:??? -> ?executionRoleArn:??? -> arn:AmazonResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of JobTimeoutMinutes.t | `List of [> `Structure of (string * [> `String of EnvironmentVariableName.t ]) list ] list | `String of AmazonResourceName.t | `Structure of (string * [> `List of [> `String of SecurityGroupId.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