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.
2477 2478 2479 2480 2481 2482 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2477 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.
2477 2478 2479 2480 2481 2482 |
# File 'lib/aws-sdk-sesv2/types.rb', line 2477 class ExportDestination < Struct.new( :data_format, :s3_url) SENSITIVE = [] include Aws::Structure end |