/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes a disk image volume.

See Also:

AWS * API Reference

*/ class DiskImageVolumeDescription { public: AWS_EC2_API DiskImageVolumeDescription(); AWS_EC2_API DiskImageVolumeDescription(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API DiskImageVolumeDescription& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The volume identifier.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The volume identifier.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The volume identifier.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The volume identifier.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The volume identifier.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The volume identifier.

*/ inline DiskImageVolumeDescription& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The volume identifier.

*/ inline DiskImageVolumeDescription& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The volume identifier.

*/ inline DiskImageVolumeDescription& WithId(const char* value) { SetId(value); return *this;} /** *

The size of the volume, in GiB.

*/ inline long long GetSize() const{ return m_size; } /** *

The size of the volume, in GiB.

*/ inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; } /** *

The size of the volume, in GiB.

*/ inline void SetSize(long long value) { m_sizeHasBeenSet = true; m_size = value; } /** *

The size of the volume, in GiB.

*/ inline DiskImageVolumeDescription& WithSize(long long value) { SetSize(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; long long m_size; bool m_sizeHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws