Skip to content

Put Classification Export Configuration

macie2_put_classification_export_configuration R Documentation

Creates or updates the configuration settings for storing data classification results

Description

Creates or updates the configuration settings for storing data classification results.

Usage

macie2_put_classification_export_configuration(configuration)

Arguments

configuration

[required] The location to store data classification results in, and the encryption settings to use when storing results in that location.

Value

A list with the following syntax:

list(
  configuration = list(
    s3Destination = list(
      bucketName = "string",
      keyPrefix = "string",
      kmsKeyArn = "string"
    )
  )
)

Request syntax

svc$put_classification_export_configuration(
  configuration = list(
    s3Destination = list(
      bucketName = "string",
      keyPrefix = "string",
      kmsKeyArn = "string"
    )
  )
)