228 lines
7.6 KiB
C++
228 lines
7.6 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/ec2/model/EbsInstanceBlockDeviceSpecification.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a block device mapping entry.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceBlockDeviceMappingSpecification">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API InstanceBlockDeviceMappingSpecification
|
|
{
|
|
public:
|
|
InstanceBlockDeviceMappingSpecification();
|
|
InstanceBlockDeviceMappingSpecification(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
InstanceBlockDeviceMappingSpecification& 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>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline const Aws::String& GetDeviceName() const{ return m_deviceName; }
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline bool DeviceNameHasBeenSet() const { return m_deviceNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline void SetDeviceName(const Aws::String& value) { m_deviceNameHasBeenSet = true; m_deviceName = value; }
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline void SetDeviceName(Aws::String&& value) { m_deviceNameHasBeenSet = true; m_deviceName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline void SetDeviceName(const char* value) { m_deviceNameHasBeenSet = true; m_deviceName.assign(value); }
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithDeviceName(const Aws::String& value) { SetDeviceName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithDeviceName(Aws::String&& value) { SetDeviceName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The device name (for example, <code>/dev/sdh</code> or
|
|
* <code>xvdh</code>).</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithDeviceName(const char* value) { SetDeviceName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline const EbsInstanceBlockDeviceSpecification& GetEbs() const{ return m_ebs; }
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline bool EbsHasBeenSet() const { return m_ebsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline void SetEbs(const EbsInstanceBlockDeviceSpecification& value) { m_ebsHasBeenSet = true; m_ebs = value; }
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline void SetEbs(EbsInstanceBlockDeviceSpecification&& value) { m_ebsHasBeenSet = true; m_ebs = std::move(value); }
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithEbs(const EbsInstanceBlockDeviceSpecification& value) { SetEbs(value); return *this;}
|
|
|
|
/**
|
|
* <p>Parameters used to automatically set up EBS volumes when the instance is
|
|
* launched.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithEbs(EbsInstanceBlockDeviceSpecification&& value) { SetEbs(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline const Aws::String& GetNoDevice() const{ return m_noDevice; }
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline bool NoDeviceHasBeenSet() const { return m_noDeviceHasBeenSet; }
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline void SetNoDevice(const Aws::String& value) { m_noDeviceHasBeenSet = true; m_noDevice = value; }
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline void SetNoDevice(Aws::String&& value) { m_noDeviceHasBeenSet = true; m_noDevice = std::move(value); }
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline void SetNoDevice(const char* value) { m_noDeviceHasBeenSet = true; m_noDevice.assign(value); }
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithNoDevice(const Aws::String& value) { SetNoDevice(value); return *this;}
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithNoDevice(Aws::String&& value) { SetNoDevice(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>suppress the specified device included in the block device mapping.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithNoDevice(const char* value) { SetNoDevice(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline const Aws::String& GetVirtualName() const{ return m_virtualName; }
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline bool VirtualNameHasBeenSet() const { return m_virtualNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline void SetVirtualName(const Aws::String& value) { m_virtualNameHasBeenSet = true; m_virtualName = value; }
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline void SetVirtualName(Aws::String&& value) { m_virtualNameHasBeenSet = true; m_virtualName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline void SetVirtualName(const char* value) { m_virtualNameHasBeenSet = true; m_virtualName.assign(value); }
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithVirtualName(const Aws::String& value) { SetVirtualName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithVirtualName(Aws::String&& value) { SetVirtualName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The virtual device name.</p>
|
|
*/
|
|
inline InstanceBlockDeviceMappingSpecification& WithVirtualName(const char* value) { SetVirtualName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_deviceName;
|
|
bool m_deviceNameHasBeenSet;
|
|
|
|
EbsInstanceBlockDeviceSpecification m_ebs;
|
|
bool m_ebsHasBeenSet;
|
|
|
|
Aws::String m_noDevice;
|
|
bool m_noDeviceHasBeenSet;
|
|
|
|
Aws::String m_virtualName;
|
|
bool m_virtualNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|