/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace FSx { namespace Model { /** *

The response object for the Amazon FSx for Lustre file system being deleted * in the DeleteFileSystem operation.

See Also:

AWS * API Reference

*/ class DeleteFileSystemLustreResponse { public: AWS_FSX_API DeleteFileSystemLustreResponse(); AWS_FSX_API DeleteFileSystemLustreResponse(Aws::Utils::Json::JsonView jsonValue); AWS_FSX_API DeleteFileSystemLustreResponse& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FSX_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ID of the final backup for this file system.

*/ inline const Aws::String& GetFinalBackupId() const{ return m_finalBackupId; } /** *

The ID of the final backup for this file system.

*/ inline bool FinalBackupIdHasBeenSet() const { return m_finalBackupIdHasBeenSet; } /** *

The ID of the final backup for this file system.

*/ inline void SetFinalBackupId(const Aws::String& value) { m_finalBackupIdHasBeenSet = true; m_finalBackupId = value; } /** *

The ID of the final backup for this file system.

*/ inline void SetFinalBackupId(Aws::String&& value) { m_finalBackupIdHasBeenSet = true; m_finalBackupId = std::move(value); } /** *

The ID of the final backup for this file system.

*/ inline void SetFinalBackupId(const char* value) { m_finalBackupIdHasBeenSet = true; m_finalBackupId.assign(value); } /** *

The ID of the final backup for this file system.

*/ inline DeleteFileSystemLustreResponse& WithFinalBackupId(const Aws::String& value) { SetFinalBackupId(value); return *this;} /** *

The ID of the final backup for this file system.

*/ inline DeleteFileSystemLustreResponse& WithFinalBackupId(Aws::String&& value) { SetFinalBackupId(std::move(value)); return *this;} /** *

The ID of the final backup for this file system.

*/ inline DeleteFileSystemLustreResponse& WithFinalBackupId(const char* value) { SetFinalBackupId(value); return *this;} /** *

The set of tags applied to the final backup.

*/ inline const Aws::Vector& GetFinalBackupTags() const{ return m_finalBackupTags; } /** *

The set of tags applied to the final backup.

*/ inline bool FinalBackupTagsHasBeenSet() const { return m_finalBackupTagsHasBeenSet; } /** *

The set of tags applied to the final backup.

*/ inline void SetFinalBackupTags(const Aws::Vector& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags = value; } /** *

The set of tags applied to the final backup.

*/ inline void SetFinalBackupTags(Aws::Vector&& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags = std::move(value); } /** *

The set of tags applied to the final backup.

*/ inline DeleteFileSystemLustreResponse& WithFinalBackupTags(const Aws::Vector& value) { SetFinalBackupTags(value); return *this;} /** *

The set of tags applied to the final backup.

*/ inline DeleteFileSystemLustreResponse& WithFinalBackupTags(Aws::Vector&& value) { SetFinalBackupTags(std::move(value)); return *this;} /** *

The set of tags applied to the final backup.

*/ inline DeleteFileSystemLustreResponse& AddFinalBackupTags(const Tag& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags.push_back(value); return *this; } /** *

The set of tags applied to the final backup.

*/ inline DeleteFileSystemLustreResponse& AddFinalBackupTags(Tag&& value) { m_finalBackupTagsHasBeenSet = true; m_finalBackupTags.push_back(std::move(value)); return *this; } private: Aws::String m_finalBackupId; bool m_finalBackupIdHasBeenSet = false; Aws::Vector m_finalBackupTags; bool m_finalBackupTagsHasBeenSet = false; }; } // namespace Model } // namespace FSx } // namespace Aws