/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #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 GetConfigResult { public: AWS_GROUNDSTATION_API GetConfigResult(); AWS_GROUNDSTATION_API GetConfigResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API GetConfigResult& 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 GetConfigResult& WithConfigArn(const Aws::String& value) { SetConfigArn(value); return *this;} /** *

ARN of a Config

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

ARN of a Config

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

Data elements in a Config.

*/ inline const ConfigTypeData& GetConfigData() const{ return m_configData; } /** *

Data elements in a Config.

*/ inline void SetConfigData(const ConfigTypeData& value) { m_configData = value; } /** *

Data elements in a Config.

*/ inline void SetConfigData(ConfigTypeData&& value) { m_configData = std::move(value); } /** *

Data elements in a Config.

*/ inline GetConfigResult& WithConfigData(const ConfigTypeData& value) { SetConfigData(value); return *this;} /** *

Data elements in a Config.

*/ inline GetConfigResult& WithConfigData(ConfigTypeData&& value) { SetConfigData(std::move(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 GetConfigResult& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;} /** *

UUID of a Config.

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

UUID of a Config.

*/ inline GetConfigResult& 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 GetConfigResult& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;} /** *

Type of a Config.

*/ inline GetConfigResult& WithConfigType(ConfigCapabilityType&& value) { SetConfigType(std::move(value)); return *this;} /** *

Name of a Config.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

Name of a Config.

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

Name of a Config.

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

Name of a Config.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

Name of a Config.

*/ inline GetConfigResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

Name of a Config.

*/ inline GetConfigResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

Name of a Config.

*/ inline GetConfigResult& WithName(const char* value) { SetName(value); return *this;} /** *

Tags assigned to a Config.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

Tags assigned to a Config.

*/ inline void SetTags(const Aws::Map& value) { m_tags = value; } /** *

Tags assigned to a Config.

*/ inline void SetTags(Aws::Map&& value) { m_tags = std::move(value); } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

Tags assigned to a Config.

*/ inline GetConfigResult& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags assigned to a Config.

*/ inline GetConfigResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, 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 GetConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configArn; ConfigTypeData m_configData; Aws::String m_configId; ConfigCapabilityType m_configType; Aws::String m_name; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws