Module Values.GetDevEnvironmentResponseSource

Returns information about a Dev Environment for a source repository in a project. Dev Environments are specific to the user who creates them.

Sourcetype nonrec t = {
  1. spaceName : NameString.t option;
    (*

    The name of the space.

    *)
  2. projectName : NameString.t option;
    (*

    The name of the project in the space.

    *)
  3. id : Uuid.t option;
    (*

    The system-generated unique ID of the Dev Environment.

    *)
  4. lastUpdatedTime : SyntheticTimestamp_date_time.t option;
    (*

    The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

    *)
  5. creatorId : GetDevEnvironmentResponseCreatorIdString.t option;
    (*

    The system-generated unique ID of the user who created the Dev Environment.

    *)
  6. status : DevEnvironmentStatus.t option;
    (*

    The current status of the Dev Environment.

    *)
  7. statusReason : StatusReason.t option;
    (*

    The reason for the status.

    *)
  8. repositories : DevEnvironmentRepositorySummaries.t option;
    (*

    The source repository that contains the branch cloned into the Dev Environment.

    *)
  9. alias : GetDevEnvironmentResponseAliasString.t option;
    (*

    The user-specified alias for the Dev Environment.

    *)
  10. ides : Ides.t option;
    (*

    Information about the integrated development environment (IDE) configured for the Dev Environment.

    *)
  11. instanceType : InstanceType.t option;
    (*

    The Amazon EC2 instace type to use for the Dev Environment.

    *)
  12. inactivityTimeoutMinutes : InactivityTimeoutMinutes.t option;
    (*

    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.

    *)
  13. persistentStorage : PersistentStorage.t option;
    (*

    Information about the amount of storage allocated to the Dev Environment. By default, a Dev Environment is configured to have 16GB of persistent storage.

    *)
  14. vpcConnectionName : NameString.t option;
    (*

    The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?spaceName:??? -> ?projectName:??? -> ?id:??? -> ?lastUpdatedTime:??? -> ?creatorId:??? -> ?status:??? -> ?statusReason:??? -> ?repositories:??? -> ?alias:??? -> ?ides:??? -> ?instanceType:??? -> ?inactivityTimeoutMinutes:??? -> ?persistentStorage:??? -> ?vpcConnectionName:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of InactivityTimeoutMinutes.t | `List of [> `Structure of (string * [> `String of SourceRepositoryNameString.t ]) list ] list | `String of NameString.t | `Structure of (string * [> `Integer of PersistentStorageSizeInGiBInteger.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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