Skip to content

Describe Publishing Destination

guardduty_describe_publishing_destination R Documentation

Returns information about the publishing destination specified by the provided destinationId

Description

Returns information about the publishing destination specified by the provided destinationId.

Usage

guardduty_describe_publishing_destination(DetectorId, DestinationId)

Arguments

DetectorId

[required] The unique ID of the detector associated with the publishing destination to retrieve.

To find the detectorId in the current Region, see the Settings page in the GuardDuty console, or run the list_detectors API.

DestinationId

[required] The ID of the publishing destination to retrieve.

Value

A list with the following syntax:

list(
  DestinationId = "string",
  DestinationType = "S3",
  Status = "PENDING_VERIFICATION"|"PUBLISHING"|"UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY"|"STOPPED",
  PublishingFailureStartTimestamp = 123,
  DestinationProperties = list(
    DestinationArn = "string",
    KmsKeyArn = "string"
  )
)

Request syntax

svc$describe_publishing_destination(
  DetectorId = "string",
  DestinationId = "string"
)