/* * 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 lookoutvision-2020-11-20.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.LookoutforVision { /// /// Constants used for properties of type DatasetStatus. /// public class DatasetStatus : ConstantClass { /// /// Constant CREATE_COMPLETE for DatasetStatus /// public static readonly DatasetStatus CREATE_COMPLETE = new DatasetStatus("CREATE_COMPLETE"); /// /// Constant CREATE_FAILED for DatasetStatus /// public static readonly DatasetStatus CREATE_FAILED = new DatasetStatus("CREATE_FAILED"); /// /// Constant CREATE_IN_PROGRESS for DatasetStatus /// public static readonly DatasetStatus CREATE_IN_PROGRESS = new DatasetStatus("CREATE_IN_PROGRESS"); /// /// Constant DELETE_COMPLETE for DatasetStatus /// public static readonly DatasetStatus DELETE_COMPLETE = new DatasetStatus("DELETE_COMPLETE"); /// /// Constant DELETE_FAILED for DatasetStatus /// public static readonly DatasetStatus DELETE_FAILED = new DatasetStatus("DELETE_FAILED"); /// /// Constant DELETE_IN_PROGRESS for DatasetStatus /// public static readonly DatasetStatus DELETE_IN_PROGRESS = new DatasetStatus("DELETE_IN_PROGRESS"); /// /// Constant UPDATE_COMPLETE for DatasetStatus /// public static readonly DatasetStatus UPDATE_COMPLETE = new DatasetStatus("UPDATE_COMPLETE"); /// /// Constant UPDATE_FAILED_ROLLBACK_COMPLETE for DatasetStatus /// public static readonly DatasetStatus UPDATE_FAILED_ROLLBACK_COMPLETE = new DatasetStatus("UPDATE_FAILED_ROLLBACK_COMPLETE"); /// /// Constant UPDATE_FAILED_ROLLBACK_IN_PROGRESS for DatasetStatus /// public static readonly DatasetStatus UPDATE_FAILED_ROLLBACK_IN_PROGRESS = new DatasetStatus("UPDATE_FAILED_ROLLBACK_IN_PROGRESS"); /// /// Constant UPDATE_IN_PROGRESS for DatasetStatus /// public static readonly DatasetStatus UPDATE_IN_PROGRESS = new DatasetStatus("UPDATE_IN_PROGRESS"); /// /// 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 DatasetStatus(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 DatasetStatus 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 DatasetStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ModelHostingStatus. /// public class ModelHostingStatus : ConstantClass { /// /// Constant HOSTED for ModelHostingStatus /// public static readonly ModelHostingStatus HOSTED = new ModelHostingStatus("HOSTED"); /// /// Constant HOSTING_FAILED for ModelHostingStatus /// public static readonly ModelHostingStatus HOSTING_FAILED = new ModelHostingStatus("HOSTING_FAILED"); /// /// Constant STARTING_HOSTING for ModelHostingStatus /// public static readonly ModelHostingStatus STARTING_HOSTING = new ModelHostingStatus("STARTING_HOSTING"); /// /// Constant STOPPING_HOSTING for ModelHostingStatus /// public static readonly ModelHostingStatus STOPPING_HOSTING = new ModelHostingStatus("STOPPING_HOSTING"); /// /// Constant SYSTEM_UPDATING for ModelHostingStatus /// public static readonly ModelHostingStatus SYSTEM_UPDATING = new ModelHostingStatus("SYSTEM_UPDATING"); /// /// 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 ModelHostingStatus(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 ModelHostingStatus 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 ModelHostingStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ModelPackagingJobStatus. /// public class ModelPackagingJobStatus : ConstantClass { /// /// Constant CREATED for ModelPackagingJobStatus /// public static readonly ModelPackagingJobStatus CREATED = new ModelPackagingJobStatus("CREATED"); /// /// Constant FAILED for ModelPackagingJobStatus /// public static readonly ModelPackagingJobStatus FAILED = new ModelPackagingJobStatus("FAILED"); /// /// Constant RUNNING for ModelPackagingJobStatus /// public static readonly ModelPackagingJobStatus RUNNING = new ModelPackagingJobStatus("RUNNING"); /// /// Constant SUCCEEDED for ModelPackagingJobStatus /// public static readonly ModelPackagingJobStatus SUCCEEDED = new ModelPackagingJobStatus("SUCCEEDED"); /// /// 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 ModelPackagingJobStatus(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 ModelPackagingJobStatus 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 ModelPackagingJobStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ModelStatus. /// public class ModelStatus : ConstantClass { /// /// Constant DELETING for ModelStatus /// public static readonly ModelStatus DELETING = new ModelStatus("DELETING"); /// /// Constant HOSTED for ModelStatus /// public static readonly ModelStatus HOSTED = new ModelStatus("HOSTED"); /// /// Constant HOSTING_FAILED for ModelStatus /// public static readonly ModelStatus HOSTING_FAILED = new ModelStatus("HOSTING_FAILED"); /// /// Constant STARTING_HOSTING for ModelStatus /// public static readonly ModelStatus STARTING_HOSTING = new ModelStatus("STARTING_HOSTING"); /// /// Constant STOPPING_HOSTING for ModelStatus /// public static readonly ModelStatus STOPPING_HOSTING = new ModelStatus("STOPPING_HOSTING"); /// /// Constant SYSTEM_UPDATING for ModelStatus /// public static readonly ModelStatus SYSTEM_UPDATING = new ModelStatus("SYSTEM_UPDATING"); /// /// Constant TRAINED for ModelStatus /// public static readonly ModelStatus TRAINED = new ModelStatus("TRAINED"); /// /// Constant TRAINING for ModelStatus /// public static readonly ModelStatus TRAINING = new ModelStatus("TRAINING"); /// /// Constant TRAINING_FAILED for ModelStatus /// public static readonly ModelStatus TRAINING_FAILED = new ModelStatus("TRAINING_FAILED"); /// /// 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 ModelStatus(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 ModelStatus 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 ModelStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type ResourceType. /// public class ResourceType : ConstantClass { /// /// Constant DATASET for ResourceType /// public static readonly ResourceType DATASET = new ResourceType("DATASET"); /// /// Constant MODEL for ResourceType /// public static readonly ResourceType MODEL = new ResourceType("MODEL"); /// /// Constant MODEL_PACKAGE_JOB for ResourceType /// public static readonly ResourceType MODEL_PACKAGE_JOB = new ResourceType("MODEL_PACKAGE_JOB"); /// /// Constant PROJECT for ResourceType /// public static readonly ResourceType PROJECT = new ResourceType("PROJECT"); /// /// Constant TRIAL for ResourceType /// public static readonly ResourceType TRIAL = new ResourceType("TRIAL"); /// /// 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 ResourceType(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 ResourceType 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 ResourceType(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetDevice. /// public class TargetDevice : ConstantClass { /// /// Constant Jetson_xavier for TargetDevice /// public static readonly TargetDevice Jetson_xavier = new TargetDevice("jetson_xavier"); /// /// 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 TargetDevice(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 TargetDevice 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 TargetDevice(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetPlatformAccelerator. /// public class TargetPlatformAccelerator : ConstantClass { /// /// Constant NVIDIA for TargetPlatformAccelerator /// public static readonly TargetPlatformAccelerator NVIDIA = new TargetPlatformAccelerator("NVIDIA"); /// /// 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 TargetPlatformAccelerator(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 TargetPlatformAccelerator 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 TargetPlatformAccelerator(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetPlatformArch. /// public class TargetPlatformArch : ConstantClass { /// /// Constant ARM64 for TargetPlatformArch /// public static readonly TargetPlatformArch ARM64 = new TargetPlatformArch("ARM64"); /// /// Constant X86_64 for TargetPlatformArch /// public static readonly TargetPlatformArch X86_64 = new TargetPlatformArch("X86_64"); /// /// 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 TargetPlatformArch(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 TargetPlatformArch 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 TargetPlatformArch(string value) { return FindValue(value); } } /// /// Constants used for properties of type TargetPlatformOs. /// public class TargetPlatformOs : ConstantClass { /// /// Constant LINUX for TargetPlatformOs /// public static readonly TargetPlatformOs LINUX = new TargetPlatformOs("LINUX"); /// /// 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 TargetPlatformOs(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 TargetPlatformOs 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 TargetPlatformOs(string value) { return FindValue(value); } } }