/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Change the size of some instance groups.See Also:
AWS
* API Reference
The ID of the cluster to which the instance group belongs.
*/ inline const Aws::String& GetClusterId() const{ return m_clusterId; } /** *The ID of the cluster to which the instance group belongs.
*/ inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; } /** *The ID of the cluster to which the instance group belongs.
*/ inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; } /** *The ID of the cluster to which the instance group belongs.
*/ inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); } /** *The ID of the cluster to which the instance group belongs.
*/ inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); } /** *The ID of the cluster to which the instance group belongs.
*/ inline ModifyInstanceGroupsRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;} /** *The ID of the cluster to which the instance group belongs.
*/ inline ModifyInstanceGroupsRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;} /** *The ID of the cluster to which the instance group belongs.
*/ inline ModifyInstanceGroupsRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;} /** *Instance groups to change.
*/ inline const Aws::VectorInstance groups to change.
*/ inline bool InstanceGroupsHasBeenSet() const { return m_instanceGroupsHasBeenSet; } /** *Instance groups to change.
*/ inline void SetInstanceGroups(const Aws::VectorInstance groups to change.
*/ inline void SetInstanceGroups(Aws::VectorInstance groups to change.
*/ inline ModifyInstanceGroupsRequest& WithInstanceGroups(const Aws::VectorInstance groups to change.
*/ inline ModifyInstanceGroupsRequest& WithInstanceGroups(Aws::VectorInstance groups to change.
*/ inline ModifyInstanceGroupsRequest& AddInstanceGroups(const InstanceGroupModifyConfig& value) { m_instanceGroupsHasBeenSet = true; m_instanceGroups.push_back(value); return *this; } /** *Instance groups to change.
*/ inline ModifyInstanceGroupsRequest& AddInstanceGroups(InstanceGroupModifyConfig&& value) { m_instanceGroupsHasBeenSet = true; m_instanceGroups.push_back(std::move(value)); return *this; } private: Aws::String m_clusterId; bool m_clusterIdHasBeenSet = false; Aws::Vector