/** * 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 Support { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DescribeTrustedAdvisorCheckResultRequest : public SupportRequest { public: AWS_SUPPORT_API DescribeTrustedAdvisorCheckResultRequest(); // 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 "DescribeTrustedAdvisorCheckResult"; } AWS_SUPPORT_API Aws::String SerializePayload() const override; AWS_SUPPORT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique identifier for the Trusted Advisor check.

*/ inline const Aws::String& GetCheckId() const{ return m_checkId; } /** *

The unique identifier for the Trusted Advisor check.

*/ inline bool CheckIdHasBeenSet() const { return m_checkIdHasBeenSet; } /** *

The unique identifier for the Trusted Advisor check.

*/ inline void SetCheckId(const Aws::String& value) { m_checkIdHasBeenSet = true; m_checkId = value; } /** *

The unique identifier for the Trusted Advisor check.

*/ inline void SetCheckId(Aws::String&& value) { m_checkIdHasBeenSet = true; m_checkId = std::move(value); } /** *

The unique identifier for the Trusted Advisor check.

*/ inline void SetCheckId(const char* value) { m_checkIdHasBeenSet = true; m_checkId.assign(value); } /** *

The unique identifier for the Trusted Advisor check.

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithCheckId(const Aws::String& value) { SetCheckId(value); return *this;} /** *

The unique identifier for the Trusted Advisor check.

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithCheckId(Aws::String&& value) { SetCheckId(std::move(value)); return *this;} /** *

The unique identifier for the Trusted Advisor check.

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithCheckId(const char* value) { SetCheckId(value); return *this;} /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline const Aws::String& GetLanguage() const{ return m_language; } /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline bool LanguageHasBeenSet() const { return m_languageHasBeenSet; } /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline void SetLanguage(const Aws::String& value) { m_languageHasBeenSet = true; m_language = value; } /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline void SetLanguage(Aws::String&& value) { m_languageHasBeenSet = true; m_language = std::move(value); } /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline void SetLanguage(const char* value) { m_languageHasBeenSet = true; m_language.assign(value); } /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithLanguage(const Aws::String& value) { SetLanguage(value); return *this;} /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithLanguage(Aws::String&& value) { SetLanguage(std::move(value)); return *this;} /** *

The ISO 639-1 code for the language that you want your check results to * appear in.

The Amazon Web Services Support API currently supports the * following languages for Trusted Advisor:

  • Chinese, Simplified - * zh

  • Chinese, Traditional - zh_TW *

  • English - en

  • French - * fr

  • German - de

  • *

    Indonesian - id

  • Italian - it *

  • Japanese - ja

  • Korean - * ko

  • Portuguese, Brazilian - pt_BR *

  • Spanish - es

*/ inline DescribeTrustedAdvisorCheckResultRequest& WithLanguage(const char* value) { SetLanguage(value); return *this;} private: Aws::String m_checkId; bool m_checkIdHasBeenSet = false; Aws::String m_language; bool m_languageHasBeenSet = false; }; } // namespace Model } // namespace Support } // namespace Aws