/*
* 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 kinesisanalyticsv2-2018-05-23.normal.json service model.
*/
using System;
using Amazon.Runtime;
namespace Amazon.KinesisAnalyticsV2
{
///
/// Constants used for properties of type ApplicationMode.
///
public class ApplicationMode : ConstantClass
{
///
/// Constant INTERACTIVE for ApplicationMode
///
public static readonly ApplicationMode INTERACTIVE = new ApplicationMode("INTERACTIVE");
///
/// Constant STREAMING for ApplicationMode
///
public static readonly ApplicationMode STREAMING = new ApplicationMode("STREAMING");
///
/// 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 ApplicationMode(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 ApplicationMode 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 ApplicationMode(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ApplicationRestoreType.
///
public class ApplicationRestoreType : ConstantClass
{
///
/// Constant RESTORE_FROM_CUSTOM_SNAPSHOT for ApplicationRestoreType
///
public static readonly ApplicationRestoreType RESTORE_FROM_CUSTOM_SNAPSHOT = new ApplicationRestoreType("RESTORE_FROM_CUSTOM_SNAPSHOT");
///
/// Constant RESTORE_FROM_LATEST_SNAPSHOT for ApplicationRestoreType
///
public static readonly ApplicationRestoreType RESTORE_FROM_LATEST_SNAPSHOT = new ApplicationRestoreType("RESTORE_FROM_LATEST_SNAPSHOT");
///
/// Constant SKIP_RESTORE_FROM_SNAPSHOT for ApplicationRestoreType
///
public static readonly ApplicationRestoreType SKIP_RESTORE_FROM_SNAPSHOT = new ApplicationRestoreType("SKIP_RESTORE_FROM_SNAPSHOT");
///
/// 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 ApplicationRestoreType(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 ApplicationRestoreType 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 ApplicationRestoreType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ApplicationStatus.
///
public class ApplicationStatus : ConstantClass
{
///
/// Constant AUTOSCALING for ApplicationStatus
///
public static readonly ApplicationStatus AUTOSCALING = new ApplicationStatus("AUTOSCALING");
///
/// Constant DELETING for ApplicationStatus
///
public static readonly ApplicationStatus DELETING = new ApplicationStatus("DELETING");
///
/// Constant FORCE_STOPPING for ApplicationStatus
///
public static readonly ApplicationStatus FORCE_STOPPING = new ApplicationStatus("FORCE_STOPPING");
///
/// Constant MAINTENANCE for ApplicationStatus
///
public static readonly ApplicationStatus MAINTENANCE = new ApplicationStatus("MAINTENANCE");
///
/// Constant READY for ApplicationStatus
///
public static readonly ApplicationStatus READY = new ApplicationStatus("READY");
///
/// Constant ROLLED_BACK for ApplicationStatus
///
public static readonly ApplicationStatus ROLLED_BACK = new ApplicationStatus("ROLLED_BACK");
///
/// Constant ROLLING_BACK for ApplicationStatus
///
public static readonly ApplicationStatus ROLLING_BACK = new ApplicationStatus("ROLLING_BACK");
///
/// Constant RUNNING for ApplicationStatus
///
public static readonly ApplicationStatus RUNNING = new ApplicationStatus("RUNNING");
///
/// Constant STARTING for ApplicationStatus
///
public static readonly ApplicationStatus STARTING = new ApplicationStatus("STARTING");
///
/// Constant STOPPING for ApplicationStatus
///
public static readonly ApplicationStatus STOPPING = new ApplicationStatus("STOPPING");
///
/// Constant UPDATING for ApplicationStatus
///
public static readonly ApplicationStatus UPDATING = new ApplicationStatus("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 ApplicationStatus(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 ApplicationStatus 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 ApplicationStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ArtifactType.
///
public class ArtifactType : ConstantClass
{
///
/// Constant DEPENDENCY_JAR for ArtifactType
///
public static readonly ArtifactType DEPENDENCY_JAR = new ArtifactType("DEPENDENCY_JAR");
///
/// Constant UDF for ArtifactType
///
public static readonly ArtifactType UDF = new ArtifactType("UDF");
///
/// 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 ArtifactType(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 ArtifactType 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 ArtifactType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type CodeContentType.
///
public class CodeContentType : ConstantClass
{
///
/// Constant PLAINTEXT for CodeContentType
///
public static readonly CodeContentType PLAINTEXT = new CodeContentType("PLAINTEXT");
///
/// Constant ZIPFILE for CodeContentType
///
public static readonly CodeContentType ZIPFILE = new CodeContentType("ZIPFILE");
///
/// 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 CodeContentType(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 CodeContentType 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 CodeContentType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type ConfigurationType.
///
public class ConfigurationType : ConstantClass
{
///
/// Constant CUSTOM for ConfigurationType
///
public static readonly ConfigurationType CUSTOM = new ConfigurationType("CUSTOM");
///
/// Constant DEFAULT for ConfigurationType
///
public static readonly ConfigurationType DEFAULT = new ConfigurationType("DEFAULT");
///
/// 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 ConfigurationType(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 ConfigurationType 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 ConfigurationType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type InputStartingPosition.
///
public class InputStartingPosition : ConstantClass
{
///
/// Constant LAST_STOPPED_POINT for InputStartingPosition
///
public static readonly InputStartingPosition LAST_STOPPED_POINT = new InputStartingPosition("LAST_STOPPED_POINT");
///
/// Constant NOW for InputStartingPosition
///
public static readonly InputStartingPosition NOW = new InputStartingPosition("NOW");
///
/// Constant TRIM_HORIZON for InputStartingPosition
///
public static readonly InputStartingPosition TRIM_HORIZON = new InputStartingPosition("TRIM_HORIZON");
///
/// 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 InputStartingPosition(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 InputStartingPosition 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 InputStartingPosition(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type LogLevel.
///
public class LogLevel : ConstantClass
{
///
/// Constant DEBUG for LogLevel
///
public static readonly LogLevel DEBUG = new LogLevel("DEBUG");
///
/// Constant ERROR for LogLevel
///
public static readonly LogLevel ERROR = new LogLevel("ERROR");
///
/// Constant INFO for LogLevel
///
public static readonly LogLevel INFO = new LogLevel("INFO");
///
/// Constant WARN for LogLevel
///
public static readonly LogLevel WARN = new LogLevel("WARN");
///
/// 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 LogLevel(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 LogLevel 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 LogLevel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type MetricsLevel.
///
public class MetricsLevel : ConstantClass
{
///
/// Constant APPLICATION for MetricsLevel
///
public static readonly MetricsLevel APPLICATION = new MetricsLevel("APPLICATION");
///
/// Constant OPERATOR for MetricsLevel
///
public static readonly MetricsLevel OPERATOR = new MetricsLevel("OPERATOR");
///
/// Constant PARALLELISM for MetricsLevel
///
public static readonly MetricsLevel PARALLELISM = new MetricsLevel("PARALLELISM");
///
/// Constant TASK for MetricsLevel
///
public static readonly MetricsLevel TASK = new MetricsLevel("TASK");
///
/// 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 MetricsLevel(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 MetricsLevel 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 MetricsLevel(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RecordFormatType.
///
public class RecordFormatType : ConstantClass
{
///
/// Constant CSV for RecordFormatType
///
public static readonly RecordFormatType CSV = new RecordFormatType("CSV");
///
/// Constant JSON for RecordFormatType
///
public static readonly RecordFormatType JSON = new RecordFormatType("JSON");
///
/// 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 RecordFormatType(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 RecordFormatType 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 RecordFormatType(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type RuntimeEnvironment.
///
public class RuntimeEnvironment : ConstantClass
{
///
/// Constant FLINK1_11 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment FLINK1_11 = new RuntimeEnvironment("FLINK-1_11");
///
/// Constant FLINK1_13 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment FLINK1_13 = new RuntimeEnvironment("FLINK-1_13");
///
/// Constant FLINK1_15 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment FLINK1_15 = new RuntimeEnvironment("FLINK-1_15");
///
/// Constant FLINK1_6 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment FLINK1_6 = new RuntimeEnvironment("FLINK-1_6");
///
/// Constant FLINK1_8 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment FLINK1_8 = new RuntimeEnvironment("FLINK-1_8");
///
/// Constant SQL1_0 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment SQL1_0 = new RuntimeEnvironment("SQL-1_0");
///
/// Constant ZEPPELINFLINK1_0 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment ZEPPELINFLINK1_0 = new RuntimeEnvironment("ZEPPELIN-FLINK-1_0");
///
/// Constant ZEPPELINFLINK2_0 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment ZEPPELINFLINK2_0 = new RuntimeEnvironment("ZEPPELIN-FLINK-2_0");
///
/// Constant ZEPPELINFLINK3_0 for RuntimeEnvironment
///
public static readonly RuntimeEnvironment ZEPPELINFLINK3_0 = new RuntimeEnvironment("ZEPPELIN-FLINK-3_0");
///
/// 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 RuntimeEnvironment(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 RuntimeEnvironment 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 RuntimeEnvironment(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type SnapshotStatus.
///
public class SnapshotStatus : ConstantClass
{
///
/// Constant CREATING for SnapshotStatus
///
public static readonly SnapshotStatus CREATING = new SnapshotStatus("CREATING");
///
/// Constant DELETING for SnapshotStatus
///
public static readonly SnapshotStatus DELETING = new SnapshotStatus("DELETING");
///
/// Constant FAILED for SnapshotStatus
///
public static readonly SnapshotStatus FAILED = new SnapshotStatus("FAILED");
///
/// Constant READY for SnapshotStatus
///
public static readonly SnapshotStatus READY = new SnapshotStatus("READY");
///
/// 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 SnapshotStatus(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 SnapshotStatus 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 SnapshotStatus(string value)
{
return FindValue(value);
}
}
///
/// Constants used for properties of type UrlType.
///
public class UrlType : ConstantClass
{
///
/// Constant FLINK_DASHBOARD_URL for UrlType
///
public static readonly UrlType FLINK_DASHBOARD_URL = new UrlType("FLINK_DASHBOARD_URL");
///
/// Constant ZEPPELIN_UI_URL for UrlType
///
public static readonly UrlType ZEPPELIN_UI_URL = new UrlType("ZEPPELIN_UI_URL");
///
/// 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 UrlType(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 UrlType 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 UrlType(string value)
{
return FindValue(value);
}
}
}