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

The response object for the UpdateFileSystem * operation.

See Also:

AWS * API Reference

*/ class AWS_FSX_API UpdateFileSystemResult { public: UpdateFileSystemResult(); UpdateFileSystemResult(const Aws::AmazonWebServiceResult& result); UpdateFileSystemResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A description of the file system that was updated.

*/ inline const FileSystem& GetFileSystem() const{ return m_fileSystem; } /** *

A description of the file system that was updated.

*/ inline void SetFileSystem(const FileSystem& value) { m_fileSystem = value; } /** *

A description of the file system that was updated.

*/ inline void SetFileSystem(FileSystem&& value) { m_fileSystem = std::move(value); } /** *

A description of the file system that was updated.

*/ inline UpdateFileSystemResult& WithFileSystem(const FileSystem& value) { SetFileSystem(value); return *this;} /** *

A description of the file system that was updated.

*/ inline UpdateFileSystemResult& WithFileSystem(FileSystem&& value) { SetFileSystem(std::move(value)); return *this;} private: FileSystem m_fileSystem; }; } // namespace Model } // namespace FSx } // namespace Aws