Describe Delivery Destinations
| cloudwatchlogs_describe_delivery_destinations | R Documentation | 
Retrieves a list of the delivery destinations that have been created in the account¶
Description¶
Retrieves a list of the delivery destinations that have been created in the account.
Usage¶
cloudwatchlogs_describe_delivery_destinations(nextToken, limit)
Arguments¶
nextToken | 
|
limit | 
Optionally specify the maximum number of delivery destinations to return in the response.  | 
Value¶
A list with the following syntax:
list(
  deliveryDestinations = list(
    list(
      name = "string",
      arn = "string",
      deliveryDestinationType = "S3"|"CWL"|"FH",
      outputFormat = "json"|"plain"|"w3c"|"raw"|"parquet",
      deliveryDestinationConfiguration = list(
        destinationResourceArn = "string"
      ),
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$describe_delivery_destinations(
  nextToken = "string",
  limit = 123
)