Module Values.UpdateDevEnvironmentResponseSource

Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart.

Sourcetype nonrec t = {
  1. id : Uuid.t option;
    (*

    The system-generated unique ID of the Dev Environment.

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

    The name of the space.

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

    The name of the project in the space.

    *)
  4. alias : UpdateDevEnvironmentResponseAliasString.t option;
    (*

    The user-specified alias for the Dev Environment.

    *)
  5. ides : IdeConfigurationList.t option;
    (*

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

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

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

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

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

    *)
  8. clientToken : ClientToken.t option;
    (*

    A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.

    *)
}
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 : ?id:??? -> ?spaceName:??? -> ?projectName:??? -> ?alias:??? -> ?ides:??? -> ?instanceType:??? -> ?inactivityTimeoutMinutes:??? -> ?clientToken:??? -> 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 IdeConfigurationRuntimeString.t ]) list ] list | `String of Uuid.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