Module Values.ServiceEnvironmentDetailSource

Detailed information about a service environment, including its configuration, state, and capacity limits.

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

    The name of the service environment.

    *)
  2. serviceEnvironmentArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the service environment.

    *)
  3. serviceEnvironmentType : ServiceEnvironmentType.t option;
    (*

    The type of service environment. For SageMaker Training jobs, this value is SAGEMAKER_TRAINING.

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

    The state of the service environment. Valid values are ENABLED and DISABLED.

    *)
  5. status : ServiceEnvironmentStatus.t option;
    (*

    The current status of the service environment.

    *)
  6. 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.

    *)
  7. tags : TagrisTagsMap.t option;
    (*

    The tags associated with the service environment. Each tag consists of a key and an optional value. For more information, see Tagging your Batch resources.

    *)
}
Sourceval make : ?serviceEnvironmentName:??? -> ?serviceEnvironmentArn:??? -> ?serviceEnvironmentType:??? -> ?state:??? -> ?status:??? -> ?capacityLimits:??? -> ?tags:??? -> 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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) 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