Enum DataSourceParameters.Type
- java.lang.Object
-
- java.lang.Enum<DataSourceParameters.Type>
-
- software.amazon.awssdk.services.quicksight.model.DataSourceParameters.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DataSourceParameters.Type>
- Enclosing class:
- DataSourceParameters
public static enum DataSourceParameters.Type extends Enum<DataSourceParameters.Type>
- See Also:
DataSourceParameters.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataSourceParameters.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataSourceParameters.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AMAZON_ELASTICSEARCH_PARAMETERS
public static final DataSourceParameters.Type AMAZON_ELASTICSEARCH_PARAMETERS
-
ATHENA_PARAMETERS
public static final DataSourceParameters.Type ATHENA_PARAMETERS
-
AURORA_PARAMETERS
public static final DataSourceParameters.Type AURORA_PARAMETERS
-
AURORA_POSTGRE_SQL_PARAMETERS
public static final DataSourceParameters.Type AURORA_POSTGRE_SQL_PARAMETERS
-
AWS_IOT_ANALYTICS_PARAMETERS
public static final DataSourceParameters.Type AWS_IOT_ANALYTICS_PARAMETERS
-
JIRA_PARAMETERS
public static final DataSourceParameters.Type JIRA_PARAMETERS
-
MARIA_DB_PARAMETERS
public static final DataSourceParameters.Type MARIA_DB_PARAMETERS
-
MY_SQL_PARAMETERS
public static final DataSourceParameters.Type MY_SQL_PARAMETERS
-
ORACLE_PARAMETERS
public static final DataSourceParameters.Type ORACLE_PARAMETERS
-
POSTGRE_SQL_PARAMETERS
public static final DataSourceParameters.Type POSTGRE_SQL_PARAMETERS
-
PRESTO_PARAMETERS
public static final DataSourceParameters.Type PRESTO_PARAMETERS
-
RDS_PARAMETERS
public static final DataSourceParameters.Type RDS_PARAMETERS
-
REDSHIFT_PARAMETERS
public static final DataSourceParameters.Type REDSHIFT_PARAMETERS
-
S3_PARAMETERS
public static final DataSourceParameters.Type S3_PARAMETERS
-
SERVICE_NOW_PARAMETERS
public static final DataSourceParameters.Type SERVICE_NOW_PARAMETERS
-
SNOWFLAKE_PARAMETERS
public static final DataSourceParameters.Type SNOWFLAKE_PARAMETERS
-
SPARK_PARAMETERS
public static final DataSourceParameters.Type SPARK_PARAMETERS
-
SQL_SERVER_PARAMETERS
public static final DataSourceParameters.Type SQL_SERVER_PARAMETERS
-
TERADATA_PARAMETERS
public static final DataSourceParameters.Type TERADATA_PARAMETERS
-
TWITTER_PARAMETERS
public static final DataSourceParameters.Type TWITTER_PARAMETERS
-
AMAZON_OPEN_SEARCH_PARAMETERS
public static final DataSourceParameters.Type AMAZON_OPEN_SEARCH_PARAMETERS
-
EXASOL_PARAMETERS
public static final DataSourceParameters.Type EXASOL_PARAMETERS
-
DATABRICKS_PARAMETERS
public static final DataSourceParameters.Type DATABRICKS_PARAMETERS
-
STARBURST_PARAMETERS
public static final DataSourceParameters.Type STARBURST_PARAMETERS
-
TRINO_PARAMETERS
public static final DataSourceParameters.Type TRINO_PARAMETERS
-
BIG_QUERY_PARAMETERS
public static final DataSourceParameters.Type BIG_QUERY_PARAMETERS
-
IMPALA_PARAMETERS
public static final DataSourceParameters.Type IMPALA_PARAMETERS
-
CUSTOM_CONNECTION_PARAMETERS
public static final DataSourceParameters.Type CUSTOM_CONNECTION_PARAMETERS
-
UNKNOWN_TO_SDK_VERSION
public static final DataSourceParameters.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DataSourceParameters.Type[] 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 (DataSourceParameters.Type c : DataSourceParameters.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSourceParameters.Type 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
-
-