/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The response object returned after the file system is created.See
* Also:
AWS
* API Reference
The configuration of the file system that was created.
*/ inline const FileSystem& GetFileSystem() const{ return m_fileSystem; } /** *The configuration of the file system that was created.
*/ inline void SetFileSystem(const FileSystem& value) { m_fileSystem = value; } /** *The configuration of the file system that was created.
*/ inline void SetFileSystem(FileSystem&& value) { m_fileSystem = std::move(value); } /** *The configuration of the file system that was created.
*/ inline CreateFileSystemResult& WithFileSystem(const FileSystem& value) { SetFileSystem(value); return *this;} /** *The configuration of the file system that was created.
*/ inline CreateFileSystemResult& WithFileSystem(FileSystem&& value) { SetFileSystem(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateFileSystemResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateFileSystemResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateFileSystemResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: FileSystem m_fileSystem; Aws::String m_requestId; }; } // namespace Model } // namespace FSx } // namespace Aws