Skip to content

Update Logging Configuration

ivschat_update_logging_configuration R Documentation

Updates a specified logging configuration

Description

Updates a specified logging configuration.

Usage

ivschat_update_logging_configuration(identifier, name,
  destinationConfiguration)

Arguments

identifier

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

name

Logging-configuration name. The value does not need to be unique.

destinationConfiguration

A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.

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 = "ACTIVE",
  tags = list(
    "string"
  )
)

Request syntax

svc$update_logging_configuration(
  identifier = "string",
  name = "string",
  destinationConfiguration = list(
    s3 = list(
      bucketName = "string"
    ),
    cloudWatchLogs = list(
      logGroupName = "string"
    ),
    firehose = list(
      deliveryStreamName = "string"
    )
  )
)