Module Values.CreateProjectRequestSource

Represents a request to the create project operation.

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

    The project's name.

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

    Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.

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

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

    *)
  4. 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.

    *)
  5. 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 : ?defaultJobTimeoutMinutes:??? -> ?vpcConfig:??? -> ?environmentVariables:??? -> ?executionRoleArn:??? -> name:Name.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 Name.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