Module Values.StartDevEnvironmentRequestSource

Starts a specified Dev Environment and puts it into an active state.

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

    The name of the space.

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

    The name of the project in the space.

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

    The system-generated unique ID of the Dev Environment.

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

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

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

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

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

    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.

    *)
}
Sourceval context_ : string
Sourceval make : ?ides:??? -> ?instanceType:??? -> ?inactivityTimeoutMinutes:??? -> spaceName:NameString.t -> projectName:NameString.t -> id:Uuid.t -> unit -> 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 NameString.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