Module Values.ProjectSource

Represents an operating-system neutral workspace for running and managing tests.

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

    The project's ARN.

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

    The project's name.

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

    The default number of minutes (at the project level) a test run executes before it times out. The default value is 150 minutes.

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

    When the project was created.

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

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

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

    Environment variables associated with the project.

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

    The IAM execution role associated with the project.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?defaultJobTimeoutMinutes:??? -> ?created:??? -> ?vpcConfig:??? -> ?environmentVariables:??? -> ?executionRoleArn:??? -> 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 | `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