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-ecr/include/aws/ecr/model/PutImageResult.h

68 lines
1.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ecr/ECR_EXPORTS.h>
#include <aws/ecr/model/Image.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace ECR
{
namespace Model
{
class AWS_ECR_API PutImageResult
{
public:
PutImageResult();
PutImageResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
PutImageResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Details of the image uploaded.</p>
*/
inline const Image& GetImage() const{ return m_image; }
/**
* <p>Details of the image uploaded.</p>
*/
inline void SetImage(const Image& value) { m_image = value; }
/**
* <p>Details of the image uploaded.</p>
*/
inline void SetImage(Image&& value) { m_image = std::move(value); }
/**
* <p>Details of the image uploaded.</p>
*/
inline PutImageResult& WithImage(const Image& value) { SetImage(value); return *this;}
/**
* <p>Details of the image uploaded.</p>
*/
inline PutImageResult& WithImage(Image&& value) { SetImage(std::move(value)); return *this;}
private:
Image m_image;
};
} // namespace Model
} // namespace ECR
} // namespace Aws