Skip to content

Get Channel

cloudtrail_get_channel R Documentation

Returns information about a specific channel

Description

Returns information about a specific channel.

Usage

cloudtrail_get_channel(Channel)

Arguments

Channel

[required] The ARN or UUID of a channel.

Value

A list with the following syntax:

list(
  ChannelArn = "string",
  Name = "string",
  Source = "string",
  SourceConfig = list(
    ApplyToAllRegions = TRUE|FALSE,
    AdvancedEventSelectors = list(
      list(
        Name = "string",
        FieldSelectors = list(
          list(
            Field = "string",
            Equals = list(
              "string"
            ),
            StartsWith = list(
              "string"
            ),
            EndsWith = list(
              "string"
            ),
            NotEquals = list(
              "string"
            ),
            NotStartsWith = list(
              "string"
            ),
            NotEndsWith = list(
              "string"
            )
          )
        )
      )
    )
  ),
  Destinations = list(
    list(
      Type = "EVENT_DATA_STORE"|"AWS_SERVICE",
      Location = "string"
    )
  ),
  IngestionStatus = list(
    LatestIngestionSuccessTime = as.POSIXct(
      "2015-01-01"
    ),
    LatestIngestionSuccessEventID = "string",
    LatestIngestionErrorCode = "string",
    LatestIngestionAttemptTime = as.POSIXct(
      "2015-01-01"
    ),
    LatestIngestionAttemptEventID = "string"
  )
)

Request syntax

svc$get_channel(
  Channel = "string"
)