This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-elasticmapreduce/include/aws/elasticmapreduce/model/RemoveAutoScalingPolicyRequest.h

146 lines
5.2 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elasticmapreduce/EMR_EXPORTS.h>
#include <aws/elasticmapreduce/EMRRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace EMR
{
namespace Model
{
/**
*/
class AWS_EMR_API RemoveAutoScalingPolicyRequest : public EMRRequest
{
public:
RemoveAutoScalingPolicyRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "RemoveAutoScalingPolicy"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline const Aws::String& GetClusterId() const{ return m_clusterId; }
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; }
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); }
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); }
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;}
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;}
/**
* <p>Specifies the ID of a cluster. The instance group to which the automatic
* scaling policy is applied is within this cluster.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;}
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline const Aws::String& GetInstanceGroupId() const{ return m_instanceGroupId; }
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline bool InstanceGroupIdHasBeenSet() const { return m_instanceGroupIdHasBeenSet; }
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline void SetInstanceGroupId(const Aws::String& value) { m_instanceGroupIdHasBeenSet = true; m_instanceGroupId = value; }
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline void SetInstanceGroupId(Aws::String&& value) { m_instanceGroupIdHasBeenSet = true; m_instanceGroupId = std::move(value); }
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline void SetInstanceGroupId(const char* value) { m_instanceGroupIdHasBeenSet = true; m_instanceGroupId.assign(value); }
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithInstanceGroupId(const Aws::String& value) { SetInstanceGroupId(value); return *this;}
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithInstanceGroupId(Aws::String&& value) { SetInstanceGroupId(std::move(value)); return *this;}
/**
* <p>Specifies the ID of the instance group to which the scaling policy is
* applied.</p>
*/
inline RemoveAutoScalingPolicyRequest& WithInstanceGroupId(const char* value) { SetInstanceGroupId(value); return *this;}
private:
Aws::String m_clusterId;
bool m_clusterIdHasBeenSet;
Aws::String m_instanceGroupId;
bool m_instanceGroupIdHasBeenSet;
};
} // namespace Model
} // namespace EMR
} // namespace Aws