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-elasticmapreduce/include/aws/elasticmapreduce/model/ClusterStateChangeReason.h

125 lines
3.7 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/elasticmapreduce/EMR_EXPORTS.h>
#include <aws/elasticmapreduce/model/ClusterStateChangeReasonCode.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 EMR
{
namespace Model
{
/**
* <p>The reason that the cluster changed to its current state.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ClusterStateChangeReason">AWS
* API Reference</a></p>
*/
class AWS_EMR_API ClusterStateChangeReason
{
public:
ClusterStateChangeReason();
ClusterStateChangeReason(Aws::Utils::Json::JsonView jsonValue);
ClusterStateChangeReason& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline const ClusterStateChangeReasonCode& GetCode() const{ return m_code; }
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline void SetCode(const ClusterStateChangeReasonCode& value) { m_codeHasBeenSet = true; m_code = value; }
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline void SetCode(ClusterStateChangeReasonCode&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline ClusterStateChangeReason& WithCode(const ClusterStateChangeReasonCode& value) { SetCode(value); return *this;}
/**
* <p>The programmatic code for the state change reason.</p>
*/
inline ClusterStateChangeReason& WithCode(ClusterStateChangeReasonCode&& value) { SetCode(std::move(value)); return *this;}
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline const Aws::String& GetMessage() const{ return m_message; }
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline ClusterStateChangeReason& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline ClusterStateChangeReason& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
/**
* <p>The descriptive message for the state change reason.</p>
*/
inline ClusterStateChangeReason& WithMessage(const char* value) { SetMessage(value); return *this;}
private:
ClusterStateChangeReasonCode m_code;
bool m_codeHasBeenSet;
Aws::String m_message;
bool m_messageHasBeenSet;
};
} // namespace Model
} // namespace EMR
} // namespace Aws