Class: Aws::SESV2::Types::ExportDestination

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#data_formatString

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.

Returns:

  • (String)


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_urlString

An Amazon S3 pre-signed URL that points to the generated export file.

Returns:

  • (String)


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