This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-fsx/include/aws/fsx/model/DeleteFileSystemWindowsConfiguration.h

127 lines
4.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/fsx/FSx_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/fsx/model/Tag.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace FSx
{
namespace Model
{
/**
* <p>The configuration object for the Microsoft Windows file system used in the
* <code>DeleteFileSystem</code> operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemWindowsConfiguration">AWS
* API Reference</a></p>
*/
class AWS_FSX_API DeleteFileSystemWindowsConfiguration
{
public:
DeleteFileSystemWindowsConfiguration();
DeleteFileSystemWindowsConfiguration(Aws::Utils::Json::JsonView jsonValue);
DeleteFileSystemWindowsConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>By default, Amazon FSx for Windows takes a final backup on your behalf when
* the <code>DeleteFileSystem</code> 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.</p>
*/
inline bool GetSkipFinalBackup() const{ return m_skipFinalBackup; }
/**
* <p>By default, Amazon FSx for Windows takes a final backup on your behalf when
* the <code>DeleteFileSystem</code> 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.</p>
*/
inline bool SkipFinalBackupHasBeenSet() const { return m_skipFinalBackupHasBeenSet; }
/**
* <p>By default, Amazon FSx for Windows takes a final backup on your behalf when
* the <code>DeleteFileSystem</code> 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.</p>
*/
inline void SetSkipFinalBackup(bool value) { m_skipFinalBackupHasBeenSet = true; m_skipFinalBackup = value; }
/**
* <p>By default, Amazon FSx for Windows takes a final backup on your behalf when
* the <code>DeleteFileSystem</code> 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.</p>
*/
inline DeleteFileSystemWindowsConfiguration& WithSkipFinalBackup(bool value) { SetSkipFinalBackup(value); return *this;}
/**
* <p>A set of tags for your final backup.</p>
*/
inline const Aws::Vector<Tag>& GetFinalBackupTags() const{ return m_finalBackupTags; }
/**
* <p>A set of tags for your final backup.</p>
*/
inline bool FinalBackupTagsHasBeenSet() const { return m_finalBackupTagsHasBeenSet; }
/**
* <p>A set of tags for your final backup.</p>
*/
inline void SetFinalBackupTags(const Aws::Vector<Tag>& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags = value; }
/**
* <p>A set of tags for your final backup.</p>
*/
inline void SetFinalBackupTags(Aws::Vector<Tag>&& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags = std::move(value); }
/**
* <p>A set of tags for your final backup.</p>
*/
inline DeleteFileSystemWindowsConfiguration& WithFinalBackupTags(const Aws::Vector<Tag>& value) { SetFinalBackupTags(value); return *this;}
/**
* <p>A set of tags for your final backup.</p>
*/
inline DeleteFileSystemWindowsConfiguration& WithFinalBackupTags(Aws::Vector<Tag>&& value) { SetFinalBackupTags(std::move(value)); return *this;}
/**
* <p>A set of tags for your final backup.</p>
*/
inline DeleteFileSystemWindowsConfiguration& AddFinalBackupTags(const Tag& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags.push_back(value); return *this; }
/**
* <p>A set of tags for your final backup.</p>
*/
inline DeleteFileSystemWindowsConfiguration& AddFinalBackupTags(Tag&& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags.push_back(std::move(value)); return *this; }
private:
bool m_skipFinalBackup;
bool m_skipFinalBackupHasBeenSet;
Aws::Vector<Tag> m_finalBackupTags;
bool m_finalBackupTagsHasBeenSet;
};
} // namespace Model
} // namespace FSx
} // namespace Aws