Interface ListRestoreTestingSelectionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BackupResponse.Builder,Buildable,CopyableBuilder<ListRestoreTestingSelectionsResponse.Builder,ListRestoreTestingSelectionsResponse>,SdkBuilder<ListRestoreTestingSelectionsResponse.Builder,ListRestoreTestingSelectionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListRestoreTestingSelectionsResponse
public static interface ListRestoreTestingSelectionsResponse.Builder extends BackupResponse.Builder, SdkPojo, CopyableBuilder<ListRestoreTestingSelectionsResponse.Builder,ListRestoreTestingSelectionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListRestoreTestingSelectionsResponse.BuildernextToken(String nextToken)The next item following a partial list of returned items.ListRestoreTestingSelectionsResponse.BuilderrestoreTestingSelections(Collection<RestoreTestingSelectionForList> restoreTestingSelections)The returned restore testing selections associated with the restore testing plan.ListRestoreTestingSelectionsResponse.BuilderrestoreTestingSelections(Consumer<RestoreTestingSelectionForList.Builder>... restoreTestingSelections)The returned restore testing selections associated with the restore testing plan.ListRestoreTestingSelectionsResponse.BuilderrestoreTestingSelections(RestoreTestingSelectionForList... restoreTestingSelections)The returned restore testing selections associated with the restore testing plan.-
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
-
nextToken
ListRestoreTestingSelectionsResponse.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 nexttoken.- 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 nexttoken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
restoreTestingSelections
ListRestoreTestingSelectionsResponse.Builder restoreTestingSelections(Collection<RestoreTestingSelectionForList> restoreTestingSelections)
The returned restore testing selections associated with the restore testing plan.
- Parameters:
restoreTestingSelections- The returned restore testing selections associated with the restore testing plan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
restoreTestingSelections
ListRestoreTestingSelectionsResponse.Builder restoreTestingSelections(RestoreTestingSelectionForList... restoreTestingSelections)
The returned restore testing selections associated with the restore testing plan.
- Parameters:
restoreTestingSelections- The returned restore testing selections associated with the restore testing plan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
restoreTestingSelections
ListRestoreTestingSelectionsResponse.Builder restoreTestingSelections(Consumer<RestoreTestingSelectionForList.Builder>... restoreTestingSelections)
The returned restore testing selections associated with the restore testing plan.
This is a convenience method that creates an instance of theRestoreTestingSelectionForList.Builderavoiding the need to create one manually viaRestoreTestingSelectionForList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#restoreTestingSelections(List.) - Parameters:
restoreTestingSelections- a consumer that will call methods onRestoreTestingSelectionForList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#restoreTestingSelections(java.util.Collection)
-
-