Describe Delivery Sources
| cloudwatchlogs_describe_delivery_sources | R Documentation |
Retrieves a list of the delivery sources that have been created in the account¶
Description¶
Retrieves a list of the delivery sources that have been created in the account.
Usage¶
cloudwatchlogs_describe_delivery_sources(nextToken, limit)
Arguments¶
nextToken |
The token for the next set of items to return. The token expires after 24 hours. |
limit |
Optionally specify the maximum number of delivery sources to return in the response. |
Value¶
A list with the following syntax:
list(
deliverySources = list(
list(
name = "string",
arn = "string",
resourceArns = list(
"string"
),
service = "string",
logType = "string",
tags = list(
"string"
),
deliverySourceConfiguration = list(
"string"
),
status = "ACTIVE"|"INACTIVE",
statusReason = "RESOURCE_DELETED"
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_delivery_sources(
nextToken = "string",
limit = 123
)