/** * 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 DescribeThemeAliasRequest : public QuickSightRequest { public: AWS_QUICKSIGHT_API DescribeThemeAliasRequest(); // 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 "DescribeThemeAlias"; } AWS_QUICKSIGHT_API Aws::String SerializePayload() const override; /** *

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

*/ 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 theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID of the Amazon Web Services account that contains the theme alias that * you're describing.

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

The ID for the theme.

*/ inline const Aws::String& GetThemeId() const{ return m_themeId; } /** *

The ID for the theme.

*/ inline bool ThemeIdHasBeenSet() const { return m_themeIdHasBeenSet; } /** *

The ID for the theme.

*/ inline void SetThemeId(const Aws::String& value) { m_themeIdHasBeenSet = true; m_themeId = value; } /** *

The ID for the theme.

*/ inline void SetThemeId(Aws::String&& value) { m_themeIdHasBeenSet = true; m_themeId = std::move(value); } /** *

The ID for the theme.

*/ inline void SetThemeId(const char* value) { m_themeIdHasBeenSet = true; m_themeId.assign(value); } /** *

The ID for the theme.

*/ inline DescribeThemeAliasRequest& WithThemeId(const Aws::String& value) { SetThemeId(value); return *this;} /** *

The ID for the theme.

*/ inline DescribeThemeAliasRequest& WithThemeId(Aws::String&& value) { SetThemeId(std::move(value)); return *this;} /** *

The ID for the theme.

*/ inline DescribeThemeAliasRequest& WithThemeId(const char* value) { SetThemeId(value); return *this;} /** *

The name of the theme alias that you want to describe.

*/ inline const Aws::String& GetAliasName() const{ return m_aliasName; } /** *

The name of the theme alias that you want to describe.

*/ inline bool AliasNameHasBeenSet() const { return m_aliasNameHasBeenSet; } /** *

The name of the theme alias that you want to describe.

*/ inline void SetAliasName(const Aws::String& value) { m_aliasNameHasBeenSet = true; m_aliasName = value; } /** *

The name of the theme alias that you want to describe.

*/ inline void SetAliasName(Aws::String&& value) { m_aliasNameHasBeenSet = true; m_aliasName = std::move(value); } /** *

The name of the theme alias that you want to describe.

*/ inline void SetAliasName(const char* value) { m_aliasNameHasBeenSet = true; m_aliasName.assign(value); } /** *

The name of the theme alias that you want to describe.

*/ inline DescribeThemeAliasRequest& WithAliasName(const Aws::String& value) { SetAliasName(value); return *this;} /** *

The name of the theme alias that you want to describe.

*/ inline DescribeThemeAliasRequest& WithAliasName(Aws::String&& value) { SetAliasName(std::move(value)); return *this;} /** *

The name of the theme alias that you want to describe.

*/ inline DescribeThemeAliasRequest& WithAliasName(const char* value) { SetAliasName(value); return *this;} private: Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet = false; Aws::String m_themeId; bool m_themeIdHasBeenSet = false; Aws::String m_aliasName; bool m_aliasNameHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws