Interface CreateSnapshotRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateSnapshotRequest.Builder,CreateSnapshotRequest>
,FSxRequest.Builder
,SdkBuilder<CreateSnapshotRequest.Builder,CreateSnapshotRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateSnapshotRequest
public static interface CreateSnapshotRequest.Builder extends FSxRequest.Builder, SdkPojo, CopyableBuilder<CreateSnapshotRequest.Builder,CreateSnapshotRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateSnapshotRequest.Builder
clientRequestToken(String clientRequestToken)
Sets the value of the ClientRequestToken property for this object.CreateSnapshotRequest.Builder
name(String name)
The name of the snapshot.CreateSnapshotRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateSnapshotRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateSnapshotRequest.Builder
tags(Collection<Tag> tags)
Sets the value of the Tags property for this object.CreateSnapshotRequest.Builder
tags(Consumer<Tag.Builder>... tags)
Sets the value of the Tags property for this object.CreateSnapshotRequest.Builder
tags(Tag... tags)
Sets the value of the Tags property for this object.CreateSnapshotRequest.Builder
volumeId(String volumeId)
The ID of the volume that you are taking a snapshot of.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.fsx.model.FSxRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
clientRequestToken
CreateSnapshotRequest.Builder clientRequestToken(String clientRequestToken)
Sets the value of the ClientRequestToken property for this object.- Parameters:
clientRequestToken
- The new value for the ClientRequestToken property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateSnapshotRequest.Builder name(String name)
The name of the snapshot.
- Parameters:
name
- The name of the snapshot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
volumeId
CreateSnapshotRequest.Builder volumeId(String volumeId)
The ID of the volume that you are taking a snapshot of.
- Parameters:
volumeId
- The ID of the volume that you are taking a snapshot of.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSnapshotRequest.Builder tags(Collection<Tag> tags)
Sets the value of the Tags property for this object.- Parameters:
tags
- The new value for the Tags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSnapshotRequest.Builder tags(Tag... tags)
Sets the value of the Tags property for this object.- Parameters:
tags
- The new value for the Tags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateSnapshotRequest.Builder tags(Consumer<Tag.Builder>... tags)
Sets the value of the Tags property for this object. This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#tags(List
.) - Parameters:
tags
- a consumer that will call methods onTag.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection
)
-
overrideConfiguration
CreateSnapshotRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateSnapshotRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-