/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a single occurrence of something interesting within the system.
* Some examples of events are creating a cluster, adding or removing a cache node,
* or rebooting a node.See Also:
AWS
* API Reference
The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline const Aws::String& GetSourceIdentifier() const{ return m_sourceIdentifier; } /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline bool SourceIdentifierHasBeenSet() const { return m_sourceIdentifierHasBeenSet; } /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline void SetSourceIdentifier(const Aws::String& value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier = value; } /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline void SetSourceIdentifier(Aws::String&& value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier = std::move(value); } /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline void SetSourceIdentifier(const char* value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier.assign(value); } /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline Event& WithSourceIdentifier(const Aws::String& value) { SetSourceIdentifier(value); return *this;} /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline Event& WithSourceIdentifier(Aws::String&& value) { SetSourceIdentifier(std::move(value)); return *this;} /** *The identifier for the source of the event. For example, if the event * occurred at the cluster level, the identifier would be the name of the * cluster.
*/ inline Event& WithSourceIdentifier(const char* value) { SetSourceIdentifier(value); return *this;} /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline const SourceType& GetSourceType() const{ return m_sourceType; } /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline bool SourceTypeHasBeenSet() const { return m_sourceTypeHasBeenSet; } /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline void SetSourceType(const SourceType& value) { m_sourceTypeHasBeenSet = true; m_sourceType = value; } /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline void SetSourceType(SourceType&& value) { m_sourceTypeHasBeenSet = true; m_sourceType = std::move(value); } /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline Event& WithSourceType(const SourceType& value) { SetSourceType(value); return *this;} /** *Specifies the origin of this event - a cluster, a parameter group, a security * group, etc.
*/ inline Event& WithSourceType(SourceType&& value) { SetSourceType(std::move(value)); return *this;} /** *The text of the event.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *The text of the event.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *The text of the event.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *The text of the event.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *The text of the event.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *The text of the event.
*/ inline Event& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *The text of the event.
*/ inline Event& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *The text of the event.
*/ inline Event& WithMessage(const char* value) { SetMessage(value); return *this;} /** *The date and time when the event occurred.
*/ inline const Aws::Utils::DateTime& GetDate() const{ return m_date; } /** *The date and time when the event occurred.
*/ inline bool DateHasBeenSet() const { return m_dateHasBeenSet; } /** *The date and time when the event occurred.
*/ inline void SetDate(const Aws::Utils::DateTime& value) { m_dateHasBeenSet = true; m_date = value; } /** *The date and time when the event occurred.
*/ inline void SetDate(Aws::Utils::DateTime&& value) { m_dateHasBeenSet = true; m_date = std::move(value); } /** *The date and time when the event occurred.
*/ inline Event& WithDate(const Aws::Utils::DateTime& value) { SetDate(value); return *this;} /** *The date and time when the event occurred.
*/ inline Event& WithDate(Aws::Utils::DateTime&& value) { SetDate(std::move(value)); return *this;} private: Aws::String m_sourceIdentifier; bool m_sourceIdentifierHasBeenSet = false; SourceType m_sourceType; bool m_sourceTypeHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; Aws::Utils::DateTime m_date; bool m_dateHasBeenSet = false; }; } // namespace Model } // namespace ElastiCache } // namespace Aws