/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { class GenerateEmbedUrlForRegisteredUserResult { public: AWS_QUICKSIGHT_API GenerateEmbedUrlForRegisteredUserResult(); AWS_QUICKSIGHT_API GenerateEmbedUrlForRegisteredUserResult(const Aws::AmazonWebServiceResult& result); AWS_QUICKSIGHT_API GenerateEmbedUrlForRegisteredUserResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline const Aws::String& GetEmbedUrl() const{ return m_embedUrl; } /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline void SetEmbedUrl(const Aws::String& value) { m_embedUrl = value; } /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline void SetEmbedUrl(Aws::String&& value) { m_embedUrl = std::move(value); } /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline void SetEmbedUrl(const char* value) { m_embedUrl.assign(value); } /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline GenerateEmbedUrlForRegisteredUserResult& WithEmbedUrl(const Aws::String& value) { SetEmbedUrl(value); return *this;} /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline GenerateEmbedUrlForRegisteredUserResult& WithEmbedUrl(Aws::String&& value) { SetEmbedUrl(std::move(value)); return *this;} /** *

The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or * console.

*/ inline GenerateEmbedUrlForRegisteredUserResult& WithEmbedUrl(const char* value) { SetEmbedUrl(value); return *this;} /** *

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