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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/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)


2438
2439
2440
2441
2442
2443
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2438

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)


2438
2439
2440
2441
2442
2443
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2438

class ExportDestination < Struct.new(
  :data_format,
  :s3_url)
  SENSITIVE = []
  include Aws::Structure
end