Interface GetDiskSnapshotsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetDiskSnapshotsResponse.Builder,GetDiskSnapshotsResponse>,LightsailResponse.Builder,SdkBuilder<GetDiskSnapshotsResponse.Builder,GetDiskSnapshotsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDiskSnapshotsResponse
public static interface GetDiskSnapshotsResponse.Builder extends LightsailResponse.Builder, SdkPojo, CopyableBuilder<GetDiskSnapshotsResponse.Builder,GetDiskSnapshotsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDiskSnapshotsResponse.BuilderdiskSnapshots(Collection<DiskSnapshot> diskSnapshots)An array of objects containing information about all block storage disk snapshots.GetDiskSnapshotsResponse.BuilderdiskSnapshots(Consumer<DiskSnapshot.Builder>... diskSnapshots)An array of objects containing information about all block storage disk snapshots.GetDiskSnapshotsResponse.BuilderdiskSnapshots(DiskSnapshot... diskSnapshots)An array of objects containing information about all block storage disk snapshots.GetDiskSnapshotsResponse.BuildernextPageToken(String nextPageToken)The token to advance to the next page of results from your request.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lightsail.model.LightsailResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
diskSnapshots
GetDiskSnapshotsResponse.Builder diskSnapshots(Collection<DiskSnapshot> diskSnapshots)
An array of objects containing information about all block storage disk snapshots.
- Parameters:
diskSnapshots- An array of objects containing information about all block storage disk snapshots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
diskSnapshots
GetDiskSnapshotsResponse.Builder diskSnapshots(DiskSnapshot... diskSnapshots)
An array of objects containing information about all block storage disk snapshots.
- Parameters:
diskSnapshots- An array of objects containing information about all block storage disk snapshots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
diskSnapshots
GetDiskSnapshotsResponse.Builder diskSnapshots(Consumer<DiskSnapshot.Builder>... diskSnapshots)
An array of objects containing information about all block storage disk snapshots.
This is a convenience method that creates an instance of theDiskSnapshot.Builderavoiding the need to create one manually viaDiskSnapshot.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#diskSnapshots(List.) - Parameters:
diskSnapshots- a consumer that will call methods onDiskSnapshot.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#diskSnapshots(java.util.Collection)
-
nextPageToken
GetDiskSnapshotsResponse.Builder nextPageToken(String nextPageToken)
The token to advance to the next page of results from your request.
A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetDiskSnapshotsrequest and specify the next page token using thepageTokenparameter.- Parameters:
nextPageToken- The token to advance to the next page of results from your request.A next page token is not returned if there are no more results to display.
To get the next page of results, perform another
GetDiskSnapshotsrequest and specify the next page token using thepageTokenparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-