123 lines
3.8 KiB
C++
123 lines
3.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/imagebuilder/Imagebuilder_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace imagebuilder
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_IMAGEBUILDER_API DeleteComponentResult
|
|
{
|
|
public:
|
|
DeleteComponentResult();
|
|
DeleteComponentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DeleteComponentResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline const Aws::String& GetRequestId() const{ return m_requestId; }
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline void SetRequestId(const char* value) { m_requestId.assign(value); }
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The request ID that uniquely identifies this request. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline const Aws::String& GetComponentBuildVersionArn() const{ return m_componentBuildVersionArn; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline void SetComponentBuildVersionArn(const Aws::String& value) { m_componentBuildVersionArn = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline void SetComponentBuildVersionArn(Aws::String&& value) { m_componentBuildVersionArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline void SetComponentBuildVersionArn(const char* value) { m_componentBuildVersionArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithComponentBuildVersionArn(const Aws::String& value) { SetComponentBuildVersionArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithComponentBuildVersionArn(Aws::String&& value) { SetComponentBuildVersionArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the component build version that was
|
|
* deleted. </p>
|
|
*/
|
|
inline DeleteComponentResult& WithComponentBuildVersionArn(const char* value) { SetComponentBuildVersionArn(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_requestId;
|
|
|
|
Aws::String m_componentBuildVersionArn;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace imagebuilder
|
|
} // namespace Aws
|