Skip to content

List Logging Configurations

ivschat_list_logging_configurations R Documentation

Gets summary information about all your logging configurations in the AWS region where the API request is processed

Description

Gets summary information about all your logging configurations in the AWS region where the API request is processed.

Usage

ivschat_list_logging_configurations(maxResults, nextToken)

Arguments

maxResults

Maximum number of logging configurations to return. Default: 50.

nextToken

The first logging configurations to retrieve. This is used for pagination; see the nextToken response field.

Value

A list with the following syntax:

list(
  loggingConfigurations = list(
    list(
      arn = "string",
      createTime = as.POSIXct(
        "2015-01-01"
      ),
      destinationConfiguration = list(
        cloudWatchLogs = list(
          logGroupName = "string"
        ),
        firehose = list(
          deliveryStreamName = "string"
        ),
        s3 = list(
          bucketName = "string"
        )
      ),
      id = "string",
      name = "string",
      state = "CREATING"|"CREATE_FAILED"|"DELETING"|"DELETE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"ACTIVE",
      tags = list(
        "string"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_logging_configurations(
  maxResults = 123,
  nextToken = "string"
)