Update Logging Configuration
ivschat_update_logging_configuration | R Documentation |
Updates a specified logging configuration¶
Description¶
Updates a specified logging configuration.
Usage¶
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
, ors3
) in adestinationConfiguration
.
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"
)
)