/* * 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 sns-2010-03-31.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.SimpleNotificationService { /// /// Constants used for properties of type LanguageCodeString. /// public class LanguageCodeString : ConstantClass { /// /// Constant DeDE for LanguageCodeString /// public static readonly LanguageCodeString DeDE = new LanguageCodeString("de-DE"); /// /// Constant EnGB for LanguageCodeString /// public static readonly LanguageCodeString EnGB = new LanguageCodeString("en-GB"); /// /// Constant EnUS for LanguageCodeString /// public static readonly LanguageCodeString EnUS = new LanguageCodeString("en-US"); /// /// Constant Es419 for LanguageCodeString /// public static readonly LanguageCodeString Es419 = new LanguageCodeString("es-419"); /// /// Constant EsES for LanguageCodeString /// public static readonly LanguageCodeString EsES = new LanguageCodeString("es-ES"); /// /// Constant FrCA for LanguageCodeString /// public static readonly LanguageCodeString FrCA = new LanguageCodeString("fr-CA"); /// /// Constant FrFR for LanguageCodeString /// public static readonly LanguageCodeString FrFR = new LanguageCodeString("fr-FR"); /// /// Constant ItIT for LanguageCodeString /// public static readonly LanguageCodeString ItIT = new LanguageCodeString("it-IT"); /// /// Constant JaJP for LanguageCodeString /// public static readonly LanguageCodeString JaJP = new LanguageCodeString("ja-JP"); /// /// Constant KrKR for LanguageCodeString /// public static readonly LanguageCodeString KrKR = new LanguageCodeString("kr-KR"); /// /// Constant PtBR for LanguageCodeString /// public static readonly LanguageCodeString PtBR = new LanguageCodeString("pt-BR"); /// /// Constant ZhCN for LanguageCodeString /// public static readonly LanguageCodeString ZhCN = new LanguageCodeString("zh-CN"); /// /// Constant ZhTW for LanguageCodeString /// public static readonly LanguageCodeString ZhTW = new LanguageCodeString("zh-TW"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public LanguageCodeString(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static LanguageCodeString FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator LanguageCodeString(string value) { return FindValue(value); } } /// /// Constants used for properties of type NumberCapability. /// public class NumberCapability : ConstantClass { /// /// Constant MMS for NumberCapability /// public static readonly NumberCapability MMS = new NumberCapability("MMS"); /// /// Constant SMS for NumberCapability /// public static readonly NumberCapability SMS = new NumberCapability("SMS"); /// /// Constant VOICE for NumberCapability /// public static readonly NumberCapability VOICE = new NumberCapability("VOICE"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public NumberCapability(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static NumberCapability FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator NumberCapability(string value) { return FindValue(value); } } /// /// Constants used for properties of type RouteType. /// public class RouteType : ConstantClass { /// /// Constant Premium for RouteType /// public static readonly RouteType Premium = new RouteType("Premium"); /// /// Constant Promotional for RouteType /// public static readonly RouteType Promotional = new RouteType("Promotional"); /// /// Constant Transactional for RouteType /// public static readonly RouteType Transactional = new RouteType("Transactional"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public RouteType(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static RouteType FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator RouteType(string value) { return FindValue(value); } } /// /// Constants used for properties of type SMSSandboxPhoneNumberVerificationStatus. /// public class SMSSandboxPhoneNumberVerificationStatus : ConstantClass { /// /// Constant Pending for SMSSandboxPhoneNumberVerificationStatus /// public static readonly SMSSandboxPhoneNumberVerificationStatus Pending = new SMSSandboxPhoneNumberVerificationStatus("Pending"); /// /// Constant Verified for SMSSandboxPhoneNumberVerificationStatus /// public static readonly SMSSandboxPhoneNumberVerificationStatus Verified = new SMSSandboxPhoneNumberVerificationStatus("Verified"); /// /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// public SMSSandboxPhoneNumberVerificationStatus(string value) : base(value) { } /// /// Finds the constant for the unique value. /// /// The unique value for the constant /// The constant for the unique value public static SMSSandboxPhoneNumberVerificationStatus FindValue(string value) { return FindValue(value); } /// /// Utility method to convert strings to the constant class. /// /// The string value to convert to the constant class. /// public static implicit operator SMSSandboxPhoneNumberVerificationStatus(string value) { return FindValue(value); } } }