This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-imagebuilder/include/aws/imagebuilder/model/PutImageRecipePolicyResult.h

123 lines
3.7 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 PutImageRecipePolicyResult
{
public:
PutImageRecipePolicyResult();
PutImageRecipePolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
PutImageRecipePolicyResult& 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 PutImageRecipePolicyResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
/**
* <p>The request ID that uniquely identifies this request. </p>
*/
inline PutImageRecipePolicyResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
/**
* <p>The request ID that uniquely identifies this request. </p>
*/
inline PutImageRecipePolicyResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline const Aws::String& GetImageRecipeArn() const{ return m_imageRecipeArn; }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline void SetImageRecipeArn(const Aws::String& value) { m_imageRecipeArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline void SetImageRecipeArn(Aws::String&& value) { m_imageRecipeArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline void SetImageRecipeArn(const char* value) { m_imageRecipeArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline PutImageRecipePolicyResult& WithImageRecipeArn(const Aws::String& value) { SetImageRecipeArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline PutImageRecipePolicyResult& WithImageRecipeArn(Aws::String&& value) { SetImageRecipeArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the image recipe that this policy was
* applied to. </p>
*/
inline PutImageRecipePolicyResult& WithImageRecipeArn(const char* value) { SetImageRecipeArn(value); return *this;}
private:
Aws::String m_requestId;
Aws::String m_imageRecipeArn;
};
} // namespace Model
} // namespace imagebuilder
} // namespace Aws