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-autoscaling-plans/include/aws/autoscaling-plans/model/CreateScalingPlanResult.h

59 lines
1.6 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/autoscaling-plans/AutoScalingPlans_EXPORTS.h>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace AutoScalingPlans
{
namespace Model
{
class AWS_AUTOSCALINGPLANS_API CreateScalingPlanResult
{
public:
CreateScalingPlanResult();
CreateScalingPlanResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateScalingPlanResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The version number of the scaling plan. This value is always 1.</p>
* <p>Currently, you cannot specify multiple scaling plan versions.</p>
*/
inline long long GetScalingPlanVersion() const{ return m_scalingPlanVersion; }
/**
* <p>The version number of the scaling plan. This value is always 1.</p>
* <p>Currently, you cannot specify multiple scaling plan versions.</p>
*/
inline void SetScalingPlanVersion(long long value) { m_scalingPlanVersion = value; }
/**
* <p>The version number of the scaling plan. This value is always 1.</p>
* <p>Currently, you cannot specify multiple scaling plan versions.</p>
*/
inline CreateScalingPlanResult& WithScalingPlanVersion(long long value) { SetScalingPlanVersion(value); return *this;}
private:
long long m_scalingPlanVersion;
};
} // namespace Model
} // namespace AutoScalingPlans
} // namespace Aws