/** * 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 Http { class URI; } //namespace Http namespace LexModelsV2 { namespace Model { /** */ class DeleteBotAliasRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API DeleteBotAliasRequest(); // 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 "DeleteBotAlias"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; AWS_LEXMODELSV2_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The unique identifier of the bot alias to delete.

*/ inline const Aws::String& GetBotAliasId() const{ return m_botAliasId; } /** *

The unique identifier of the bot alias to delete.

*/ inline bool BotAliasIdHasBeenSet() const { return m_botAliasIdHasBeenSet; } /** *

The unique identifier of the bot alias to delete.

*/ inline void SetBotAliasId(const Aws::String& value) { m_botAliasIdHasBeenSet = true; m_botAliasId = value; } /** *

The unique identifier of the bot alias to delete.

*/ inline void SetBotAliasId(Aws::String&& value) { m_botAliasIdHasBeenSet = true; m_botAliasId = std::move(value); } /** *

The unique identifier of the bot alias to delete.

*/ inline void SetBotAliasId(const char* value) { m_botAliasIdHasBeenSet = true; m_botAliasId.assign(value); } /** *

The unique identifier of the bot alias to delete.

*/ inline DeleteBotAliasRequest& WithBotAliasId(const Aws::String& value) { SetBotAliasId(value); return *this;} /** *

The unique identifier of the bot alias to delete.

*/ inline DeleteBotAliasRequest& WithBotAliasId(Aws::String&& value) { SetBotAliasId(std::move(value)); return *this;} /** *

The unique identifier of the bot alias to delete.

*/ inline DeleteBotAliasRequest& WithBotAliasId(const char* value) { SetBotAliasId(value); return *this;} /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline const Aws::String& GetBotId() const{ return m_botId; } /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; } /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline void SetBotId(const Aws::String& value) { m_botIdHasBeenSet = true; m_botId = value; } /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline void SetBotId(Aws::String&& value) { m_botIdHasBeenSet = true; m_botId = std::move(value); } /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline void SetBotId(const char* value) { m_botIdHasBeenSet = true; m_botId.assign(value); } /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline DeleteBotAliasRequest& WithBotId(const Aws::String& value) { SetBotId(value); return *this;} /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline DeleteBotAliasRequest& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;} /** *

The unique identifier of the bot associated with the alias to delete.

*/ inline DeleteBotAliasRequest& WithBotId(const char* value) { SetBotId(value); return *this;} /** *

By default, Amazon Lex checks if any other resource, such as a bot network, * is using the bot alias before it is deleted and throws a * ResourceInUseException exception if the alias is being used by * another resource. Set this parameter to true to skip this check and * remove the alias even if it is being used by another resource.

*/ inline bool GetSkipResourceInUseCheck() const{ return m_skipResourceInUseCheck; } /** *

By default, Amazon Lex checks if any other resource, such as a bot network, * is using the bot alias before it is deleted and throws a * ResourceInUseException exception if the alias is being used by * another resource. Set this parameter to true to skip this check and * remove the alias even if it is being used by another resource.

*/ inline bool SkipResourceInUseCheckHasBeenSet() const { return m_skipResourceInUseCheckHasBeenSet; } /** *

By default, Amazon Lex checks if any other resource, such as a bot network, * is using the bot alias before it is deleted and throws a * ResourceInUseException exception if the alias is being used by * another resource. Set this parameter to true to skip this check and * remove the alias even if it is being used by another resource.

*/ inline void SetSkipResourceInUseCheck(bool value) { m_skipResourceInUseCheckHasBeenSet = true; m_skipResourceInUseCheck = value; } /** *

By default, Amazon Lex checks if any other resource, such as a bot network, * is using the bot alias before it is deleted and throws a * ResourceInUseException exception if the alias is being used by * another resource. Set this parameter to true to skip this check and * remove the alias even if it is being used by another resource.

*/ inline DeleteBotAliasRequest& WithSkipResourceInUseCheck(bool value) { SetSkipResourceInUseCheck(value); return *this;} private: Aws::String m_botAliasId; bool m_botAliasIdHasBeenSet = false; Aws::String m_botId; bool m_botIdHasBeenSet = false; bool m_skipResourceInUseCheck; bool m_skipResourceInUseCheckHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws