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-dax/include/aws/dax/model/Event.h

219 lines
6.9 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/dax/DAX_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/dax/model/SourceType.h>
#include <aws/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace DAX
{
namespace Model
{
/**
* <p>Represents a single occurrence of something interesting within the system.
* Some examples of events are creating a DAX cluster, adding or removing a node,
* or rebooting a node.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/Event">AWS API
* Reference</a></p>
*/
class AWS_DAX_API Event
{
public:
Event();
Event(Aws::Utils::Json::JsonView jsonValue);
Event& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline const Aws::String& GetSourceName() const{ return m_sourceName; }
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline bool SourceNameHasBeenSet() const { return m_sourceNameHasBeenSet; }
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline void SetSourceName(const Aws::String& value) { m_sourceNameHasBeenSet = true; m_sourceName = value; }
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline void SetSourceName(Aws::String&& value) { m_sourceNameHasBeenSet = true; m_sourceName = std::move(value); }
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline void SetSourceName(const char* value) { m_sourceNameHasBeenSet = true; m_sourceName.assign(value); }
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline Event& WithSourceName(const Aws::String& value) { SetSourceName(value); return *this;}
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline Event& WithSourceName(Aws::String&& value) { SetSourceName(std::move(value)); return *this;}
/**
* <p>The source of the event. For example, if the event occurred at the node
* level, the source would be the node ID.</p>
*/
inline Event& WithSourceName(const char* value) { SetSourceName(value); return *this;}
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline const SourceType& GetSourceType() const{ return m_sourceType; }
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline bool SourceTypeHasBeenSet() const { return m_sourceTypeHasBeenSet; }
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline void SetSourceType(const SourceType& value) { m_sourceTypeHasBeenSet = true; m_sourceType = value; }
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline void SetSourceType(SourceType&& value) { m_sourceTypeHasBeenSet = true; m_sourceType = std::move(value); }
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline Event& WithSourceType(const SourceType& value) { SetSourceType(value); return *this;}
/**
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
* etc.</p>
*/
inline Event& WithSourceType(SourceType&& value) { SetSourceType(std::move(value)); return *this;}
/**
* <p>A user-defined message associated with the event.</p>
*/
inline const Aws::String& GetMessage() const{ return m_message; }
/**
* <p>A user-defined message associated with the event.</p>
*/
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
/**
* <p>A user-defined message associated with the event.</p>
*/
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
/**
* <p>A user-defined message associated with the event.</p>
*/
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
/**
* <p>A user-defined message associated with the event.</p>
*/
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
/**
* <p>A user-defined message associated with the event.</p>
*/
inline Event& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
/**
* <p>A user-defined message associated with the event.</p>
*/
inline Event& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
/**
* <p>A user-defined message associated with the event.</p>
*/
inline Event& WithMessage(const char* value) { SetMessage(value); return *this;}
/**
* <p>The date and time when the event occurred.</p>
*/
inline const Aws::Utils::DateTime& GetDate() const{ return m_date; }
/**
* <p>The date and time when the event occurred.</p>
*/
inline bool DateHasBeenSet() const { return m_dateHasBeenSet; }
/**
* <p>The date and time when the event occurred.</p>
*/
inline void SetDate(const Aws::Utils::DateTime& value) { m_dateHasBeenSet = true; m_date = value; }
/**
* <p>The date and time when the event occurred.</p>
*/
inline void SetDate(Aws::Utils::DateTime&& value) { m_dateHasBeenSet = true; m_date = std::move(value); }
/**
* <p>The date and time when the event occurred.</p>
*/
inline Event& WithDate(const Aws::Utils::DateTime& value) { SetDate(value); return *this;}
/**
* <p>The date and time when the event occurred.</p>
*/
inline Event& WithDate(Aws::Utils::DateTime&& value) { SetDate(std::move(value)); return *this;}
private:
Aws::String m_sourceName;
bool m_sourceNameHasBeenSet;
SourceType m_sourceType;
bool m_sourceTypeHasBeenSet;
Aws::String m_message;
bool m_messageHasBeenSet;
Aws::Utils::DateTime m_date;
bool m_dateHasBeenSet;
};
} // namespace Model
} // namespace DAX
} // namespace Aws