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

The ISO 639-1 code for the language that you want your checks 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 checks 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 checks 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 checks 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 checks 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 checks 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 DescribeTrustedAdvisorChecksRequest& WithLanguage(const Aws::String& value) { SetLanguage(value); return *this;} /** *

The ISO 639-1 code for the language that you want your checks 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 DescribeTrustedAdvisorChecksRequest& WithLanguage(Aws::String&& value) { SetLanguage(std::move(value)); return *this;} /** *

The ISO 639-1 code for the language that you want your checks 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 DescribeTrustedAdvisorChecksRequest& WithLanguage(const char* value) { SetLanguage(value); return *this;} private: Aws::String m_language; bool m_languageHasBeenSet = false; }; } // namespace Model } // namespace Support } // namespace Aws