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

Describes a disk image.

See Also:

AWS API * Reference

*/ class DiskImage { public: AWS_EC2_API DiskImage(); AWS_EC2_API DiskImage(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API DiskImage& 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; /** *

A description of the disk image.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the disk image.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description of the disk image.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description of the disk image.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description of the disk image.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description of the disk image.

*/ inline DiskImage& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the disk image.

*/ inline DiskImage& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the disk image.

*/ inline DiskImage& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Information about the disk image.

*/ inline const DiskImageDetail& GetImage() const{ return m_image; } /** *

Information about the disk image.

*/ inline bool ImageHasBeenSet() const { return m_imageHasBeenSet; } /** *

Information about the disk image.

*/ inline void SetImage(const DiskImageDetail& value) { m_imageHasBeenSet = true; m_image = value; } /** *

Information about the disk image.

*/ inline void SetImage(DiskImageDetail&& value) { m_imageHasBeenSet = true; m_image = std::move(value); } /** *

Information about the disk image.

*/ inline DiskImage& WithImage(const DiskImageDetail& value) { SetImage(value); return *this;} /** *

Information about the disk image.

*/ inline DiskImage& WithImage(DiskImageDetail&& value) { SetImage(std::move(value)); return *this;} /** *

Information about the volume.

*/ inline const VolumeDetail& GetVolume() const{ return m_volume; } /** *

Information about the volume.

*/ inline bool VolumeHasBeenSet() const { return m_volumeHasBeenSet; } /** *

Information about the volume.

*/ inline void SetVolume(const VolumeDetail& value) { m_volumeHasBeenSet = true; m_volume = value; } /** *

Information about the volume.

*/ inline void SetVolume(VolumeDetail&& value) { m_volumeHasBeenSet = true; m_volume = std::move(value); } /** *

Information about the volume.

*/ inline DiskImage& WithVolume(const VolumeDetail& value) { SetVolume(value); return *this;} /** *

Information about the volume.

*/ inline DiskImage& WithVolume(VolumeDetail&& value) { SetVolume(std::move(value)); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; DiskImageDetail m_image; bool m_imageHasBeenSet = false; VolumeDetail m_volume; bool m_volumeHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws