Skip to content

Get Logging Configuration

ivschat_get_logging_configuration R Documentation

Gets the specified logging configuration

Description

Gets the specified logging configuration.

Usage

ivschat_get_logging_configuration(identifier)

Arguments

identifier

[required] Identifier of the logging configuration to be retrieved.

Value

A list with the following syntax:

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

Request syntax

svc$get_logging_configuration(
  identifier = "string"
)