Module Values.ApplicationSummarySource

This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see Amazon Kinesis Data Analytics API V2 Documentation. Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.

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

    Name of the application.

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

    ARN of the application.

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

    Status of the application.

    *)
}
Sourceval make : ?applicationName:??? -> ?applicationARN:??? -> ?applicationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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