Skip to content

Get Threat Entity Set

guardduty_get_threat_entity_set R Documentation

Retrieves the threat entity set associated with the specified threatEntitySetId

Description

Retrieves the threat entity set associated with the specified threatEntitySetId.

Usage

guardduty_get_threat_entity_set(DetectorId, ThreatEntitySetId)

Arguments

DetectorId

[required] The unique ID of the detector associated with the threat entity set resource.

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

ThreatEntitySetId

[required] The unique ID that helps GuardDuty identify the threat entity set.

Value

A list with the following syntax:

list(
  Name = "string",
  Format = "TXT"|"STIX"|"OTX_CSV"|"ALIEN_VAULT"|"PROOF_POINT"|"FIRE_EYE",
  Location = "string",
  ExpectedBucketOwner = "string",
  Status = "INACTIVE"|"ACTIVATING"|"ACTIVE"|"DEACTIVATING"|"ERROR"|"DELETE_PENDING"|"DELETED",
  Tags = list(
    "string"
  ),
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  UpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  ErrorDetails = "string"
)

Request syntax

svc$get_threat_entity_set(
  DetectorId = "string",
  ThreatEntitySetId = "string"
)