Interface UpdateBucketResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<UpdateBucketResponse.Builder,UpdateBucketResponse>,LightsailResponse.Builder,SdkBuilder<UpdateBucketResponse.Builder,UpdateBucketResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateBucketResponse
public static interface UpdateBucketResponse.Builder extends LightsailResponse.Builder, SdkPojo, CopyableBuilder<UpdateBucketResponse.Builder,UpdateBucketResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateBucketResponse.Builderbucket(Consumer<Bucket.Builder> bucket)An object that describes the bucket that is updated.UpdateBucketResponse.Builderbucket(Bucket bucket)An object that describes the bucket that is updated.UpdateBucketResponse.Builderoperations(Collection<Operation> operations)An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.UpdateBucketResponse.Builderoperations(Consumer<Operation.Builder>... operations)An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.UpdateBucketResponse.Builderoperations(Operation... operations)An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the 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
-
bucket
UpdateBucketResponse.Builder bucket(Bucket bucket)
An object that describes the bucket that is updated.
- Parameters:
bucket- An object that describes the bucket that is updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucket
default UpdateBucketResponse.Builder bucket(Consumer<Bucket.Builder> bucket)
An object that describes the bucket that is updated.
This is a convenience method that creates an instance of theBucket.Builderavoiding the need to create one manually viaBucket.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobucket(Bucket).- Parameters:
bucket- a consumer that will call methods onBucket.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
bucket(Bucket)
-
operations
UpdateBucketResponse.Builder operations(Collection<Operation> operations)
An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.
- Parameters:
operations- An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
UpdateBucketResponse.Builder operations(Operation... operations)
An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.
- Parameters:
operations- An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operations
UpdateBucketResponse.Builder operations(Consumer<Operation.Builder>... operations)
An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.
This is a convenience method that creates an instance of theOperation.Builderavoiding the need to create one manually viaOperation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#operations(List.) - Parameters:
operations- a consumer that will call methods onOperation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#operations(java.util.Collection)
-
-