Interface DescribeSnapshotsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeSnapshotsResponse.Builder,DescribeSnapshotsResponse>,Ec2Response.Builder,SdkBuilder<DescribeSnapshotsResponse.Builder,DescribeSnapshotsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeSnapshotsResponse
@Mutable @NotThreadSafe public static interface DescribeSnapshotsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeSnapshotsResponse.Builder,DescribeSnapshotsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSnapshotsResponse.BuildernextToken(String nextToken)The token to include in another request to get the next page of items.DescribeSnapshotsResponse.Buildersnapshots(Collection<Snapshot> snapshots)Information about the snapshots.DescribeSnapshotsResponse.Buildersnapshots(Consumer<Snapshot.Builder>... snapshots)Information about the snapshots.DescribeSnapshotsResponse.Buildersnapshots(Snapshot... snapshots)Information about the snapshots.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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
-
nextToken
DescribeSnapshotsResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is
nullwhen there are no more items to return.- Parameters:
nextToken- The token to include in another request to get the next page of items. This value isnullwhen there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
snapshots
DescribeSnapshotsResponse.Builder snapshots(Collection<Snapshot> snapshots)
Information about the snapshots.
- Parameters:
snapshots- Information about the snapshots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
snapshots
DescribeSnapshotsResponse.Builder snapshots(Snapshot... snapshots)
Information about the snapshots.
- Parameters:
snapshots- Information about the snapshots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
snapshots
DescribeSnapshotsResponse.Builder snapshots(Consumer<Snapshot.Builder>... snapshots)
Information about the snapshots.
This is a convenience method that creates an instance of theSnapshot.Builderavoiding the need to create one manually viaSnapshot.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#snapshots(List.) - Parameters:
snapshots- a consumer that will call methods onSnapshot.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#snapshots(java.util.Collection)
-
-