Skip to content

List Resource Profile Artifacts

macie2_list_resource_profile_artifacts R Documentation

Retrieves information about objects that Amazon Macie selected from an S3 bucket for automated sensitive data discovery

Description

Retrieves information about objects that Amazon Macie selected from an S3 bucket for automated sensitive data discovery.

Usage

macie2_list_resource_profile_artifacts(nextToken, resourceArn)

Arguments

nextToken

The nextToken string that specifies which page of results to return in a paginated response.

resourceArn

[required] The Amazon Resource Name (ARN) of the S3 bucket that the request applies to.

Value

A list with the following syntax:

list(
  artifacts = list(
    list(
      arn = "string",
      classificationResultStatus = "string",
      sensitive = TRUE|FALSE
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_resource_profile_artifacts(
  nextToken = "string",
  resourceArn = "string"
)