Enum ConnectorType
- java.lang.Object
-
- java.lang.Enum<ConnectorType>
-
- software.amazon.awssdk.services.appflow.model.ConnectorType
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectorType>
@Generated("software.amazon.awssdk:codegen") public enum ConnectorType extends Enum<ConnectorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMPLITUDECUSTOM_CONNECTORCUSTOMER_PROFILESDATADOGDYNATRACEEVENT_BRIDGEGOOGLEANALYTICSHONEYCODEINFORNEXUSLOOKOUT_METRICSMARKETOPARDOTREDSHIFTS3SALESFORCESAPO_DATASERVICENOWSINGULARSLACKSNOWFLAKETRENDMICROUNKNOWN_TO_SDK_VERSIONUPSOLVERVEEVAZENDESK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConnectorTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ConnectorType>knownValues()StringtoString()static ConnectorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SALESFORCE
public static final ConnectorType SALESFORCE
-
SINGULAR
public static final ConnectorType SINGULAR
-
SLACK
public static final ConnectorType SLACK
-
REDSHIFT
public static final ConnectorType REDSHIFT
-
S3
public static final ConnectorType S3
-
MARKETO
public static final ConnectorType MARKETO
-
GOOGLEANALYTICS
public static final ConnectorType GOOGLEANALYTICS
-
ZENDESK
public static final ConnectorType ZENDESK
-
SERVICENOW
public static final ConnectorType SERVICENOW
-
DATADOG
public static final ConnectorType DATADOG
-
TRENDMICRO
public static final ConnectorType TRENDMICRO
-
SNOWFLAKE
public static final ConnectorType SNOWFLAKE
-
DYNATRACE
public static final ConnectorType DYNATRACE
-
INFORNEXUS
public static final ConnectorType INFORNEXUS
-
AMPLITUDE
public static final ConnectorType AMPLITUDE
-
VEEVA
public static final ConnectorType VEEVA
-
EVENT_BRIDGE
public static final ConnectorType EVENT_BRIDGE
-
LOOKOUT_METRICS
public static final ConnectorType LOOKOUT_METRICS
-
UPSOLVER
public static final ConnectorType UPSOLVER
-
HONEYCODE
public static final ConnectorType HONEYCODE
-
CUSTOMER_PROFILES
public static final ConnectorType CUSTOMER_PROFILES
-
SAPO_DATA
public static final ConnectorType SAPO_DATA
-
CUSTOM_CONNECTOR
public static final ConnectorType CUSTOM_CONNECTOR
-
PARDOT
public static final ConnectorType PARDOT
-
UNKNOWN_TO_SDK_VERSION
public static final ConnectorType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ConnectorType[] 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 (ConnectorType c : ConnectorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectorType 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<ConnectorType>
-
fromValue
public static ConnectorType 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:
- ConnectorType corresponding to the value
-
knownValues
public static Set<ConnectorType> 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 knownConnectorTypes
-
-