Skip to content

Describe Destinations

cloudwatchlogs_describe_destinations R Documentation

Lists all your destinations

Description

Lists all your destinations. The results are ASCII-sorted by destination name.

Usage

cloudwatchlogs_describe_destinations(DestinationNamePrefix, nextToken,
  limit)

Arguments

DestinationNamePrefix

The prefix to match. If you don't specify a value, no prefix filter is applied.

nextToken

The token for the next set of items to return. (You received this token from a previous call.)

limit

The maximum number of items returned. If you don't specify a value, the default maximum value of 50 items is used.

Value

A list with the following syntax:

list(
  destinations = list(
    list(
      destinationName = "string",
      targetArn = "string",
      roleArn = "string",
      accessPolicy = "string",
      arn = "string",
      creationTime = 123
    )
  ),
  nextToken = "string"
)

Request syntax

svc$describe_destinations(
  DestinationNamePrefix = "string",
  nextToken = "string",
  limit = 123
)