Enum IngestionErrorType
- java.lang.Object
-
- java.lang.Enum<IngestionErrorType>
-
- software.amazon.awssdk.services.quicksight.model.IngestionErrorType
-
- All Implemented Interfaces:
Serializable,Comparable<IngestionErrorType>
@Generated("software.amazon.awssdk:codegen") public enum IngestionErrorType extends Enum<IngestionErrorType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IngestionErrorTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<IngestionErrorType>knownValues()StringtoString()static IngestionErrorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IngestionErrorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILURE_TO_ASSUME_ROLE
public static final IngestionErrorType FAILURE_TO_ASSUME_ROLE
-
INGESTION_SUPERSEDED
public static final IngestionErrorType INGESTION_SUPERSEDED
-
INGESTION_CANCELED
public static final IngestionErrorType INGESTION_CANCELED
-
DATA_SET_DELETED
public static final IngestionErrorType DATA_SET_DELETED
-
DATA_SET_NOT_SPICE
public static final IngestionErrorType DATA_SET_NOT_SPICE
-
S3_UPLOADED_FILE_DELETED
public static final IngestionErrorType S3_UPLOADED_FILE_DELETED
-
S3_MANIFEST_ERROR
public static final IngestionErrorType S3_MANIFEST_ERROR
-
DATA_TOLERANCE_EXCEPTION
public static final IngestionErrorType DATA_TOLERANCE_EXCEPTION
-
SPICE_TABLE_NOT_FOUND
public static final IngestionErrorType SPICE_TABLE_NOT_FOUND
-
DATA_SET_SIZE_LIMIT_EXCEEDED
public static final IngestionErrorType DATA_SET_SIZE_LIMIT_EXCEEDED
-
ROW_SIZE_LIMIT_EXCEEDED
public static final IngestionErrorType ROW_SIZE_LIMIT_EXCEEDED
-
ACCOUNT_CAPACITY_LIMIT_EXCEEDED
public static final IngestionErrorType ACCOUNT_CAPACITY_LIMIT_EXCEEDED
-
CUSTOMER_ERROR
public static final IngestionErrorType CUSTOMER_ERROR
-
DATA_SOURCE_NOT_FOUND
public static final IngestionErrorType DATA_SOURCE_NOT_FOUND
-
IAM_ROLE_NOT_AVAILABLE
public static final IngestionErrorType IAM_ROLE_NOT_AVAILABLE
-
CONNECTION_FAILURE
public static final IngestionErrorType CONNECTION_FAILURE
-
SQL_TABLE_NOT_FOUND
public static final IngestionErrorType SQL_TABLE_NOT_FOUND
-
PERMISSION_DENIED
public static final IngestionErrorType PERMISSION_DENIED
-
SSL_CERTIFICATE_VALIDATION_FAILURE
public static final IngestionErrorType SSL_CERTIFICATE_VALIDATION_FAILURE
-
OAUTH_TOKEN_FAILURE
public static final IngestionErrorType OAUTH_TOKEN_FAILURE
-
SOURCE_API_LIMIT_EXCEEDED_FAILURE
public static final IngestionErrorType SOURCE_API_LIMIT_EXCEEDED_FAILURE
-
PASSWORD_AUTHENTICATION_FAILURE
public static final IngestionErrorType PASSWORD_AUTHENTICATION_FAILURE
-
SQL_SCHEMA_MISMATCH_ERROR
public static final IngestionErrorType SQL_SCHEMA_MISMATCH_ERROR
-
INVALID_DATE_FORMAT
public static final IngestionErrorType INVALID_DATE_FORMAT
-
INVALID_DATAPREP_SYNTAX
public static final IngestionErrorType INVALID_DATAPREP_SYNTAX
-
SOURCE_RESOURCE_LIMIT_EXCEEDED
public static final IngestionErrorType SOURCE_RESOURCE_LIMIT_EXCEEDED
-
SQL_INVALID_PARAMETER_VALUE
public static final IngestionErrorType SQL_INVALID_PARAMETER_VALUE
-
QUERY_TIMEOUT
public static final IngestionErrorType QUERY_TIMEOUT
-
SQL_NUMERIC_OVERFLOW
public static final IngestionErrorType SQL_NUMERIC_OVERFLOW
-
UNRESOLVABLE_HOST
public static final IngestionErrorType UNRESOLVABLE_HOST
-
UNROUTABLE_HOST
public static final IngestionErrorType UNROUTABLE_HOST
-
SQL_EXCEPTION
public static final IngestionErrorType SQL_EXCEPTION
-
S3_FILE_INACCESSIBLE
public static final IngestionErrorType S3_FILE_INACCESSIBLE
-
IOT_FILE_NOT_FOUND
public static final IngestionErrorType IOT_FILE_NOT_FOUND
-
IOT_DATA_SET_FILE_EMPTY
public static final IngestionErrorType IOT_DATA_SET_FILE_EMPTY
-
INVALID_DATA_SOURCE_CONFIG
public static final IngestionErrorType INVALID_DATA_SOURCE_CONFIG
-
DATA_SOURCE_AUTH_FAILED
public static final IngestionErrorType DATA_SOURCE_AUTH_FAILED
-
DATA_SOURCE_CONNECTION_FAILED
public static final IngestionErrorType DATA_SOURCE_CONNECTION_FAILED
-
FAILURE_TO_PROCESS_JSON_FILE
public static final IngestionErrorType FAILURE_TO_PROCESS_JSON_FILE
-
INTERNAL_SERVICE_ERROR
public static final IngestionErrorType INTERNAL_SERVICE_ERROR
-
REFRESH_SUPPRESSED_BY_EDIT
public static final IngestionErrorType REFRESH_SUPPRESSED_BY_EDIT
-
PERMISSION_NOT_FOUND
public static final IngestionErrorType PERMISSION_NOT_FOUND
-
ELASTICSEARCH_CURSOR_NOT_ENABLED
public static final IngestionErrorType ELASTICSEARCH_CURSOR_NOT_ENABLED
-
CURSOR_NOT_ENABLED
public static final IngestionErrorType CURSOR_NOT_ENABLED
-
DUPLICATE_COLUMN_NAMES_FOUND
public static final IngestionErrorType DUPLICATE_COLUMN_NAMES_FOUND
-
UNKNOWN_TO_SDK_VERSION
public static final IngestionErrorType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static IngestionErrorType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IngestionErrorType c : IngestionErrorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IngestionErrorType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<IngestionErrorType>
-
fromValue
public static IngestionErrorType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- IngestionErrorType corresponding to the value
-
knownValues
public static Set<IngestionErrorType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownIngestionErrorTypes
-
-