/*
* 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 iotanalytics-2017-11-27.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.IoTAnalytics
{
///
/// Constants used for properties of type ChannelStatus.
///
public class ChannelStatus : ConstantClass
{
///
/// Constant ACTIVE for ChannelStatus
///
public static readonly ChannelStatus ACTIVE = new ChannelStatus("ACTIVE");
///
/// Constant CREATING for ChannelStatus
///
public static readonly ChannelStatus CREATING = new ChannelStatus("CREATING");
///
/// Constant DELETING for ChannelStatus
///
public static readonly ChannelStatus DELETING = new ChannelStatus("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 ChannelStatus(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 ChannelStatus 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 ChannelStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ComputeType.
///
public class ComputeType : ConstantClass
{
///
/// Constant ACU_1 for ComputeType
///
public static readonly ComputeType ACU_1 = new ComputeType("ACU_1");
///
/// Constant ACU_2 for ComputeType
///
public static readonly ComputeType ACU_2 = new ComputeType("ACU_2");
///
/// 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 ComputeType(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 ComputeType 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 ComputeType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetActionType.
///
public class DatasetActionType : ConstantClass
{
///
/// Constant CONTAINER for DatasetActionType
///
public static readonly DatasetActionType CONTAINER = new DatasetActionType("CONTAINER");
///
/// Constant QUERY for DatasetActionType
///
public static readonly DatasetActionType QUERY = new DatasetActionType("QUERY");
///
/// 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 DatasetActionType(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 DatasetActionType 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 DatasetActionType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetContentState.
///
public class DatasetContentState : ConstantClass
{
///
/// Constant CREATING for DatasetContentState
///
public static readonly DatasetContentState CREATING = new DatasetContentState("CREATING");
///
/// Constant FAILED for DatasetContentState
///
public static readonly DatasetContentState FAILED = new DatasetContentState("FAILED");
///
/// Constant SUCCEEDED for DatasetContentState
///
public static readonly DatasetContentState SUCCEEDED = new DatasetContentState("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 DatasetContentState(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 DatasetContentState 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 DatasetContentState(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type DatasetStatus.
///
public class DatasetStatus : ConstantClass
{
///
/// Constant ACTIVE for DatasetStatus
///
public static readonly DatasetStatus ACTIVE = new DatasetStatus("ACTIVE");
///
/// Constant CREATING for DatasetStatus
///
public static readonly DatasetStatus CREATING = new DatasetStatus("CREATING");
///
/// Constant DELETING for DatasetStatus
///
public static readonly DatasetStatus DELETING = new DatasetStatus("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 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 DatastoreStatus.
///
public class DatastoreStatus : ConstantClass
{
///
/// Constant ACTIVE for DatastoreStatus
///
public static readonly DatastoreStatus ACTIVE = new DatastoreStatus("ACTIVE");
///
/// Constant CREATING for DatastoreStatus
///
public static readonly DatastoreStatus CREATING = new DatastoreStatus("CREATING");
///
/// Constant DELETING for DatastoreStatus
///
public static readonly DatastoreStatus DELETING = new DatastoreStatus("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 DatastoreStatus(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 DatastoreStatus 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 DatastoreStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type FileFormatType.
///
public class FileFormatType : ConstantClass
{
///
/// Constant JSON for FileFormatType
///
public static readonly FileFormatType JSON = new FileFormatType("JSON");
///
/// Constant PARQUET for FileFormatType
///
public static readonly FileFormatType PARQUET = new FileFormatType("PARQUET");
///
/// 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 FileFormatType(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 FileFormatType 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 FileFormatType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LoggingLevel.
///
public class LoggingLevel : ConstantClass
{
///
/// Constant ERROR for LoggingLevel
///
public static readonly LoggingLevel ERROR = new LoggingLevel("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 LoggingLevel(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 LoggingLevel 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 LoggingLevel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ReprocessingStatus.
///
public class ReprocessingStatus : ConstantClass
{
///
/// Constant CANCELLED for ReprocessingStatus
///
public static readonly ReprocessingStatus CANCELLED = new ReprocessingStatus("CANCELLED");
///
/// Constant FAILED for ReprocessingStatus
///
public static readonly ReprocessingStatus FAILED = new ReprocessingStatus("FAILED");
///
/// Constant RUNNING for ReprocessingStatus
///
public static readonly ReprocessingStatus RUNNING = new ReprocessingStatus("RUNNING");
///
/// Constant SUCCEEDED for ReprocessingStatus
///
public static readonly ReprocessingStatus SUCCEEDED = new ReprocessingStatus("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 ReprocessingStatus(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 ReprocessingStatus 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 ReprocessingStatus(string value)
{
return FindValue(value);
}
}
}