/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { template 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& result); CreateScalingPlanResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The version number of the scaling plan. This value is always 1.

*

Currently, you cannot specify multiple scaling plan versions.

*/ inline long long GetScalingPlanVersion() const{ return m_scalingPlanVersion; } /** *

The version number of the scaling plan. This value is always 1.

*

Currently, you cannot specify multiple scaling plan versions.

*/ inline void SetScalingPlanVersion(long long value) { m_scalingPlanVersion = value; } /** *

The version number of the scaling plan. This value is always 1.

*

Currently, you cannot specify multiple scaling plan versions.

*/ inline CreateScalingPlanResult& WithScalingPlanVersion(long long value) { SetScalingPlanVersion(value); return *this;} private: long long m_scalingPlanVersion; }; } // namespace Model } // namespace AutoScalingPlans } // namespace Aws