Class: Aws::SESV2::Types::ExportDestination
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::ExportDestination
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An object that contains details about the destination of the export job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #data_format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data format of the final export job file, can be one of the following:.
 - 
  
    
      #s3_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An Amazon S3 pre-signed URL that points to the generated export file.
 
Instance Attribute Details
#data_format ⇒ String
The data format of the final export job file, can be one of the following:
- 
‘CSV` - A comma-separated values file.
 - 
‘JSON` - A Json file.
 
      2469 2470 2471 2472 2473 2474  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2469 class ExportDestination < Struct.new( :data_format, :s3_url) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_url ⇒ String
An Amazon S3 pre-signed URL that points to the generated export file.
      2469 2470 2471 2472 2473 2474  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 2469 class ExportDestination < Struct.new( :data_format, :s3_url) SENSITIVE = [] include Aws::Structure end  |