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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

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

The embed URL for the dashboard.

*/ inline GenerateEmbedUrlForAnonymousUserResult& 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 GenerateEmbedUrlForAnonymousUserResult& 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 GenerateEmbedUrlForAnonymousUserResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GenerateEmbedUrlForAnonymousUserResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GenerateEmbedUrlForAnonymousUserResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

*/ inline const Aws::String& GetAnonymousUserArn() const{ return m_anonymousUserArn; } /** *

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

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

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

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

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

*/ inline void SetAnonymousUserArn(const char* value) { m_anonymousUserArn.assign(value); } /** *

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

*/ inline GenerateEmbedUrlForAnonymousUserResult& WithAnonymousUserArn(const Aws::String& value) { SetAnonymousUserArn(value); return *this;} /** *

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

*/ inline GenerateEmbedUrlForAnonymousUserResult& WithAnonymousUserArn(Aws::String&& value) { SetAnonymousUserArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) to use for the anonymous Amazon QuickSight * user.

*/ inline GenerateEmbedUrlForAnonymousUserResult& WithAnonymousUserArn(const char* value) { SetAnonymousUserArn(value); return *this;} private: Aws::String m_embedUrl; int m_status; Aws::String m_requestId; Aws::String m_anonymousUserArn; }; } // namespace Model } // namespace QuickSight } // namespace Aws