/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a disk image.See Also:
AWS API
* Reference
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