/* * 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 iotfleethub-2020-11-03.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.IoTFleetHub { /// /// Constants used for properties of type ApplicationState. /// public class ApplicationState : ConstantClass { /// /// Constant ACTIVE for ApplicationState /// public static readonly ApplicationState ACTIVE = new ApplicationState("ACTIVE"); /// /// Constant CREATE_FAILED for ApplicationState /// public static readonly ApplicationState CREATE_FAILED = new ApplicationState("CREATE_FAILED"); /// /// Constant CREATING for ApplicationState /// public static readonly ApplicationState CREATING = new ApplicationState("CREATING"); /// /// Constant DELETE_FAILED for ApplicationState /// public static readonly ApplicationState DELETE_FAILED = new ApplicationState("DELETE_FAILED"); /// /// Constant DELETING for ApplicationState /// public static readonly ApplicationState DELETING = new ApplicationState("DELETING"); /// /// 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 ApplicationState(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 ApplicationState 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 ApplicationState(string value) { return FindValue(value); } } }