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/CreateFileSystemFromBackupResult.h

75 lines
2.0 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/fsx/model/FileSystem.h>
#include <aws/fsx/model/AdministrativeAction.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace FSx
{
namespace Model
{
/**
* <p>The response object for the <code>CreateFileSystemFromBackup</code>
* operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackupResponse">AWS
* API Reference</a></p>
*/
class AWS_FSX_API CreateFileSystemFromBackupResult
{
public:
CreateFileSystemFromBackupResult();
CreateFileSystemFromBackupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateFileSystemFromBackupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A description of the file system.</p>
*/
inline const FileSystem& GetFileSystem() const{ return m_fileSystem; }
/**
* <p>A description of the file system.</p>
*/
inline void SetFileSystem(const FileSystem& value) { m_fileSystem = value; }
/**
* <p>A description of the file system.</p>
*/
inline void SetFileSystem(FileSystem&& value) { m_fileSystem = std::move(value); }
/**
* <p>A description of the file system.</p>
*/
inline CreateFileSystemFromBackupResult& WithFileSystem(const FileSystem& value) { SetFileSystem(value); return *this;}
/**
* <p>A description of the file system.</p>
*/
inline CreateFileSystemFromBackupResult& WithFileSystem(FileSystem&& value) { SetFileSystem(std::move(value)); return *this;}
private:
FileSystem m_fileSystem;
};
} // namespace Model
} // namespace FSx
} // namespace Aws