Interface DeleteFileSystemWindowsConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeleteFileSystemWindowsConfiguration.Builder,DeleteFileSystemWindowsConfiguration>,SdkBuilder<DeleteFileSystemWindowsConfiguration.Builder,DeleteFileSystemWindowsConfiguration>,SdkPojo
- Enclosing class:
- DeleteFileSystemWindowsConfiguration
public static interface DeleteFileSystemWindowsConfiguration.Builder extends SdkPojo, CopyableBuilder<DeleteFileSystemWindowsConfiguration.Builder,DeleteFileSystemWindowsConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteFileSystemWindowsConfiguration.BuilderfinalBackupTags(Collection<Tag> finalBackupTags)A set of tags for your final backup.DeleteFileSystemWindowsConfiguration.BuilderfinalBackupTags(Consumer<Tag.Builder>... finalBackupTags)A set of tags for your final backup.DeleteFileSystemWindowsConfiguration.BuilderfinalBackupTags(Tag... finalBackupTags)A set of tags for your final backup.DeleteFileSystemWindowsConfiguration.BuilderskipFinalBackup(Boolean skipFinalBackup)By default, Amazon FSx for Windows takes a final backup on your behalf when theDeleteFileSystemoperation is invoked.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
skipFinalBackup
DeleteFileSystemWindowsConfiguration.Builder skipFinalBackup(Boolean skipFinalBackup)
By default, Amazon FSx for Windows takes a final backup on your behalf when the
DeleteFileSystemoperation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.- Parameters:
skipFinalBackup- By default, Amazon FSx for Windows takes a final backup on your behalf when theDeleteFileSystemoperation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteFileSystemWindowsConfiguration.Builder finalBackupTags(Collection<Tag> finalBackupTags)
A set of tags for your final backup.
- Parameters:
finalBackupTags- A set of tags for your final backup.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteFileSystemWindowsConfiguration.Builder finalBackupTags(Tag... finalBackupTags)
A set of tags for your final backup.
- Parameters:
finalBackupTags- A set of tags for your final backup.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finalBackupTags
DeleteFileSystemWindowsConfiguration.Builder finalBackupTags(Consumer<Tag.Builder>... finalBackupTags)
A set of tags for your final backup.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,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)
-
-