Class: Aws::CleanRooms::Types::ProtectedQueryS3OutputConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CleanRooms::Types::ProtectedQueryS3OutputConfiguration
 
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Contains the configuration to write the query results to S3.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The S3 bucket to unload the protected query results. 
- 
  
    
      #key_prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The S3 prefix to unload the protected query results. 
- 
  
    
      #result_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Intended file format of the result. 
- 
  
    
      #single_file_output  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates whether files should be output as a single file ( TRUE) or output as multiple files (FALSE).
Instance Attribute Details
#bucket ⇒ String
The S3 bucket to unload the protected query results.
| 8480 8481 8482 8483 8484 8485 8486 8487 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8480 class ProtectedQueryS3OutputConfiguration < Struct.new( :result_format, :bucket, :key_prefix, :single_file_output) SENSITIVE = [] include Aws::Structure end | 
#key_prefix ⇒ String
The S3 prefix to unload the protected query results.
| 8480 8481 8482 8483 8484 8485 8486 8487 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8480 class ProtectedQueryS3OutputConfiguration < Struct.new( :result_format, :bucket, :key_prefix, :single_file_output) SENSITIVE = [] include Aws::Structure end | 
#result_format ⇒ String
Intended file format of the result.
| 8480 8481 8482 8483 8484 8485 8486 8487 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8480 class ProtectedQueryS3OutputConfiguration < Struct.new( :result_format, :bucket, :key_prefix, :single_file_output) SENSITIVE = [] include Aws::Structure end | 
#single_file_output ⇒ Boolean
Indicates whether files should be output as a single file (TRUE)
or output as multiple files (FALSE). This parameter is only
supported for analyses with the Spark analytics engine.
| 8480 8481 8482 8483 8484 8485 8486 8487 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8480 class ProtectedQueryS3OutputConfiguration < Struct.new( :result_format, :bucket, :key_prefix, :single_file_output) SENSITIVE = [] include Aws::Structure end |