Module Values.AddApplicationOutputRequestSource

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

    Name of the application to which you want to add the output configuration.

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

    Version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.

    *)
  3. output : Output.t;
    (*

    An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.

    *)
}
Sourceval context_ : string
Sourceval make : applicationName:ApplicationName.t -> currentApplicationVersionId:ApplicationVersionId.t -> output:Output.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ApplicationVersionId.t | `String of ApplicationName.t | `Structure of (string * [> `String of InAppStreamName.t | `Structure of (string * [> `Enum of string | `String of ResourceARN.t ]) list ]) list ]) 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