Interface ListBackupVaultsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BackupResponse.Builder,Buildable,CopyableBuilder<ListBackupVaultsResponse.Builder,ListBackupVaultsResponse>,SdkBuilder<ListBackupVaultsResponse.Builder,ListBackupVaultsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListBackupVaultsResponse
public static interface ListBackupVaultsResponse.Builder extends BackupResponse.Builder, SdkPojo, CopyableBuilder<ListBackupVaultsResponse.Builder,ListBackupVaultsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBackupVaultsResponse.BuilderbackupVaultList(Collection<BackupVaultListMember> backupVaultList)An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.ListBackupVaultsResponse.BuilderbackupVaultList(Consumer<BackupVaultListMember.Builder>... backupVaultList)An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.ListBackupVaultsResponse.BuilderbackupVaultList(BackupVaultListMember... backupVaultList)An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.ListBackupVaultsResponse.BuildernextToken(String nextToken)The next item following a partial list of returned items.-
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
-
backupVaultList
ListBackupVaultsResponse.Builder backupVaultList(Collection<BackupVaultListMember> backupVaultList)
An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.
- Parameters:
backupVaultList- An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backupVaultList
ListBackupVaultsResponse.Builder backupVaultList(BackupVaultListMember... backupVaultList)
An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.
- Parameters:
backupVaultList- An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backupVaultList
ListBackupVaultsResponse.Builder backupVaultList(Consumer<BackupVaultListMember.Builder>... backupVaultList)
An array of backup vault list members containing vault metadata, including Amazon Resource Name (ARN), display name, creation date, number of saved recovery points, and encryption information if the resources saved in the backup vault are encrypted.
This is a convenience method that creates an instance of theBackupVaultListMember.Builderavoiding the need to create one manually viaBackupVaultListMember.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#backupVaultList(List.) - Parameters:
backupVaultList- a consumer that will call methods onBackupVaultListMember.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#backupVaultList(java.util.Collection)
-
nextToken
ListBackupVaultsResponse.Builder nextToken(String nextToken)
The next item following a partial list of returned items. For example, if a request is made to return
MaxResultsnumber of items,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.- Parameters:
nextToken- The next item following a partial list of returned items. For example, if a request is made to returnMaxResultsnumber of items,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-