/** * 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 Kafka { namespace Model { class AWS_KAFKA_API DeleteConfigurationResult { public: DeleteConfigurationResult(); DeleteConfigurationResult(const Aws::AmazonWebServiceResult& result); DeleteConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

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

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

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

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

*/ inline DeleteConfigurationResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

*/ inline DeleteConfigurationResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) that uniquely identifies an MSK * configuration.

*/ inline DeleteConfigurationResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

The state of the configuration. The possible states are ACTIVE, * DELETING, and DELETE_FAILED.

*/ inline const ConfigurationState& GetState() const{ return m_state; } /** *

The state of the configuration. The possible states are ACTIVE, * DELETING, and DELETE_FAILED.

*/ inline void SetState(const ConfigurationState& value) { m_state = value; } /** *

The state of the configuration. The possible states are ACTIVE, * DELETING, and DELETE_FAILED.

*/ inline void SetState(ConfigurationState&& value) { m_state = std::move(value); } /** *

The state of the configuration. The possible states are ACTIVE, * DELETING, and DELETE_FAILED.

*/ inline DeleteConfigurationResult& WithState(const ConfigurationState& value) { SetState(value); return *this;} /** *

The state of the configuration. The possible states are ACTIVE, * DELETING, and DELETE_FAILED.

*/ inline DeleteConfigurationResult& WithState(ConfigurationState&& value) { SetState(std::move(value)); return *this;} private: Aws::String m_arn; ConfigurationState m_state; }; } // namespace Model } // namespace Kafka } // namespace Aws