/** * 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 GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DeleteConfigResult { public: AWS_GROUNDSTATION_API DeleteConfigResult(); AWS_GROUNDSTATION_API DeleteConfigResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API DeleteConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

ARN of a Config.

*/ inline const Aws::String& GetConfigArn() const{ return m_configArn; } /** *

ARN of a Config.

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

ARN of a Config.

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

ARN of a Config.

*/ inline void SetConfigArn(const char* value) { m_configArn.assign(value); } /** *

ARN of a Config.

*/ inline DeleteConfigResult& WithConfigArn(const Aws::String& value) { SetConfigArn(value); return *this;} /** *

ARN of a Config.

*/ inline DeleteConfigResult& WithConfigArn(Aws::String&& value) { SetConfigArn(std::move(value)); return *this;} /** *

ARN of a Config.

*/ inline DeleteConfigResult& WithConfigArn(const char* value) { SetConfigArn(value); return *this;} /** *

UUID of a Config.

*/ inline const Aws::String& GetConfigId() const{ return m_configId; } /** *

UUID of a Config.

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

UUID of a Config.

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

UUID of a Config.

*/ inline void SetConfigId(const char* value) { m_configId.assign(value); } /** *

UUID of a Config.

*/ inline DeleteConfigResult& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;} /** *

UUID of a Config.

*/ inline DeleteConfigResult& WithConfigId(Aws::String&& value) { SetConfigId(std::move(value)); return *this;} /** *

UUID of a Config.

*/ inline DeleteConfigResult& WithConfigId(const char* value) { SetConfigId(value); return *this;} /** *

Type of a Config.

*/ inline const ConfigCapabilityType& GetConfigType() const{ return m_configType; } /** *

Type of a Config.

*/ inline void SetConfigType(const ConfigCapabilityType& value) { m_configType = value; } /** *

Type of a Config.

*/ inline void SetConfigType(ConfigCapabilityType&& value) { m_configType = std::move(value); } /** *

Type of a Config.

*/ inline DeleteConfigResult& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;} /** *

Type of a Config.

*/ inline DeleteConfigResult& WithConfigType(ConfigCapabilityType&& value) { SetConfigType(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 DeleteConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configArn; Aws::String m_configId; ConfigCapabilityType m_configType; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws