/*
* 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 CreateScalingPlan operation.
/// Creates a scaling plan.
///
public partial class CreateScalingPlanRequest : AmazonAutoScalingPlansRequest
{
private ApplicationSource _applicationSource;
private List _scalingInstructions = new List();
private string _scalingPlanName;
///
/// Gets and sets the property ApplicationSource.
///
/// A CloudFormation stack or set of tags. You can create one scaling plan per application
/// source.
///
///
///
/// For more information, see ApplicationSource
/// in the AWS Auto Scaling API Reference.
///
///
[AWSProperty(Required=true)]
public ApplicationSource ApplicationSource
{
get { return this._applicationSource; }
set { this._applicationSource = value; }
}
// Check to see if ApplicationSource property is set
internal bool IsSetApplicationSource()
{
return this._applicationSource != null;
}
///
/// Gets and sets the property ScalingInstructions.
///
/// The scaling instructions.
///
///
///
/// For more information, see ScalingInstruction
/// in the AWS Auto Scaling API Reference.
///
///
[AWSProperty(Required=true)]
public List ScalingInstructions
{
get { return this._scalingInstructions; }
set { this._scalingInstructions = value; }
}
// Check to see if ScalingInstructions property is set
internal bool IsSetScalingInstructions()
{
return this._scalingInstructions != null && this._scalingInstructions.Count > 0;
}
///
/// Gets and sets the property ScalingPlanName.
///
/// The name of the scaling plan. Names cannot contain vertical bars, colons, or forward
/// slashes.
///
///
[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;
}
}
}