Class: Aws::Comprehend::Types::PiiOutputDataConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

Provides configuration parameters for the output of PII entity detection jobs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

ID for the Amazon Web Services Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job.

Returns:

  • (String)


6381
6382
6383
6384
6385
6386
# File 'lib/aws-sdk-comprehend/types.rb', line 6381

class PiiOutputDataConfig < Struct.new(
  :s3_uri,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#s3_uriString

When you use the ‘PiiOutputDataConfig` object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data.

For a PII entity detection job, the output file is plain text, not a compressed archive. The output file name is the same as the input file, with ‘.out` appended at the end.

Returns:

  • (String)


6381
6382
6383
6384
6385
6386
# File 'lib/aws-sdk-comprehend/types.rb', line 6381

class PiiOutputDataConfig < Struct.new(
  :s3_uri,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end