/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KafkaConnect { namespace Model { class DeleteCustomPluginResult { public: AWS_KAFKACONNECT_API DeleteCustomPluginResult(); AWS_KAFKACONNECT_API DeleteCustomPluginResult(const Aws::AmazonWebServiceResult& result); AWS_KAFKACONNECT_API DeleteCustomPluginResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline const Aws::String& GetCustomPluginArn() const{ return m_customPluginArn; } /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline void SetCustomPluginArn(const Aws::String& value) { m_customPluginArn = value; } /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline void SetCustomPluginArn(Aws::String&& value) { m_customPluginArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline void SetCustomPluginArn(const char* value) { m_customPluginArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline DeleteCustomPluginResult& WithCustomPluginArn(const Aws::String& value) { SetCustomPluginArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline DeleteCustomPluginResult& WithCustomPluginArn(Aws::String&& value) { SetCustomPluginArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the custom plugin that you requested to * delete.

*/ inline DeleteCustomPluginResult& WithCustomPluginArn(const char* value) { SetCustomPluginArn(value); return *this;} /** *

The state of the custom plugin.

*/ inline const CustomPluginState& GetCustomPluginState() const{ return m_customPluginState; } /** *

The state of the custom plugin.

*/ inline void SetCustomPluginState(const CustomPluginState& value) { m_customPluginState = value; } /** *

The state of the custom plugin.

*/ inline void SetCustomPluginState(CustomPluginState&& value) { m_customPluginState = std::move(value); } /** *

The state of the custom plugin.

*/ inline DeleteCustomPluginResult& WithCustomPluginState(const CustomPluginState& value) { SetCustomPluginState(value); return *this;} /** *

The state of the custom plugin.

*/ inline DeleteCustomPluginResult& WithCustomPluginState(CustomPluginState&& value) { SetCustomPluginState(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeleteCustomPluginResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteCustomPluginResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteCustomPluginResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_customPluginArn; CustomPluginState m_customPluginState; Aws::String m_requestId; }; } // namespace Model } // namespace KafkaConnect } // namespace Aws