Skip to content

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

The token for the next set of items to return. The token expires after 24 hours.

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"|"XRAY",
      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
)