Module Values.UpdateServiceEnvironmentRequestSource

Updates a service environment. You can update the state of a service environment from ENABLED to DISABLED to prevent new service jobs from being placed in the service environment.

Sourcetype nonrec t = {
  1. serviceEnvironment : String_.t;
    (*

    The name or ARN of the service environment to update.

    *)
  2. state : ServiceEnvironmentState.t option;
    (*

    The state of the service environment.

    *)
  3. capacityLimits : CapacityLimits.t option;
    (*

    The capacity limits for the service environment. This defines the maximum resources that can be used by service jobs in this environment.

    *)
}
Sourceval context_ : string
Sourceval make : ?state:??? -> ?capacityLimits:??? -> serviceEnvironment:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.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