Module Values.ChannelSource

Contains information about a returned CloudTrail channel.

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

    The Amazon Resource Name (ARN) of a channel.

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

    The name of the CloudTrail channel. For service-linked channels, the name is aws-service-channel/service-name/custom-suffix where service-name represents the name of the Amazon Web Services service that created the channel and custom-suffix represents the suffix created by the Amazon Web Services service.

    *)
}
Sourceval make : ?channelArn:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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