/** * 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 Chime { namespace Model { /** */ class CreateBotRequest : public ChimeRequest { public: AWS_CHIME_API CreateBotRequest(); // 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 "CreateBot"; } AWS_CHIME_API Aws::String SerializePayload() const override; /** *

The Amazon Chime account ID.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The Amazon Chime account ID.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The Amazon Chime account ID.

*/ inline CreateBotRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The Amazon Chime account ID.

*/ inline CreateBotRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The Amazon Chime account ID.

*/ inline CreateBotRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *

The bot display name.

*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *

The bot display name.

*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *

The bot display name.

*/ inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; } /** *

The bot display name.

*/ inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); } /** *

The bot display name.

*/ inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); } /** *

The bot display name.

*/ inline CreateBotRequest& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *

The bot display name.

*/ inline CreateBotRequest& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *

The bot display name.

*/ inline CreateBotRequest& WithDisplayName(const char* value) { SetDisplayName(value); return *this;} /** *

The domain of the Amazon Chime Enterprise account.

*/ inline const Aws::String& GetDomain() const{ return m_domain; } /** *

The domain of the Amazon Chime Enterprise account.

*/ inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; } /** *

The domain of the Amazon Chime Enterprise account.

*/ inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; } /** *

The domain of the Amazon Chime Enterprise account.

*/ inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); } /** *

The domain of the Amazon Chime Enterprise account.

*/ inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); } /** *

The domain of the Amazon Chime Enterprise account.

*/ inline CreateBotRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;} /** *

The domain of the Amazon Chime Enterprise account.

*/ inline CreateBotRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;} /** *

The domain of the Amazon Chime Enterprise account.

*/ inline CreateBotRequest& WithDomain(const char* value) { SetDomain(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_displayName; bool m_displayNameHasBeenSet = false; Aws::String m_domain; bool m_domainHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws