Module Values.DeleteApplicationCloudWatchLoggingOptionRequestSource

Deletes an Amazon CloudWatch log stream from an SQL-based Kinesis Data Analytics application.

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

    The application name.

    *)
  2. currentApplicationVersionId : ApplicationVersionId.t option;
    (*

    The version ID of the application. You must provide the CurrentApplicationVersionId or the ConditionalToken. You can retrieve the application version ID using DescribeApplication. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

    *)
  3. cloudWatchLoggingOptionId : Id.t;
    (*

    The CloudWatchLoggingOptionId of the Amazon CloudWatch logging option to delete. You can get the CloudWatchLoggingOptionId by using the DescribeApplication operation.

    *)
  4. conditionalToken : ConditionalToken.t option;
    (*

    A value you use to implement strong concurrency for application updates. You must provide the CurrentApplicationVersionId or the ConditionalToken. You get the application's current ConditionalToken using DescribeApplication. For better concurrency support, use the ConditionalToken parameter instead of CurrentApplicationVersionId.

    *)
}
Sourceval context_ : string
Sourceval make : ?currentApplicationVersionId:??? -> ?conditionalToken:??? -> applicationName:ApplicationName.t -> cloudWatchLoggingOptionId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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