/*
* 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 support-2013-04-15.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.AWSSupport.Model
{
///
/// A code and name pair that represents the severity level of a support case. The available
/// values depend on the support plan for the account. For more information, see Choosing
/// a severity in the Amazon Web Services Support User Guide.
///
public partial class SeverityLevel
{
private string _code;
private string _name;
///
/// Gets and sets the property Code.
///
/// The code for case severity level.
///
///
///
/// Valid values: low
| normal
| high
| urgent
/// | critical
///
///
public string Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
///
/// Gets and sets the property Name.
///
/// The name of the severity level that corresponds to the severity level code.
///
///
///
/// The values returned by the API are different from the values that appear in the Amazon
/// Web Services Support Center. For example, the API uses the code low
,
/// but the name appears as General guidance in Support Center.
///
///
///
/// The following are the API code names and how they appear in the console:
///
/// -
///
///
low
- General guidance
///
/// -
///
///
normal
- System impaired
///
/// -
///
///
high
- Production system impaired
///
/// -
///
///
urgent
- Production system down
///
/// -
///
///
critical
- Business-critical system down
///
///
///
/// For more information, see Choosing
/// a severity in the Amazon Web Services Support User Guide.
///
///
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;
}
}
}