/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/kafkaconnect/KafkaConnect_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/kafkaconnect/model/ConnectorState.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KafkaConnect { namespace Model { class UpdateConnectorResult { public: AWS_KAFKACONNECT_API UpdateConnectorResult(); AWS_KAFKACONNECT_API UpdateConnectorResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_KAFKACONNECT_API UpdateConnectorResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline const Aws::String& GetConnectorArn() const{ return m_connectorArn; } /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline void SetConnectorArn(const Aws::String& value) { m_connectorArn = value; } /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline void SetConnectorArn(Aws::String&& value) { m_connectorArn = std::move(value); } /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline void SetConnectorArn(const char* value) { m_connectorArn.assign(value); } /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline UpdateConnectorResult& WithConnectorArn(const Aws::String& value) { SetConnectorArn(value); return *this;} /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline UpdateConnectorResult& WithConnectorArn(Aws::String&& value) { SetConnectorArn(std::move(value)); return *this;} /** * <p>The Amazon Resource Name (ARN) of the connector.</p> */ inline UpdateConnectorResult& WithConnectorArn(const char* value) { SetConnectorArn(value); return *this;} /** * <p>The state of the connector.</p> */ inline const ConnectorState& GetConnectorState() const{ return m_connectorState; } /** * <p>The state of the connector.</p> */ inline void SetConnectorState(const ConnectorState& value) { m_connectorState = value; } /** * <p>The state of the connector.</p> */ inline void SetConnectorState(ConnectorState&& value) { m_connectorState = std::move(value); } /** * <p>The state of the connector.</p> */ inline UpdateConnectorResult& WithConnectorState(const ConnectorState& value) { SetConnectorState(value); return *this;} /** * <p>The state of the connector.</p> */ inline UpdateConnectorResult& WithConnectorState(ConnectorState&& value) { SetConnectorState(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 UpdateConnectorResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateConnectorResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateConnectorResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_connectorArn; ConnectorState m_connectorState; Aws::String m_requestId; }; } // namespace Model } // namespace KafkaConnect } // namespace Aws