/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a block storage disk that is attached to an instance, and is
* included in an automatic snapshot.See Also:
AWS
* API Reference
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The path of the disk (e.g., /dev/xvdf
).
The size of the disk in GB.
*/ inline int GetSizeInGb() const{ return m_sizeInGb; } /** *The size of the disk in GB.
*/ inline bool SizeInGbHasBeenSet() const { return m_sizeInGbHasBeenSet; } /** *The size of the disk in GB.
*/ inline void SetSizeInGb(int value) { m_sizeInGbHasBeenSet = true; m_sizeInGb = value; } /** *The size of the disk in GB.
*/ inline AttachedDisk& WithSizeInGb(int value) { SetSizeInGb(value); return *this;} private: Aws::String m_path; bool m_pathHasBeenSet = false; int m_sizeInGb; bool m_sizeInGbHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws