Skip to content

Get Delivery

cloudwatchlogs_get_delivery R Documentation

Returns complete information about one logical delivery

Description

Returns complete information about one logical delivery. 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, or Firehose. 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.

You need to specify the delivery id in this operation. You can find the IDs of the deliveries in your account with the describe_deliveries operation.

Usage

cloudwatchlogs_get_delivery(id)

Arguments

id

[required] The ID of the delivery that you want to retrieve.

Value

A list with the following syntax:

list(
  delivery = list(
    id = "string",
    arn = "string",
    deliverySourceName = "string",
    deliveryDestinationArn = "string",
    deliveryDestinationType = "S3"|"CWL"|"FH",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$get_delivery(
  id = "string"
)