292 lines
8.7 KiB
C++
292 lines
8.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a volume status event.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusEvent">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API VolumeStatusEvent
|
|
{
|
|
public:
|
|
VolumeStatusEvent();
|
|
VolumeStatusEvent(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
VolumeStatusEvent& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
|
|
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
|
|
void OutputToStream(Aws::OStream& oStream, const char* location) const;
|
|
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline const Aws::String& GetEventId() const{ return m_eventId; }
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline bool EventIdHasBeenSet() const { return m_eventIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline void SetEventId(const Aws::String& value) { m_eventIdHasBeenSet = true; m_eventId = value; }
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline void SetEventId(Aws::String&& value) { m_eventIdHasBeenSet = true; m_eventId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline void SetEventId(const char* value) { m_eventIdHasBeenSet = true; m_eventId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventId(const Aws::String& value) { SetEventId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventId(Aws::String&& value) { SetEventId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventId(const char* value) { SetEventId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline const Aws::String& GetEventType() const{ return m_eventType; }
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline bool EventTypeHasBeenSet() const { return m_eventTypeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline void SetEventType(const Aws::String& value) { m_eventTypeHasBeenSet = true; m_eventType = value; }
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline void SetEventType(Aws::String&& value) { m_eventTypeHasBeenSet = true; m_eventType = std::move(value); }
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline void SetEventType(const char* value) { m_eventTypeHasBeenSet = true; m_eventType.assign(value); }
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventType(const Aws::String& value) { SetEventType(value); return *this;}
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventType(Aws::String&& value) { SetEventType(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The type of this event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithEventType(const char* value) { SetEventType(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetNotAfter() const{ return m_notAfter; }
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline bool NotAfterHasBeenSet() const { return m_notAfterHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline void SetNotAfter(const Aws::Utils::DateTime& value) { m_notAfterHasBeenSet = true; m_notAfter = value; }
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline void SetNotAfter(Aws::Utils::DateTime&& value) { m_notAfterHasBeenSet = true; m_notAfter = std::move(value); }
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithNotAfter(const Aws::Utils::DateTime& value) { SetNotAfter(value); return *this;}
|
|
|
|
/**
|
|
* <p>The latest end time of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithNotAfter(Aws::Utils::DateTime&& value) { SetNotAfter(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetNotBefore() const{ return m_notBefore; }
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline bool NotBeforeHasBeenSet() const { return m_notBeforeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline void SetNotBefore(const Aws::Utils::DateTime& value) { m_notBeforeHasBeenSet = true; m_notBefore = value; }
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline void SetNotBefore(Aws::Utils::DateTime&& value) { m_notBeforeHasBeenSet = true; m_notBefore = std::move(value); }
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithNotBefore(const Aws::Utils::DateTime& value) { SetNotBefore(value); return *this;}
|
|
|
|
/**
|
|
* <p>The earliest start time of the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithNotBefore(Aws::Utils::DateTime&& value) { SetNotBefore(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the instance associated with the event.</p>
|
|
*/
|
|
inline VolumeStatusEvent& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
Aws::String m_eventId;
|
|
bool m_eventIdHasBeenSet;
|
|
|
|
Aws::String m_eventType;
|
|
bool m_eventTypeHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_notAfter;
|
|
bool m_notAfterHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_notBefore;
|
|
bool m_notBeforeHasBeenSet;
|
|
|
|
Aws::String m_instanceId;
|
|
bool m_instanceIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|