Class: Aws::SESV2::Types::ListImportJobsRequest

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

Overview

Represents a request to list all of the import jobs for a data destination within the specified maximum number of import jobs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#import_destination_typeString

The destination of the import job, which can be used to list import jobs that have a certain ‘ImportDestinationType`.

Returns:

  • (String)


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

class ListImportJobsRequest < Struct.new(
  :import_destination_type,
  :next_token,
  :page_size)
  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
4621
# File 'lib/aws-sdk-sesv2/types.rb', line 4615

class ListImportJobsRequest < Struct.new(
  :import_destination_type,
  :next_token,
  :page_size)
  SENSITIVE = []
  include Aws::Structure
end

#page_sizeInteger

Maximum number of import jobs to return at once. Use this parameter to paginate results. If additional import jobs exist beyond the specified limit, the ‘NextToken` element is sent in the response. Use the `NextToken` value in subsequent requests to retrieve additional addresses.

Returns:

  • (Integer)


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

class ListImportJobsRequest < Struct.new(
  :import_destination_type,
  :next_token,
  :page_size)
  SENSITIVE = []
  include Aws::Structure
end