/* * 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 honeycode-2020-03-01.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.Honeycode { /// /// Constants used for properties of type ErrorCode. /// public class ErrorCode : ConstantClass { /// /// Constant ACCESS_DENIED for ErrorCode /// public static readonly ErrorCode ACCESS_DENIED = new ErrorCode("ACCESS_DENIED"); /// /// Constant FILE_EMPTY_ERROR for ErrorCode /// public static readonly ErrorCode FILE_EMPTY_ERROR = new ErrorCode("FILE_EMPTY_ERROR"); /// /// Constant FILE_NOT_FOUND_ERROR for ErrorCode /// public static readonly ErrorCode FILE_NOT_FOUND_ERROR = new ErrorCode("FILE_NOT_FOUND_ERROR"); /// /// Constant FILE_PARSING_ERROR for ErrorCode /// public static readonly ErrorCode FILE_PARSING_ERROR = new ErrorCode("FILE_PARSING_ERROR"); /// /// Constant FILE_SIZE_LIMIT_ERROR for ErrorCode /// public static readonly ErrorCode FILE_SIZE_LIMIT_ERROR = new ErrorCode("FILE_SIZE_LIMIT_ERROR"); /// /// Constant INVALID_FILE_TYPE_ERROR for ErrorCode /// public static readonly ErrorCode INVALID_FILE_TYPE_ERROR = new ErrorCode("INVALID_FILE_TYPE_ERROR"); /// /// Constant INVALID_IMPORT_OPTIONS_ERROR for ErrorCode /// public static readonly ErrorCode INVALID_IMPORT_OPTIONS_ERROR = new ErrorCode("INVALID_IMPORT_OPTIONS_ERROR"); /// /// Constant INVALID_TABLE_COLUMN_ID_ERROR for ErrorCode /// public static readonly ErrorCode INVALID_TABLE_COLUMN_ID_ERROR = new ErrorCode("INVALID_TABLE_COLUMN_ID_ERROR"); /// /// Constant INVALID_TABLE_ID_ERROR for ErrorCode /// public static readonly ErrorCode INVALID_TABLE_ID_ERROR = new ErrorCode("INVALID_TABLE_ID_ERROR"); /// /// Constant INVALID_URL_ERROR for ErrorCode /// public static readonly ErrorCode INVALID_URL_ERROR = new ErrorCode("INVALID_URL_ERROR"); /// /// Constant RESOURCE_NOT_FOUND_ERROR for ErrorCode /// public static readonly ErrorCode RESOURCE_NOT_FOUND_ERROR = new ErrorCode("RESOURCE_NOT_FOUND_ERROR"); /// /// Constant SYSTEM_LIMIT_ERROR for ErrorCode /// public static readonly ErrorCode SYSTEM_LIMIT_ERROR = new ErrorCode("SYSTEM_LIMIT_ERROR"); /// /// Constant TABLE_NOT_FOUND_ERROR for ErrorCode /// public static readonly ErrorCode TABLE_NOT_FOUND_ERROR = new ErrorCode("TABLE_NOT_FOUND_ERROR"); /// /// Constant UNKNOWN_ERROR for ErrorCode /// public static readonly ErrorCode UNKNOWN_ERROR = new ErrorCode("UNKNOWN_ERROR"); /// /// 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 ErrorCode(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 ErrorCode 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 ErrorCode(string value) { return FindValue(value); } } /// /// Constants used for properties of type Format. /// public class Format : ConstantClass { /// /// Constant ACCOUNTING for Format /// public static readonly Format ACCOUNTING = new Format("ACCOUNTING"); /// /// Constant AUTO for Format /// public static readonly Format AUTO = new Format("AUTO"); /// /// Constant CONTACT for Format /// public static readonly Format CONTACT = new Format("CONTACT"); /// /// Constant CURRENCY for Format /// public static readonly Format CURRENCY = new Format("CURRENCY"); /// /// Constant DATE for Format /// public static readonly Format DATE = new Format("DATE"); /// /// Constant DATE_TIME for Format /// public static readonly Format DATE_TIME = new Format("DATE_TIME"); /// /// Constant NUMBER for Format /// public static readonly Format NUMBER = new Format("NUMBER"); /// /// Constant PERCENTAGE for Format /// public static readonly Format PERCENTAGE = new Format("PERCENTAGE"); /// /// Constant ROWLINK for Format /// public static readonly Format ROWLINK = new Format("ROWLINK"); /// /// Constant ROWSET for Format /// public static readonly Format ROWSET = new Format("ROWSET"); /// /// Constant TEXT for Format /// public static readonly Format TEXT = new Format("TEXT"); /// /// Constant TIME for Format /// public static readonly Format TIME = new Format("TIME"); /// /// 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 Format(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 Format 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 Format(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImportDataCharacterEncoding. /// public class ImportDataCharacterEncoding : ConstantClass { /// /// Constant ISO88591 for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding ISO88591 = new ImportDataCharacterEncoding("ISO-8859-1"); /// /// Constant USASCII for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding USASCII = new ImportDataCharacterEncoding("US-ASCII"); /// /// Constant UTF16 for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding UTF16 = new ImportDataCharacterEncoding("UTF-16"); /// /// Constant UTF16BE for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding UTF16BE = new ImportDataCharacterEncoding("UTF-16BE"); /// /// Constant UTF16LE for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding UTF16LE = new ImportDataCharacterEncoding("UTF-16LE"); /// /// Constant UTF8 for ImportDataCharacterEncoding /// public static readonly ImportDataCharacterEncoding UTF8 = new ImportDataCharacterEncoding("UTF-8"); /// /// 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 ImportDataCharacterEncoding(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 ImportDataCharacterEncoding 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 ImportDataCharacterEncoding(string value) { return FindValue(value); } } /// /// Constants used for properties of type ImportSourceDataFormat. /// public class ImportSourceDataFormat : ConstantClass { /// /// Constant DELIMITED_TEXT for ImportSourceDataFormat /// public static readonly ImportSourceDataFormat DELIMITED_TEXT = new ImportSourceDataFormat("DELIMITED_TEXT"); /// /// 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 ImportSourceDataFormat(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 ImportSourceDataFormat 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 ImportSourceDataFormat(string value) { return FindValue(value); } } /// /// Constants used for properties of type TableDataImportJobStatus. /// public class TableDataImportJobStatus : ConstantClass { /// /// Constant COMPLETED for TableDataImportJobStatus /// public static readonly TableDataImportJobStatus COMPLETED = new TableDataImportJobStatus("COMPLETED"); /// /// Constant FAILED for TableDataImportJobStatus /// public static readonly TableDataImportJobStatus FAILED = new TableDataImportJobStatus("FAILED"); /// /// Constant IN_PROGRESS for TableDataImportJobStatus /// public static readonly TableDataImportJobStatus IN_PROGRESS = new TableDataImportJobStatus("IN_PROGRESS"); /// /// Constant SUBMITTED for TableDataImportJobStatus /// public static readonly TableDataImportJobStatus SUBMITTED = new TableDataImportJobStatus("SUBMITTED"); /// /// 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 TableDataImportJobStatus(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 TableDataImportJobStatus 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 TableDataImportJobStatus(string value) { return FindValue(value); } } /// /// Constants used for properties of type UpsertAction. /// public class UpsertAction : ConstantClass { /// /// Constant APPENDED for UpsertAction /// public static readonly UpsertAction APPENDED = new UpsertAction("APPENDED"); /// /// Constant UPDATED for UpsertAction /// public static readonly UpsertAction UPDATED = new UpsertAction("UPDATED"); /// /// 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 UpsertAction(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 UpsertAction 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 UpsertAction(string value) { return FindValue(value); } } }