Interface CopySnapshotResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<CopySnapshotResponse.Builder,CopySnapshotResponse>
,ElastiCacheResponse.Builder
,SdkBuilder<CopySnapshotResponse.Builder,CopySnapshotResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- CopySnapshotResponse
public static interface CopySnapshotResponse.Builder extends ElastiCacheResponse.Builder, SdkPojo, CopyableBuilder<CopySnapshotResponse.Builder,CopySnapshotResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CopySnapshotResponse.Builder
snapshot(Consumer<Snapshot.Builder> snapshot)
Sets the value of the Snapshot property for this object.CopySnapshotResponse.Builder
snapshot(Snapshot snapshot)
Sets the value of the Snapshot property for this object.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticache.model.ElastiCacheResponse.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
-
snapshot
CopySnapshotResponse.Builder snapshot(Snapshot snapshot)
Sets the value of the Snapshot property for this object.- Parameters:
snapshot
- The new value for the Snapshot property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
snapshot
default CopySnapshotResponse.Builder snapshot(Consumer<Snapshot.Builder> snapshot)
Sets the value of the Snapshot property for this object. This is a convenience method that creates an instance of theSnapshot.Builder
avoiding the need to create one manually viaSnapshot.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosnapshot(Snapshot)
.- Parameters:
snapshot
- 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:
snapshot(Snapshot)
-
-