Module Values.UpdateChannelRequestSource

Updates a channel specified by a required channel ARN or UUID.

Sourcetype nonrec t = {
  1. channel : ChannelArn.t;
    (*

    The ARN or ID (the ARN suffix) of the channel that you want to update.

    *)
  2. destinations : Destinations.t option;
    (*

    The ARNs of event data stores that you want to log events arriving through the channel.

    *)
  3. name : ChannelName.t option;
    (*

    Changes the name of the channel.

    *)
}
Sourceval context_ : string
Sourceval make : ?destinations:??? -> ?name:??? -> channel:ChannelArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of Location.t ]) list ] list | `String of ChannelArn.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