Class: Aws::Comprehend::Types::PiiOutputDataConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Comprehend::Types::PiiOutputDataConfig
 
- 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
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ID for the Amazon Web Services Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. 
- 
  
    
      #s3_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    When you use the ‘PiiOutputDataConfig` object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data. 
Instance Attribute Details
#kms_key_id ⇒ String
ID for the Amazon Web Services Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job.
| 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_uri ⇒ String
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.
| 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 |