Class: Aws::SESV2::Types::ListExportJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListExportJobsResponse
- 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
-
#export_jobs ⇒ Array<Types::ExportJobSummary>
A list of the export job summaries.
-
#next_token ⇒ String
A string token indicating that there might be additional export jobs available to be listed.
Instance Attribute Details
#export_jobs ⇒ Array<Types::ExportJobSummary>
A list of the export job summaries.
5045 5046 5047 5048 5049 5050 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5045 class ListExportJobsResponse < Struct.new( :export_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A string token indicating that there might be additional export jobs
available to be listed. Use this token to a subsequent call to
ListExportJobs
with the same parameters to retrieve the next page
of export jobs.
5045 5046 5047 5048 5049 5050 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5045 class ListExportJobsResponse < Struct.new( :export_jobs, :next_token) SENSITIVE = [] include Aws::Structure end |