/** * 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 QuickSight { namespace Model { class DescribeFolderResult { public: AWS_QUICKSIGHT_API DescribeFolderResult(); AWS_QUICKSIGHT_API DescribeFolderResult(const Aws::AmazonWebServiceResult& result); AWS_QUICKSIGHT_API DescribeFolderResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The HTTP status of the request.

*/ inline int GetStatus() const{ return m_status; } /** *

The HTTP status of the request.

*/ inline void SetStatus(int value) { m_status = value; } /** *

The HTTP status of the request.

*/ inline DescribeFolderResult& WithStatus(int value) { SetStatus(value); return *this;} /** *

Information about the folder.

*/ inline const Folder& GetFolder() const{ return m_folder; } /** *

Information about the folder.

*/ inline void SetFolder(const Folder& value) { m_folder = value; } /** *

Information about the folder.

*/ inline void SetFolder(Folder&& value) { m_folder = std::move(value); } /** *

Information about the folder.

*/ inline DescribeFolderResult& WithFolder(const Folder& value) { SetFolder(value); return *this;} /** *

Information about the folder.

*/ inline DescribeFolderResult& WithFolder(Folder&& value) { SetFolder(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 DescribeFolderResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeFolderResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeFolderResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: int m_status; Folder m_folder; Aws::String m_requestId; }; } // namespace Model } // namespace QuickSight } // namespace Aws