213 lines
6.8 KiB
C
213 lines
6.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/imagebuilder/Imagebuilder_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/imagebuilder/model/EbsInstanceBlockDeviceSpecification.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace imagebuilder
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Defines block device mappings for the instance used to configure your
|
|||
|
|
* image.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InstanceBlockDeviceMapping">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_IMAGEBUILDER_API InstanceBlockDeviceMapping
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
InstanceBlockDeviceMapping();
|
|||
|
|
InstanceBlockDeviceMapping(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
InstanceBlockDeviceMapping& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDeviceName() const{ return m_deviceName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool DeviceNameHasBeenSet() const { return m_deviceNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeviceName(const Aws::String& value) { m_deviceNameHasBeenSet = true; m_deviceName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeviceName(Aws::String&& value) { m_deviceNameHasBeenSet = true; m_deviceName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeviceName(const char* value) { m_deviceNameHasBeenSet = true; m_deviceName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithDeviceName(const Aws::String& value) { SetDeviceName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithDeviceName(Aws::String&& value) { SetDeviceName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The device to which these mappings apply.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithDeviceName(const char* value) { SetDeviceName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline const EbsInstanceBlockDeviceSpecification& GetEbs() const{ return m_ebs; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool EbsHasBeenSet() const { return m_ebsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetEbs(const EbsInstanceBlockDeviceSpecification& value) { m_ebsHasBeenSet = true; m_ebs = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetEbs(EbsInstanceBlockDeviceSpecification&& value) { m_ebsHasBeenSet = true; m_ebs = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithEbs(const EbsInstanceBlockDeviceSpecification& value) { SetEbs(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage Amazon EBS-specific configuration for this mapping.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithEbs(EbsInstanceBlockDeviceSpecification&& value) { SetEbs(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetVirtualName() const{ return m_virtualName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool VirtualNameHasBeenSet() const { return m_virtualNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVirtualName(const Aws::String& value) { m_virtualNameHasBeenSet = true; m_virtualName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVirtualName(Aws::String&& value) { m_virtualNameHasBeenSet = true; m_virtualName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVirtualName(const char* value) { m_virtualNameHasBeenSet = true; m_virtualName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithVirtualName(const Aws::String& value) { SetVirtualName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithVirtualName(Aws::String&& value) { SetVirtualName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to manage instance ephemeral devices.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithVirtualName(const char* value) { SetVirtualName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetNoDevice() const{ return m_noDevice; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool NoDeviceHasBeenSet() const { return m_noDeviceHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNoDevice(const Aws::String& value) { m_noDeviceHasBeenSet = true; m_noDevice = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNoDevice(Aws::String&& value) { m_noDeviceHasBeenSet = true; m_noDevice = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNoDevice(const char* value) { m_noDeviceHasBeenSet = true; m_noDevice.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithNoDevice(const Aws::String& value) { SetNoDevice(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithNoDevice(Aws::String&& value) { SetNoDevice(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Use to remove a mapping from the parent image.</p>
|
|||
|
|
*/
|
|||
|
|
inline InstanceBlockDeviceMapping& WithNoDevice(const char* value) { SetNoDevice(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_deviceName;
|
|||
|
|
bool m_deviceNameHasBeenSet;
|
|||
|
|
|
|||
|
|
EbsInstanceBlockDeviceSpecification m_ebs;
|
|||
|
|
bool m_ebsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_virtualName;
|
|||
|
|
bool m_virtualNameHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_noDevice;
|
|||
|
|
bool m_noDeviceHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace imagebuilder
|
|||
|
|
} // namespace Aws
|