Module Values.UpdateChannelResponseSource

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

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

    The ARN of the channel that was updated.

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

    The name of the channel that was updated.

    *)
  3. source : Source.t option;
    (*

    The event source of the channel that was updated.

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

    The event data stores that log events arriving through the channel.

    *)
}
Sourcetype nonrec error = [
  1. | `ChannelARNInvalidException of ChannelARNInvalidException.t
  2. | `ChannelAlreadyExistsException of ChannelAlreadyExistsException.t
  3. | `ChannelNotFoundException of ChannelNotFoundException.t
  4. | `EventDataStoreARNInvalidException of EventDataStoreARNInvalidException.t
  5. | `EventDataStoreNotFoundException of EventDataStoreNotFoundException.t
  6. | `InactiveEventDataStoreException of InactiveEventDataStoreException.t
  7. | `InvalidEventDataStoreCategoryException of InvalidEventDataStoreCategoryException.t
  8. | `InvalidParameterException of InvalidParameterException.t
  9. | `OperationNotPermittedException of OperationNotPermittedException.t
  10. | `UnsupportedOperationException of UnsupportedOperationException.t
  11. | `Unknown_operation_error of string * string option
]
Sourceval make : ?channelArn:??? -> ?name:??? -> ?source:??? -> ?destinations:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ChannelARNInvalidException of unit | `ChannelAlreadyExistsException of unit | `ChannelNotFoundException of unit | `EventDataStoreARNInvalidException of unit | `EventDataStoreNotFoundException of unit | `InactiveEventDataStoreException of unit | `InvalidEventDataStoreCategoryException of unit | `InvalidParameterException of unit | `OperationNotPermittedException of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ChannelARNInvalidException of unit | `ChannelAlreadyExistsException of unit | `ChannelNotFoundException of unit | `EventDataStoreARNInvalidException of unit | `EventDataStoreNotFoundException of unit | `InactiveEventDataStoreException of unit | `InvalidEventDataStoreCategoryException of unit | `InvalidParameterException of unit | `OperationNotPermittedException of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.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