Class: Aws::SESV2::Types::ListImportJobsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

An HTTP 200 response if the request succeeds, or an error message if the request fails.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#import_jobsArray<Types::ImportJobSummary>

A list of the import job summaries.

Returns:



4615
4616
4617
4618
4619
4620
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4615

class ListImportJobsResponse < Struct.new(
  :import_jobs,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A string token indicating that there might be additional import jobs available to be listed. Copy this token to a subsequent call to ListImportJobs with the same parameters to retrieve the next page of import jobs.

Returns:

  • (String)


4615
4616
4617
4618
4619
4620
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 4615

class ListImportJobsResponse < Struct.new(
  :import_jobs,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end