Interface ListReportJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BackupResponse.Builder,Buildable,CopyableBuilder<ListReportJobsResponse.Builder,ListReportJobsResponse>,SdkBuilder<ListReportJobsResponse.Builder,ListReportJobsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListReportJobsResponse
public static interface ListReportJobsResponse.Builder extends BackupResponse.Builder, SdkPojo, CopyableBuilder<ListReportJobsResponse.Builder,ListReportJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListReportJobsResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.ListReportJobsResponse.BuilderreportJobs(Collection<ReportJob> reportJobs)Details about your report jobs in JSON format.ListReportJobsResponse.BuilderreportJobs(Consumer<ReportJob.Builder>... reportJobs)Details about your report jobs in JSON format.ListReportJobsResponse.BuilderreportJobs(ReportJob... reportJobs)Details about your report jobs in JSON format.-
Methods inherited from interface software.amazon.awssdk.services.backup.model.BackupResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
reportJobs
ListReportJobsResponse.Builder reportJobs(Collection<ReportJob> reportJobs)
Details about your report jobs in JSON format.
- Parameters:
reportJobs- Details about your report jobs in JSON format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reportJobs
ListReportJobsResponse.Builder reportJobs(ReportJob... reportJobs)
Details about your report jobs in JSON format.
- Parameters:
reportJobs- Details about your report jobs in JSON format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
reportJobs
ListReportJobsResponse.Builder reportJobs(Consumer<ReportJob.Builder>... reportJobs)
Details about your report jobs in JSON format.
This is a convenience method that creates an instance of theReportJob.Builderavoiding the need to create one manually viaReportJob.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#reportJobs(List.) - Parameters:
reportJobs- a consumer that will call methods onReportJob.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#reportJobs(java.util.Collection)
-
nextToken
ListReportJobsResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-