/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the autoscaling-plans-2018-01-06.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.AutoScalingPlans.Model
{
///
/// Container for the parameters to the DeleteScalingPlan operation.
/// Deletes the specified scaling plan.
///
///
///
/// Deleting a scaling plan deletes the underlying ScalingInstruction for all of
/// the scalable resources that are covered by the plan.
///
///
///
/// If the plan has launched resources or has scaling activities in progress, you must
/// delete those resources separately.
///
///
public partial class DeleteScalingPlanRequest : AmazonAutoScalingPlansRequest
{
private string _scalingPlanName;
private long? _scalingPlanVersion;
///
/// Gets and sets the property ScalingPlanName.
///
/// The name of the scaling plan.
///
///
[AWSProperty(Required=true, Min=1, Max=128)]
public string ScalingPlanName
{
get { return this._scalingPlanName; }
set { this._scalingPlanName = value; }
}
// Check to see if ScalingPlanName property is set
internal bool IsSetScalingPlanName()
{
return this._scalingPlanName != null;
}
///
/// Gets and sets the property ScalingPlanVersion.
///
/// The version number of the scaling plan. Currently, the only valid value is 1
.
///
///
[AWSProperty(Required=true)]
public long ScalingPlanVersion
{
get { return this._scalingPlanVersion.GetValueOrDefault(); }
set { this._scalingPlanVersion = value; }
}
// Check to see if ScalingPlanVersion property is set
internal bool IsSetScalingPlanVersion()
{
return this._scalingPlanVersion.HasValue;
}
}
}