Module Values.ApplicationSummarySource

The summary of attributes associated with an application.

Sourcetype nonrec t = {
  1. id : ApplicationId.t option;
    (*

    The ID of the application.

    *)
  2. name : ApplicationName.t option;
    (*

    The name of the application.

    *)
  3. arn : ApplicationArn.t option;
    (*

    The ARN of the application.

    *)
  4. releaseLabel : ReleaseLabel.t option;
    (*

    The Amazon EMR release associated with the application.

    *)
  5. type_ : EngineType.t option;
    (*

    The type of application, such as Spark or Hive.

    *)
  6. state : ApplicationState.t option;
    (*

    The state of the application.

    *)
  7. stateDetails : String256.t option;
    (*

    The state details of the application.

    *)
  8. createdAt : Date.t option;
    (*

    The date and time when the application was created.

    *)
  9. updatedAt : Date.t option;
    (*

    The date and time when the application was last updated.

    *)
  10. architecture : Architecture.t option;
    (*

    The CPU architecture of an application.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?releaseLabel:??? -> ?type_:??? -> ?state:??? -> ?stateDetails:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?architecture:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationId.t | `Timestamp of Date.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