/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration of requested EBS block device associated with the instance
* group with count of volumes that are associated to every instance.See
* Also:
AWS
* API Reference
EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline const VolumeSpecification& GetVolumeSpecification() const{ return m_volumeSpecification; } /** *EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline bool VolumeSpecificationHasBeenSet() const { return m_volumeSpecificationHasBeenSet; } /** *EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline void SetVolumeSpecification(const VolumeSpecification& value) { m_volumeSpecificationHasBeenSet = true; m_volumeSpecification = value; } /** *EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline void SetVolumeSpecification(VolumeSpecification&& value) { m_volumeSpecificationHasBeenSet = true; m_volumeSpecification = std::move(value); } /** *EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline EbsBlockDeviceConfig& WithVolumeSpecification(const VolumeSpecification& value) { SetVolumeSpecification(value); return *this;} /** *EBS volume specifications such as volume type, IOPS, size (GiB) and * throughput (MiB/s) that are requested for the EBS volume attached to an Amazon * EC2 instance in the cluster.
*/ inline EbsBlockDeviceConfig& WithVolumeSpecification(VolumeSpecification&& value) { SetVolumeSpecification(std::move(value)); return *this;} /** *Number of EBS volumes with a specific volume configuration that are * associated with every instance in the instance group
*/ inline int GetVolumesPerInstance() const{ return m_volumesPerInstance; } /** *Number of EBS volumes with a specific volume configuration that are * associated with every instance in the instance group
*/ inline bool VolumesPerInstanceHasBeenSet() const { return m_volumesPerInstanceHasBeenSet; } /** *Number of EBS volumes with a specific volume configuration that are * associated with every instance in the instance group
*/ inline void SetVolumesPerInstance(int value) { m_volumesPerInstanceHasBeenSet = true; m_volumesPerInstance = value; } /** *Number of EBS volumes with a specific volume configuration that are * associated with every instance in the instance group
*/ inline EbsBlockDeviceConfig& WithVolumesPerInstance(int value) { SetVolumesPerInstance(value); return *this;} private: VolumeSpecification m_volumeSpecification; bool m_volumeSpecificationHasBeenSet = false; int m_volumesPerInstance; bool m_volumesPerInstanceHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws