Module Values.EnvironmentSummarySource

A list of environments with summarized environment details.

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t option;
    (*

    A unique ID for the environment.

    *)
  2. environmentName : EnvironmentName.t option;
    (*

    The name of the environment.

    *)
  3. vcfVersion : VcfVersion.t option;
    (*

    The VCF version of the environment.

    *)
  4. environmentStatus : CheckResult.t option;
    (*

    Reports impaired functionality that stems from issues internal to the environment, such as impaired reachability.

    *)
  5. environmentState : EnvironmentState.t option;
    (*

    The state of an environment.

    *)
  6. createdAt : Timestamp.t option;
    (*

    The date and time that the environment was created.

    *)
  7. modifiedAt : Timestamp.t option;
    (*

    The date and time that the environment was modified.

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

    The Amazon Resource Name (ARN) that is associated with the environment.

    *)
}
Sourceval make : ?environmentId:??? -> ?environmentName:??? -> ?vcfVersion:??? -> ?environmentStatus:??? -> ?environmentState:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?environmentArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EnvironmentId.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