Interface ListBackupsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListBackupsResponse.Builder,ListBackupsResponse>,DynamoDbResponse.Builder,SdkBuilder<ListBackupsResponse.Builder,ListBackupsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListBackupsResponse
@Mutable @NotThreadSafe public static interface ListBackupsResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<ListBackupsResponse.Builder,ListBackupsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBackupsResponse.BuilderbackupSummaries(Collection<BackupSummary> backupSummaries)List ofBackupSummaryobjects.ListBackupsResponse.BuilderbackupSummaries(Consumer<BackupSummary.Builder>... backupSummaries)List ofBackupSummaryobjects.ListBackupsResponse.BuilderbackupSummaries(BackupSummary... backupSummaries)List ofBackupSummaryobjects.ListBackupsResponse.BuilderlastEvaluatedBackupArn(String lastEvaluatedBackupArn)The ARN of the backup last evaluated when the current page of results was returned, inclusive of the current page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
backupSummaries
ListBackupsResponse.Builder backupSummaries(Collection<BackupSummary> backupSummaries)
List of
BackupSummaryobjects.- Parameters:
backupSummaries- List ofBackupSummaryobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backupSummaries
ListBackupsResponse.Builder backupSummaries(BackupSummary... backupSummaries)
List of
BackupSummaryobjects.- Parameters:
backupSummaries- List ofBackupSummaryobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backupSummaries
ListBackupsResponse.Builder backupSummaries(Consumer<BackupSummary.Builder>... backupSummaries)
List of
This is a convenience method that creates an instance of theBackupSummaryobjects.BackupSummary.Builderavoiding the need to create one manually viaBackupSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#backupSummaries(List.) - Parameters:
backupSummaries- a consumer that will call methods onBackupSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#backupSummaries(java.util.Collection)
-
lastEvaluatedBackupArn
ListBackupsResponse.Builder lastEvaluatedBackupArn(String lastEvaluatedBackupArn)
The ARN of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as the
ExclusiveStartBackupArnof a newListBackupsoperation in order to fetch the next page of results.If
LastEvaluatedBackupArnis empty, then the last page of results has been processed and there are no more results to be retrieved.If
LastEvaluatedBackupArnis not empty, this may or may not indicate that there is more data to be returned. All results are guaranteed to have been returned if and only if no value forLastEvaluatedBackupArnis returned.- Parameters:
lastEvaluatedBackupArn- The ARN of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as theExclusiveStartBackupArnof a newListBackupsoperation in order to fetch the next page of results.If
LastEvaluatedBackupArnis empty, then the last page of results has been processed and there are no more results to be retrieved.If
LastEvaluatedBackupArnis not empty, this may or may not indicate that there is more data to be returned. All results are guaranteed to have been returned if and only if no value forLastEvaluatedBackupArnis returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-