/* * 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 elasticbeanstalk-2010-12-01.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.ElasticBeanstalk.Model { /// /// Describes the possible values for a configuration option. /// public partial class ConfigurationOptionDescription { private string _changeSeverity; private string _defaultValue; private int? _maxLength; private int? _maxValue; private int? _minValue; private string _name; private string _awsNamespace; private OptionRestrictionRegex _regex; private bool? _userDefined; private List _valueOptions = new List(); private ConfigurationOptionValueType _valueType; /// /// Empty constructor used to set properties independently even when a simple constructor is available /// public ConfigurationOptionDescription() { } /// /// Gets and sets the property ChangeSeverity. /// /// An indication of which action is required if the value for this configuration option /// changes: /// ///
  • /// /// NoInterruption : There is no interruption to the environment or application /// availability. /// ///
  • /// /// RestartEnvironment : The environment is entirely restarted, all AWS /// resources are deleted and recreated, and the environment is unavailable during the /// process. /// ///
  • /// /// RestartApplicationServer : The environment is available the entire time. /// However, a short application outage occurs when the application servers on the running /// Amazon EC2 instances are restarted. /// ///
///
public string ChangeSeverity { get { return this._changeSeverity; } set { this._changeSeverity = value; } } // Check to see if ChangeSeverity property is set internal bool IsSetChangeSeverity() { return this._changeSeverity != null; } /// /// Gets and sets the property DefaultValue. /// /// The default value for this configuration option. /// /// public string DefaultValue { get { return this._defaultValue; } set { this._defaultValue = value; } } // Check to see if DefaultValue property is set internal bool IsSetDefaultValue() { return this._defaultValue != null; } /// /// Gets and sets the property MaxLength. /// /// If specified, the configuration option must be a string value no longer than this /// value. /// /// public int MaxLength { get { return this._maxLength.GetValueOrDefault(); } set { this._maxLength = value; } } // Check to see if MaxLength property is set internal bool IsSetMaxLength() { return this._maxLength.HasValue; } /// /// Gets and sets the property MaxValue. /// /// If specified, the configuration option must be a numeric value less than this value. /// /// public int MaxValue { get { return this._maxValue.GetValueOrDefault(); } set { this._maxValue = value; } } // Check to see if MaxValue property is set internal bool IsSetMaxValue() { return this._maxValue.HasValue; } /// /// Gets and sets the property MinValue. /// /// If specified, the configuration option must be a numeric value greater than this value. /// /// public int MinValue { get { return this._minValue.GetValueOrDefault(); } set { this._minValue = value; } } // Check to see if MinValue property is set internal bool IsSetMinValue() { return this._minValue.HasValue; } /// /// Gets and sets the property Name. /// /// The name of the configuration option. /// /// public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// /// Gets and sets the property Namespace. /// /// A unique namespace identifying the option's associated AWS resource. /// /// public string Namespace { get { return this._awsNamespace; } set { this._awsNamespace = value; } } // Check to see if Namespace property is set internal bool IsSetNamespace() { return this._awsNamespace != null; } /// /// Gets and sets the property Regex. /// /// If specified, the configuration option must be a string value that satisfies this /// regular expression. /// /// public OptionRestrictionRegex Regex { get { return this._regex; } set { this._regex = value; } } // Check to see if Regex property is set internal bool IsSetRegex() { return this._regex != null; } /// /// Gets and sets the property UserDefined. /// /// An indication of whether the user defined this configuration option: /// ///
  • /// /// true : This configuration option was defined by the user. It is a valid /// choice for specifying if this as an Option to Remove when updating configuration /// settings. /// ///
  • /// /// false : This configuration was not defined by the user. /// ///
/// /// Constraint: You can remove only UserDefined options from a configuration. /// /// /// /// /// Valid Values: true | false /// ///
public bool UserDefined { get { return this._userDefined.GetValueOrDefault(); } set { this._userDefined = value; } } // Check to see if UserDefined property is set internal bool IsSetUserDefined() { return this._userDefined.HasValue; } /// /// Gets and sets the property ValueOptions. /// /// If specified, values for the configuration option are selected from this list. /// /// public List ValueOptions { get { return this._valueOptions; } set { this._valueOptions = value; } } // Check to see if ValueOptions property is set internal bool IsSetValueOptions() { return this._valueOptions != null && this._valueOptions.Count > 0; } /// /// Gets and sets the property ValueType. /// /// An indication of which type of values this option has and whether it is allowable /// to select one or more than one of the possible values: /// ///
  • /// /// Scalar : Values for this option are a single selection from the possible /// values, or an unformatted string, or numeric value governed by the MIN/MAX/Regex /// constraints. /// ///
  • /// /// List : Values for this option are multiple selections from the possible /// values. /// ///
  • /// /// Boolean : Values for this option are either true or false /// . /// ///
  • /// /// Json : Values for this option are a JSON representation of a ConfigDocument. /// ///
///
public ConfigurationOptionValueType ValueType { get { return this._valueType; } set { this._valueType = value; } } // Check to see if ValueType property is set internal bool IsSetValueType() { return this._valueType != null; } } }