Module Values.CreateChannelRequestSource

Creates a channel for CloudTrail to ingest events from a partner or external source. After you create a channel, a CloudTrail Lake event data store can log events from the partner or source that you specify.

Sourcetype nonrec t = {
  1. name : ChannelName.t;
    (*

    The name of the channel.

    *)
  2. source : Source.t;
    (*

    The name of the partner or external event source. You cannot change this name after you create the channel. A maximum of one channel is allowed per source. A source can be either Custom for all valid non-Amazon Web Services events, or the name of a partner event source. For information about the source names for available partners, see Additional information about integration partners in the CloudTrail User Guide.

    *)
  3. destinations : Destinations.t;
    (*

    One or more event data stores to which events arriving through a channel will be logged.

    *)
  4. tags : TagsList.t option;
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:ChannelName.t -> source:Source.t -> destinations:Destinations.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 ChannelName.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