Interface ListReportJobsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,BackupRequest.Builder,Buildable,CopyableBuilder<ListReportJobsRequest.Builder,ListReportJobsRequest>,SdkBuilder<ListReportJobsRequest.Builder,ListReportJobsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListReportJobsRequest
public static interface ListReportJobsRequest.Builder extends BackupRequest.Builder, SdkPojo, CopyableBuilder<ListReportJobsRequest.Builder,ListReportJobsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListReportJobsRequest.BuilderbyCreationAfter(Instant byCreationAfter)Returns only report jobs that were created after the date and time specified in Unix format and Coordinated Universal Time (UTC).ListReportJobsRequest.BuilderbyCreationBefore(Instant byCreationBefore)Returns only report jobs that were created before the date and time specified in Unix format and Coordinated Universal Time (UTC).ListReportJobsRequest.BuilderbyReportPlanName(String byReportPlanName)Returns only report jobs with the specified report plan name.ListReportJobsRequest.BuilderbyStatus(String byStatus)Returns only report jobs that are in the specified status.ListReportJobsRequest.BuildermaxResults(Integer maxResults)The number of desired results from 1 to 1000.ListReportJobsRequest.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.ListReportJobsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListReportJobsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.backup.model.BackupRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
byReportPlanName
ListReportJobsRequest.Builder byReportPlanName(String byReportPlanName)
Returns only report jobs with the specified report plan name.
- Parameters:
byReportPlanName- Returns only report jobs with the specified report plan name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byCreationBefore
ListReportJobsRequest.Builder byCreationBefore(Instant byCreationBefore)
Returns only report jobs that were created before the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.
- Parameters:
byCreationBefore- Returns only report jobs that were created before the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byCreationAfter
ListReportJobsRequest.Builder byCreationAfter(Instant byCreationAfter)
Returns only report jobs that were created after the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.
- Parameters:
byCreationAfter- Returns only report jobs that were created after the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byStatus
ListReportJobsRequest.Builder byStatus(String byStatus)
Returns only report jobs that are in the specified status. The statuses are:
CREATED | RUNNING | COMPLETED | FAILED- Parameters:
byStatus- Returns only report jobs that are in the specified status. The statuses are:CREATED | RUNNING | COMPLETED | FAILED- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListReportJobsRequest.Builder maxResults(Integer maxResults)
The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.
- Parameters:
maxResults- The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListReportJobsRequest.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.
-
overrideConfiguration
ListReportJobsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListReportJobsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-