Module Values.ApplicationSummarySource

Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t option;
    (*

    The name of the application.

    *)
  2. applicationARN : ResourceARN.t option;
    (*

    The ARN of the application.

    *)
  3. applicationStatus : ApplicationStatus.t option;
    (*

    The status of the application.

    *)
  4. applicationVersionId : ApplicationVersionId.t option;
    (*

    Provides the current application version.

    *)
  5. runtimeEnvironment : RuntimeEnvironment.t option;
    (*

    The runtime environment for the application.

    *)
  6. applicationMode : ApplicationMode.t option;
    (*

    For a Managed Service for Apache Flink application, the mode is STREAMING. For a Managed Service for Apache Flink Studio notebook, it is INTERACTIVE.

    *)
}
Sourceval make : ?applicationName:??? -> ?applicationARN:??? -> ?applicationStatus:??? -> ?applicationVersionId:??? -> ?runtimeEnvironment:??? -> ?applicationMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ApplicationVersionId.t | `String of ApplicationName.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