Enum RecommendationSource
- java.lang.Object
-
- java.lang.Enum<RecommendationSource>
-
- software.amazon.awssdk.services.trustedadvisor.model.RecommendationSource
-
- All Implemented Interfaces:
Serializable,Comparable<RecommendationSource>
@Generated("software.amazon.awssdk:codegen") public enum RecommendationSource extends Enum<RecommendationSource>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS_CONFIGCOMPUTE_OPTIMIZERCOST_EXPLORERLSEMANUALPSERDSRESILIENCERESILIENCE_HUBSECURITY_HUBSTIRTA_CHECKUNKNOWN_TO_SDK_VERSIONWELL_ARCHITECTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RecommendationSourcefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RecommendationSource>knownValues()StringtoString()static RecommendationSourcevalueOf(String name)Returns the enum constant of this type with the specified name.static RecommendationSource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS_CONFIG
public static final RecommendationSource AWS_CONFIG
-
COMPUTE_OPTIMIZER
public static final RecommendationSource COMPUTE_OPTIMIZER
-
COST_EXPLORER
public static final RecommendationSource COST_EXPLORER
-
LSE
public static final RecommendationSource LSE
-
MANUAL
public static final RecommendationSource MANUAL
-
PSE
public static final RecommendationSource PSE
-
RDS
public static final RecommendationSource RDS
-
RESILIENCE
public static final RecommendationSource RESILIENCE
-
RESILIENCE_HUB
public static final RecommendationSource RESILIENCE_HUB
-
SECURITY_HUB
public static final RecommendationSource SECURITY_HUB
-
STIR
public static final RecommendationSource STIR
-
TA_CHECK
public static final RecommendationSource TA_CHECK
-
WELL_ARCHITECTED
public static final RecommendationSource WELL_ARCHITECTED
-
UNKNOWN_TO_SDK_VERSION
public static final RecommendationSource UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RecommendationSource[] 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 (RecommendationSource c : RecommendationSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecommendationSource 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<RecommendationSource>
-
fromValue
public static RecommendationSource 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:
- RecommendationSource corresponding to the value
-
knownValues
public static Set<RecommendationSource> 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 knownRecommendationSources
-
-