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

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

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

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

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

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

*/ inline DescribeAccountCustomizationResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

*/ inline DescribeAccountCustomizationResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the customization that's associated with * this Amazon Web Services account.

*/ inline DescribeAccountCustomizationResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

The ID for the Amazon Web Services account that you're describing.

*/ inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; } /** *

The ID for the Amazon Web Services account that you're describing.

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

The ID for the Amazon Web Services account that you're describing.

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

The ID for the Amazon Web Services account that you're describing.

*/ inline void SetAwsAccountId(const char* value) { m_awsAccountId.assign(value); } /** *

The ID for the Amazon Web Services account that you're describing.

*/ inline DescribeAccountCustomizationResult& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;} /** *

The ID for the Amazon Web Services account that you're describing.

*/ inline DescribeAccountCustomizationResult& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;} /** *

The ID for the Amazon Web Services account that you're describing.

*/ inline DescribeAccountCustomizationResult& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;} /** *

The Amazon QuickSight namespace that you're describing.

*/ inline const Aws::String& GetNamespace() const{ return m_namespace; } /** *

The Amazon QuickSight namespace that you're describing.

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

The Amazon QuickSight namespace that you're describing.

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

The Amazon QuickSight namespace that you're describing.

*/ inline void SetNamespace(const char* value) { m_namespace.assign(value); } /** *

The Amazon QuickSight namespace that you're describing.

*/ inline DescribeAccountCustomizationResult& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;} /** *

The Amazon QuickSight namespace that you're describing.

*/ inline DescribeAccountCustomizationResult& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;} /** *

The Amazon QuickSight namespace that you're describing.

*/ inline DescribeAccountCustomizationResult& WithNamespace(const char* value) { SetNamespace(value); return *this;} /** *

The Amazon QuickSight customizations that exist in the current Amazon Web * Services Region.

*/ inline const AccountCustomization& GetAccountCustomization() const{ return m_accountCustomization; } /** *

The Amazon QuickSight customizations that exist in the current Amazon Web * Services Region.

*/ inline void SetAccountCustomization(const AccountCustomization& value) { m_accountCustomization = value; } /** *

The Amazon QuickSight customizations that exist in the current Amazon Web * Services Region.

*/ inline void SetAccountCustomization(AccountCustomization&& value) { m_accountCustomization = std::move(value); } /** *

The Amazon QuickSight customizations that exist in the current Amazon Web * Services Region.

*/ inline DescribeAccountCustomizationResult& WithAccountCustomization(const AccountCustomization& value) { SetAccountCustomization(value); return *this;} /** *

The Amazon QuickSight customizations that exist in the current Amazon Web * Services Region.

*/ inline DescribeAccountCustomizationResult& WithAccountCustomization(AccountCustomization&& value) { SetAccountCustomization(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 DescribeAccountCustomizationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeAccountCustomizationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeAccountCustomizationResult& WithRequestId(const char* value) { SetRequestId(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 DescribeAccountCustomizationResult& WithStatus(int value) { SetStatus(value); return *this;} private: Aws::String m_arn; Aws::String m_awsAccountId; Aws::String m_namespace; AccountCustomization m_accountCustomization; Aws::String m_requestId; int m_status; }; } // namespace Model } // namespace QuickSight } // namespace Aws