Module Values.EnvironmentSummarySource

Contains a subset of the possible runtime environment attributes. Used in the environment list.

Sourcetype nonrec t = {
  1. creationTime : Timestamp.t option;
    (*

    The timestamp when the runtime environment was created.

    *)
  2. engineType : EngineType.t option;
    (*

    The target platform for the runtime environment.

    *)
  3. engineVersion : EngineVersion.t option;
    (*

    The version of the runtime engine.

    *)
  4. environmentArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of a particular runtime environment.

    *)
  5. environmentId : Identifier.t option;
    (*

    The unique identifier of a particular runtime environment.

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

    The instance type of the runtime environment.

    *)
  7. name : EntityName.t option;
    (*

    The name of the runtime environment.

    *)
  8. networkType : NetworkType.t option;
    (*

    The network type supported by the runtime environment.

    *)
  9. status : EnvironmentLifecycle.t option;
    (*

    The status of the runtime environment

    *)
}
Sourceval make : ?creationTime:??? -> ?engineType:??? -> ?engineVersion:??? -> ?environmentArn:??? -> ?environmentId:??? -> ?instanceType:??? -> ?name:??? -> ?networkType:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EngineVersion.t | `Timestamp of Timestamp.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