/* * 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 { /// /// Container for the parameters to the DescribeServices operation. /// Returns the current list of Amazon Web Services services and a list of service categories /// for each service. You then use service names and categories in your CreateCase /// requests. Each Amazon Web Services service has its own set of categories. /// /// /// /// The service codes and category codes correspond to the values that appear in the Service /// and Category lists on the Amazon Web Services Support Center Create /// Case page. The values in those fields don't necessarily match the service codes /// and categories returned by the DescribeServices operation. Always use /// the service codes and categories that the DescribeServices operation /// returns, so that you have the most recent set of service and category codes. /// /// /// public partial class DescribeServicesRequest : AmazonAWSSupportRequest { private string _language; private List _serviceCodeList = new List(); /// /// Gets and sets the property Language. /// /// The language in which Amazon Web Services Support handles the case. Amazon Web Services /// Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean /// (“ko”). You must specify the ISO 639-1 code for the language parameter /// if you want support in that language. /// /// public string Language { get { return this._language; } set { this._language = value; } } // Check to see if Language property is set internal bool IsSetLanguage() { return this._language != null; } /// /// Gets and sets the property ServiceCodeList. /// /// A JSON-formatted list of service codes available for Amazon Web Services services. /// /// [AWSProperty(Min=0, Max=100)] public List ServiceCodeList { get { return this._serviceCodeList; } set { this._serviceCodeList = value; } } // Check to see if ServiceCodeList property is set internal bool IsSetServiceCodeList() { return this._serviceCodeList != null && this._serviceCodeList.Count > 0; } } }