Learn R Programming

paws.security.identity (version 0.1.12)

guardduty_get_detector: Retrieves an Amazon GuardDuty detector specified by the detectorId

Description

Retrieves an Amazon GuardDuty detector specified by the detectorId.

Usage

guardduty_get_detector(DetectorId)

Value

A list with the following syntax:

list(
  CreatedAt = "string",
  FindingPublishingFrequency = "FIFTEEN_MINUTES"|"ONE_HOUR"|"SIX_HOURS",
  ServiceRole = "string",
  Status = "ENABLED"|"DISABLED",
  UpdatedAt = "string",
  DataSources = list(
    CloudTrail = list(
      Status = "ENABLED"|"DISABLED"
    ),
    DNSLogs = list(
      Status = "ENABLED"|"DISABLED"
    ),
    FlowLogs = list(
      Status = "ENABLED"|"DISABLED"
    ),
    S3Logs = list(
      Status = "ENABLED"|"DISABLED"
    )
  ),
  Tags = list(
    "string"
  )
)

Arguments

DetectorId

[required] The unique ID of the detector that you want to get.

Request syntax

svc$get_detector(
  DetectorId = "string"
)