Describe Deliveries
| cloudwatchlogs_describe_deliveries | R Documentation |
Retrieves a list of the deliveries that have been created in the account¶
Description¶
Retrieves a list of the deliveries that have been created in the account.
A delivery is a connection between a delivery source and a delivery destination .
A delivery source represents an Amazon Web Services resource that sends logs to an logs delivery destination. The destination can be CloudWatch Logs, Amazon S3, Firehose or X-Ray. Only some Amazon Web Services services support being configured as a delivery source. These services are listed in Enable logging from Amazon Web Services services.
Usage¶
cloudwatchlogs_describe_deliveries(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 deliveries to return in the response. |
Value¶
A list with the following syntax:
list(
deliveries = list(
list(
id = "string",
arn = "string",
deliverySourceName = "string",
deliveryDestinationArn = "string",
deliveryDestinationType = "S3"|"CWL"|"FH"|"XRAY",
recordFields = list(
"string"
),
fieldDelimiter = "string",
s3DeliveryConfiguration = list(
suffixPath = "string",
enableHiveCompatiblePath = TRUE|FALSE
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_deliveries(
nextToken = "string",
limit = 123
)