Files

94 lines
3.5 KiB
C
Raw Permalink 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/ImageIdentifier.h>
#include <aws/ecr/model/ImageFailureCode.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ECR
{
namespace Model
{
/**
* <p>An object representing an Amazon ECR image failure.</p><p><h3>See Also:</h3>
* <a href="http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/ImageFailure">AWS
* API Reference</a></p>
*/
class ImageFailure
{
public:
AWS_ECR_API ImageFailure();
AWS_ECR_API ImageFailure(Aws::Utils::Json::JsonView jsonValue);
AWS_ECR_API ImageFailure& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_ECR_API Aws::Utils::Json::JsonValue Jsonize() const;
///@{
/**
* <p>The image ID associated with the failure.</p>
*/
inline const ImageIdentifier& GetImageId() const{ return m_imageId; }
inline bool ImageIdHasBeenSet() const { return m_imageIdHasBeenSet; }
inline void SetImageId(const ImageIdentifier& value) { m_imageIdHasBeenSet = true; m_imageId = value; }
inline void SetImageId(ImageIdentifier&& value) { m_imageIdHasBeenSet = true; m_imageId = std::move(value); }
inline ImageFailure& WithImageId(const ImageIdentifier& value) { SetImageId(value); return *this;}
inline ImageFailure& WithImageId(ImageIdentifier&& value) { SetImageId(std::move(value)); return *this;}
///@}
///@{
/**
* <p>The code associated with the failure.</p>
*/
inline const ImageFailureCode& GetFailureCode() const{ return m_failureCode; }
inline bool FailureCodeHasBeenSet() const { return m_failureCodeHasBeenSet; }
inline void SetFailureCode(const ImageFailureCode& value) { m_failureCodeHasBeenSet = true; m_failureCode = value; }
inline void SetFailureCode(ImageFailureCode&& value) { m_failureCodeHasBeenSet = true; m_failureCode = std::move(value); }
inline ImageFailure& WithFailureCode(const ImageFailureCode& value) { SetFailureCode(value); return *this;}
inline ImageFailure& WithFailureCode(ImageFailureCode&& value) { SetFailureCode(std::move(value)); return *this;}
///@}
///@{
/**
* <p>The reason for the failure.</p>
*/
inline const Aws::String& GetFailureReason() const{ return m_failureReason; }
inline bool FailureReasonHasBeenSet() const { return m_failureReasonHasBeenSet; }
inline void SetFailureReason(const Aws::String& value) { m_failureReasonHasBeenSet = true; m_failureReason = value; }
inline void SetFailureReason(Aws::String&& value) { m_failureReasonHasBeenSet = true; m_failureReason = std::move(value); }
inline void SetFailureReason(const char* value) { m_failureReasonHasBeenSet = true; m_failureReason.assign(value); }
inline ImageFailure& WithFailureReason(const Aws::String& value) { SetFailureReason(value); return *this;}
inline ImageFailure& WithFailureReason(Aws::String&& value) { SetFailureReason(std::move(value)); return *this;}
inline ImageFailure& WithFailureReason(const char* value) { SetFailureReason(value); return *this;}
///@}
private:
ImageIdentifier m_imageId;
bool m_imageIdHasBeenSet = false;
ImageFailureCode m_failureCode;
bool m_failureCodeHasBeenSet = false;
Aws::String m_failureReason;
bool m_failureReasonHasBeenSet = false;
};
} // namespace Model
} // namespace ECR
} // namespace Aws