/**
* 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 CreateConfigResult
{
public:
AWS_GROUNDSTATION_API CreateConfigResult();
AWS_GROUNDSTATION_API CreateConfigResult(const Aws::AmazonWebServiceResult& result);
AWS_GROUNDSTATION_API CreateConfigResult& 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 CreateConfigResult& WithConfigArn(const Aws::String& value) { SetConfigArn(value); return *this;}
/**
* ARN of a Config
.
*/
inline CreateConfigResult& WithConfigArn(Aws::String&& value) { SetConfigArn(std::move(value)); return *this;}
/**
* ARN of a Config
.
*/
inline CreateConfigResult& 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 CreateConfigResult& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;}
/**
* UUID of a Config
.
*/
inline CreateConfigResult& WithConfigId(Aws::String&& value) { SetConfigId(std::move(value)); return *this;}
/**
* UUID of a Config
.
*/
inline CreateConfigResult& 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 CreateConfigResult& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;}
/**
* Type of a Config
.
*/
inline CreateConfigResult& 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 CreateConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
inline CreateConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
inline CreateConfigResult& 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