Skip to content

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
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"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$describe_delivery_sources(
  nextToken = "string",
  limit = 123
)