Module Values.ApplicationDetailSource

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 a description of the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configuration.

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

    Name of the application.

    *)
  2. applicationDescription : ApplicationDescription.t option;
    (*

    Description of the application.

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

    ARN of the application.

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

    Status of the application.

    *)
  5. createTimestamp : Timestamp.t option;
    (*

    Time stamp when the application version was created.

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

    Time stamp when the application was last updated.

    *)
  7. inputDescriptions : InputDescriptions.t option;
    (*

    Describes the application input configuration. For more information, see Configuring Application Input.

    *)
  8. outputDescriptions : OutputDescriptions.t option;
    (*

    Describes the application output configuration. For more information, see Configuring Application Output.

    *)
  9. referenceDataSourceDescriptions : ReferenceDataSourceDescriptions.t option;
    (*

    Describes reference data sources configured for the application. For more information, see Configuring Application Input.

    *)
  10. cloudWatchLoggingOptionDescriptions : CloudWatchLoggingOptionDescriptions.t option;
    (*

    Describes the CloudWatch log streams that are configured to receive application messages. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see Working with Amazon CloudWatch Logs.

    *)
  11. applicationCode : ApplicationCode.t option;
    (*

    Returns the application code that you provided to perform data analysis on any of the in-application streams in your application.

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

    Provides the current application version.

    *)
}
Sourceval make : ?applicationName:??? -> ?applicationDescription:??? -> ?applicationARN:??? -> ?applicationStatus:??? -> ?createTimestamp:??? -> ?lastUpdateTimestamp:??? -> ?inputDescriptions:??? -> ?outputDescriptions:??? -> ?referenceDataSourceDescriptions:??? -> ?cloudWatchLoggingOptionDescriptions:??? -> ?applicationCode:??? -> ?applicationVersionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of InAppStreamName.t ] list | `String of Id.t | `Structure of (string * [> `Enum of string | `Integer of InputParallelismCount.t | `List of [> `Structure of (string * [> `String of RecordColumnName.t ]) list ] list | `String of ResourceARN.t | `Structure of (string * [> `Enum of string | `String of ResourceARN.t | `Structure of (string * [> `Structure of (string * [> `String of RecordRowPath.t ]) list ]) list ]) list ]) list ]) list ] list | `Long of ApplicationVersionId.t | `String of ApplicationName.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