Interface DeleteVolumeOntapConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DeleteVolumeOntapConfiguration.Builder,DeleteVolumeOntapConfiguration>
,SdkBuilder<DeleteVolumeOntapConfiguration.Builder,DeleteVolumeOntapConfiguration>
,SdkPojo
- Enclosing class:
- DeleteVolumeOntapConfiguration
public static interface DeleteVolumeOntapConfiguration.Builder extends SdkPojo, CopyableBuilder<DeleteVolumeOntapConfiguration.Builder,DeleteVolumeOntapConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteVolumeOntapConfiguration.Builder
bypassSnaplockEnterpriseRetention(Boolean bypassSnaplockEnterpriseRetention)
Setting this totrue
allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files.DeleteVolumeOntapConfiguration.Builder
finalBackupTags(Collection<Tag> finalBackupTags)
Sets the value of the FinalBackupTags property for this object.DeleteVolumeOntapConfiguration.Builder
finalBackupTags(Consumer<Tag.Builder>... finalBackupTags)
Sets the value of the FinalBackupTags property for this object.DeleteVolumeOntapConfiguration.Builder
finalBackupTags(Tag... finalBackupTags)
Sets the value of the FinalBackupTags property for this object.DeleteVolumeOntapConfiguration.Builder
skipFinalBackup(Boolean skipFinalBackup)
Set to true if you want to skip taking a final backup of the volume you are deleting.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
skipFinalBackup
DeleteVolumeOntapConfiguration.Builder skipFinalBackup(Boolean skipFinalBackup)
Set to true if you want to skip taking a final backup of the volume you are deleting.
- Parameters:
skipFinalBackup
- Set to true if you want to skip taking a final backup of the volume you are deleting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteVolumeOntapConfiguration.Builder finalBackupTags(Collection<Tag> finalBackupTags)
Sets the value of the FinalBackupTags property for this object.- Parameters:
finalBackupTags
- The new value for the FinalBackupTags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteVolumeOntapConfiguration.Builder finalBackupTags(Tag... finalBackupTags)
Sets the value of the FinalBackupTags property for this object.- Parameters:
finalBackupTags
- The new value for the FinalBackupTags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteVolumeOntapConfiguration.Builder finalBackupTags(Consumer<Tag.Builder>... finalBackupTags)
Sets the value of the FinalBackupTags 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#finalBackupTags(List
.) - Parameters:
finalBackupTags
- 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:
#finalBackupTags(java.util.Collection
)
-
bypassSnaplockEnterpriseRetention
DeleteVolumeOntapConfiguration.Builder bypassSnaplockEnterpriseRetention(Boolean bypassSnaplockEnterpriseRetention)
Setting this to
true
allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. The IAM permissionfsx:BypassSnaplockEnterpriseRetention
is also required to delete SnapLock Enterprise volumes with unexpired WORM files. The default value isfalse
.For more information, see Deleting a SnapLock volume.
- Parameters:
bypassSnaplockEnterpriseRetention
- Setting this totrue
allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. The IAM permissionfsx:BypassSnaplockEnterpriseRetention
is also required to delete SnapLock Enterprise volumes with unexpired WORM files. The default value isfalse
.For more information, see Deleting a SnapLock volume.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-