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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The Amazon Resource Name (ARN) for the updated customization for this Amazon * Web Services account.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The ID for the Amazon Web Services account that you want to update Amazon * QuickSight customizations for.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The namespace associated with the customization that you're updating.

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

The Amazon QuickSight customizations you're updating in the current Amazon * Web Services Region.

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

The Amazon QuickSight customizations you're updating in the current Amazon * Web Services Region.

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

The Amazon QuickSight customizations you're updating in the current Amazon * Web Services Region.

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

The Amazon QuickSight customizations you're updating in the current Amazon * Web Services Region.

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

The Amazon QuickSight customizations you're updating in the current Amazon * Web Services Region.

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