/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace QuickSight { namespace Model { /** */ class DescribeAnalysisRequest : public QuickSightRequest { public: AWS_QUICKSIGHT_API DescribeAnalysisRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeAnalysis"; } AWS_QUICKSIGHT_API Aws::String SerializePayload() const override; /** *

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

*/ inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; } /** *

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the Amazon Web Services account that contains the analysis. You * must be using the Amazon Web Services account that the analysis is in.

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

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline const Aws::String& GetAnalysisId() const{ return m_analysisId; } /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline bool AnalysisIdHasBeenSet() const { return m_analysisIdHasBeenSet; } /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline void SetAnalysisId(const Aws::String& value) { m_analysisIdHasBeenSet = true; m_analysisId = value; } /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline void SetAnalysisId(Aws::String&& value) { m_analysisIdHasBeenSet = true; m_analysisId = std::move(value); } /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline void SetAnalysisId(const char* value) { m_analysisIdHasBeenSet = true; m_analysisId.assign(value); } /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline DescribeAnalysisRequest& WithAnalysisId(const Aws::String& value) { SetAnalysisId(value); return *this;} /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline DescribeAnalysisRequest& WithAnalysisId(Aws::String&& value) { SetAnalysisId(std::move(value)); return *this;} /** *

The ID of the analysis that you're describing. The ID is part of the URL of * the analysis.

*/ inline DescribeAnalysisRequest& WithAnalysisId(const char* value) { SetAnalysisId(value); return *this;} private: Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet = false; Aws::String m_analysisId; bool m_analysisIdHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws