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¶
Arguments¶
nextToken
The first logging configurations to retrieve. This is used for pagination; see the
nextToken
response field.maxResults
Maximum number of logging configurations to return. Default: 50.
Value¶
A list with the following syntax:
list(
loggingConfigurations = list(
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"
)
)
),
nextToken = "string"
)