Module Values.GetChannelResponseSource

Returns information about a specific channel.

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

    The ARN of an channel returned by a GetChannel request.

    *)
  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 generated by the Amazon Web Services service.

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

    The source for the CloudTrail channel.

    *)
  4. sourceConfig : SourceConfig.t option;
    (*

    Provides information about the advanced event selectors configured for the channel, and whether the channel applies to all Regions or a single Region.

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

    The destinations for the channel. For channels created for integrations, the destinations are the event data stores that log events arriving through the channel. For service-linked channels, the destination is the Amazon Web Services service that created the service-linked channel to receive events.

    *)
  6. ingestionStatus : IngestionStatus.t option;
    (*

    A table showing information about the most recent successful and failed attempts to ingest events.

    *)
}
Sourcetype nonrec error = [
  1. | `ChannelARNInvalidException of ChannelARNInvalidException.t
  2. | `ChannelNotFoundException of ChannelNotFoundException.t
  3. | `OperationNotPermittedException of OperationNotPermittedException.t
  4. | `UnsupportedOperationException of UnsupportedOperationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?channelArn:??? -> ?name:??? -> ?source:??? -> ?sourceConfig:??? -> ?destinations:??? -> ?ingestionStatus:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ChannelARNInvalidException of unit | `ChannelNotFoundException 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 | `ChannelNotFoundException 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 | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of OperatorValue.t ] list | `String of SelectorField.t ]) list ] list | `String of SelectorName.t ]) list ] list | `String of UUID.t | `Timestamp of Date.t ]) 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