Skip to content

Get Allow List

macie2_get_allow_list R Documentation

Retrieves the settings and status of an allow list

Description

Retrieves the settings and status of an allow list.

Usage

macie2_get_allow_list(id)

Arguments

id

[required] The unique identifier for the Amazon Macie resource that the request applies to.

Value

A list with the following syntax:

list(
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  criteria = list(
    regex = "string",
    s3WordsList = list(
      bucketName = "string",
      objectKey = "string"
    )
  ),
  description = "string",
  id = "string",
  name = "string",
  status = list(
    code = "OK"|"S3_OBJECT_NOT_FOUND"|"S3_USER_ACCESS_DENIED"|"S3_OBJECT_ACCESS_DENIED"|"S3_THROTTLED"|"S3_OBJECT_OVERSIZE"|"S3_OBJECT_EMPTY"|"UNKNOWN_ERROR",
    description = "string"
  ),
  tags = list(
    "string"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_allow_list(
  id = "string"
)