Skip to content

Get Trusted Entity Set

guardduty_get_trusted_entity_set R Documentation

Retrieves the trusted entity set associated with the specified trustedEntitySetId

Description

Retrieves the trusted entity set associated with the specified trustedEntitySetId.

Usage

guardduty_get_trusted_entity_set(DetectorId, TrustedEntitySetId)

Arguments

DetectorId

[required] The unique ID of the GuardDuty detector associated with this trusted entity set.

TrustedEntitySetId

[required] The unique ID that helps GuardDuty identify the trusted 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_trusted_entity_set(
  DetectorId = "string",
  TrustedEntitySetId = "string"
)