256 lines
10 KiB
C++
256 lines
10 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/autoscaling/AutoScaling_EXPORTS.h>
|
|
#include <aws/autoscaling/AutoScalingRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace AutoScaling
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_AUTOSCALING_API ExecutePolicyRequest : public AutoScalingRequest
|
|
{
|
|
public:
|
|
ExecutePolicyRequest();
|
|
|
|
// 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 "ExecutePolicy"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline const Aws::String& GetAutoScalingGroupName() const{ return m_autoScalingGroupName; }
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline bool AutoScalingGroupNameHasBeenSet() const { return m_autoScalingGroupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline void SetAutoScalingGroupName(const Aws::String& value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline void SetAutoScalingGroupName(Aws::String&& value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline void SetAutoScalingGroupName(const char* value) { m_autoScalingGroupNameHasBeenSet = true; m_autoScalingGroupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithAutoScalingGroupName(const Aws::String& value) { SetAutoScalingGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithAutoScalingGroupName(Aws::String&& value) { SetAutoScalingGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the Auto Scaling group.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithAutoScalingGroupName(const char* value) { SetAutoScalingGroupName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline const Aws::String& GetPolicyName() const{ return m_policyName; }
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline bool PolicyNameHasBeenSet() const { return m_policyNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline void SetPolicyName(const Aws::String& value) { m_policyNameHasBeenSet = true; m_policyName = value; }
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline void SetPolicyName(Aws::String&& value) { m_policyNameHasBeenSet = true; m_policyName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline void SetPolicyName(const char* value) { m_policyNameHasBeenSet = true; m_policyName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithPolicyName(const Aws::String& value) { SetPolicyName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithPolicyName(Aws::String&& value) { SetPolicyName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name or ARN of the policy.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithPolicyName(const char* value) { SetPolicyName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to
|
|
* complete before executing the policy.</p> <p>Valid only if the policy type is
|
|
* <code>SimpleScaling</code>. For more information, see <a
|
|
* href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/Cooldown.html">Scaling
|
|
* Cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User
|
|
* Guide</i>.</p>
|
|
*/
|
|
inline bool GetHonorCooldown() const{ return m_honorCooldown; }
|
|
|
|
/**
|
|
* <p>Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to
|
|
* complete before executing the policy.</p> <p>Valid only if the policy type is
|
|
* <code>SimpleScaling</code>. For more information, see <a
|
|
* href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/Cooldown.html">Scaling
|
|
* Cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User
|
|
* Guide</i>.</p>
|
|
*/
|
|
inline bool HonorCooldownHasBeenSet() const { return m_honorCooldownHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to
|
|
* complete before executing the policy.</p> <p>Valid only if the policy type is
|
|
* <code>SimpleScaling</code>. For more information, see <a
|
|
* href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/Cooldown.html">Scaling
|
|
* Cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User
|
|
* Guide</i>.</p>
|
|
*/
|
|
inline void SetHonorCooldown(bool value) { m_honorCooldownHasBeenSet = true; m_honorCooldown = value; }
|
|
|
|
/**
|
|
* <p>Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to
|
|
* complete before executing the policy.</p> <p>Valid only if the policy type is
|
|
* <code>SimpleScaling</code>. For more information, see <a
|
|
* href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/Cooldown.html">Scaling
|
|
* Cooldowns for Amazon EC2 Auto Scaling</a> in the <i>Amazon EC2 Auto Scaling User
|
|
* Guide</i>.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithHonorCooldown(bool value) { SetHonorCooldown(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The metric value to compare to <code>BreachThreshold</code>. This enables you
|
|
* to execute a policy of type <code>StepScaling</code> and determine which step
|
|
* adjustment to use. For example, if the breach threshold is 50 and you want to
|
|
* use a step adjustment with a lower bound of 0 and an upper bound of 10, you can
|
|
* set the metric value to 59.</p> <p>If you specify a metric value that doesn't
|
|
* correspond to a step adjustment for the policy, the call returns an error.</p>
|
|
* <p>Required if the policy type is <code>StepScaling</code> and not supported
|
|
* otherwise.</p>
|
|
*/
|
|
inline double GetMetricValue() const{ return m_metricValue; }
|
|
|
|
/**
|
|
* <p>The metric value to compare to <code>BreachThreshold</code>. This enables you
|
|
* to execute a policy of type <code>StepScaling</code> and determine which step
|
|
* adjustment to use. For example, if the breach threshold is 50 and you want to
|
|
* use a step adjustment with a lower bound of 0 and an upper bound of 10, you can
|
|
* set the metric value to 59.</p> <p>If you specify a metric value that doesn't
|
|
* correspond to a step adjustment for the policy, the call returns an error.</p>
|
|
* <p>Required if the policy type is <code>StepScaling</code> and not supported
|
|
* otherwise.</p>
|
|
*/
|
|
inline bool MetricValueHasBeenSet() const { return m_metricValueHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The metric value to compare to <code>BreachThreshold</code>. This enables you
|
|
* to execute a policy of type <code>StepScaling</code> and determine which step
|
|
* adjustment to use. For example, if the breach threshold is 50 and you want to
|
|
* use a step adjustment with a lower bound of 0 and an upper bound of 10, you can
|
|
* set the metric value to 59.</p> <p>If you specify a metric value that doesn't
|
|
* correspond to a step adjustment for the policy, the call returns an error.</p>
|
|
* <p>Required if the policy type is <code>StepScaling</code> and not supported
|
|
* otherwise.</p>
|
|
*/
|
|
inline void SetMetricValue(double value) { m_metricValueHasBeenSet = true; m_metricValue = value; }
|
|
|
|
/**
|
|
* <p>The metric value to compare to <code>BreachThreshold</code>. This enables you
|
|
* to execute a policy of type <code>StepScaling</code> and determine which step
|
|
* adjustment to use. For example, if the breach threshold is 50 and you want to
|
|
* use a step adjustment with a lower bound of 0 and an upper bound of 10, you can
|
|
* set the metric value to 59.</p> <p>If you specify a metric value that doesn't
|
|
* correspond to a step adjustment for the policy, the call returns an error.</p>
|
|
* <p>Required if the policy type is <code>StepScaling</code> and not supported
|
|
* otherwise.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithMetricValue(double value) { SetMetricValue(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The breach threshold for the alarm.</p> <p>Required if the policy type is
|
|
* <code>StepScaling</code> and not supported otherwise.</p>
|
|
*/
|
|
inline double GetBreachThreshold() const{ return m_breachThreshold; }
|
|
|
|
/**
|
|
* <p>The breach threshold for the alarm.</p> <p>Required if the policy type is
|
|
* <code>StepScaling</code> and not supported otherwise.</p>
|
|
*/
|
|
inline bool BreachThresholdHasBeenSet() const { return m_breachThresholdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The breach threshold for the alarm.</p> <p>Required if the policy type is
|
|
* <code>StepScaling</code> and not supported otherwise.</p>
|
|
*/
|
|
inline void SetBreachThreshold(double value) { m_breachThresholdHasBeenSet = true; m_breachThreshold = value; }
|
|
|
|
/**
|
|
* <p>The breach threshold for the alarm.</p> <p>Required if the policy type is
|
|
* <code>StepScaling</code> and not supported otherwise.</p>
|
|
*/
|
|
inline ExecutePolicyRequest& WithBreachThreshold(double value) { SetBreachThreshold(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_autoScalingGroupName;
|
|
bool m_autoScalingGroupNameHasBeenSet;
|
|
|
|
Aws::String m_policyName;
|
|
bool m_policyNameHasBeenSet;
|
|
|
|
bool m_honorCooldown;
|
|
bool m_honorCooldownHasBeenSet;
|
|
|
|
double m_metricValue;
|
|
bool m_metricValueHasBeenSet;
|
|
|
|
double m_breachThreshold;
|
|
bool m_breachThresholdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AutoScaling
|
|
} // namespace Aws
|