Interface DeleteFileSystemWindowsConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DeleteFileSystemWindowsConfiguration.Builder,
,DeleteFileSystemWindowsConfiguration> SdkBuilder<DeleteFileSystemWindowsConfiguration.Builder,
,DeleteFileSystemWindowsConfiguration> SdkPojo
- Enclosing class:
DeleteFileSystemWindowsConfiguration
@Mutable
@NotThreadSafe
public static interface DeleteFileSystemWindowsConfiguration.Builder
extends SdkPojo, CopyableBuilder<DeleteFileSystemWindowsConfiguration.Builder,DeleteFileSystemWindowsConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionfinalBackupTags
(Collection<Tag> finalBackupTags) A set of tags for your final backup.finalBackupTags
(Consumer<Tag.Builder>... finalBackupTags) A set of tags for your final backup.finalBackupTags
(Tag... finalBackupTags) A set of tags for your final backup.skipFinalBackup
(Boolean skipFinalBackup) By default, Amazon FSx for Windows takes a final backup on your behalf when theDeleteFileSystem
operation 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 Details
-
skipFinalBackup
By default, Amazon FSx for Windows takes a final backup on your behalf when the
DeleteFileSystem
operation 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 theDeleteFileSystem
operation 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
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
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.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofinalBackupTags(List<Tag>)
.- 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:
-