Enum SummaryKeyType
- java.lang.Object
-
- java.lang.Enum<SummaryKeyType>
-
- software.amazon.awssdk.services.iam.model.SummaryKeyType
-
- All Implemented Interfaces:
Serializable,Comparable<SummaryKeyType>
@Generated("software.amazon.awssdk:codegen") public enum SummaryKeyType extends Enum<SummaryKeyType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SummaryKeyTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SummaryKeyType>knownValues()StringtoString()static SummaryKeyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SummaryKeyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USERS
public static final SummaryKeyType USERS
-
USERS_QUOTA
public static final SummaryKeyType USERS_QUOTA
-
GROUPS
public static final SummaryKeyType GROUPS
-
GROUPS_QUOTA
public static final SummaryKeyType GROUPS_QUOTA
-
SERVER_CERTIFICATES
public static final SummaryKeyType SERVER_CERTIFICATES
-
SERVER_CERTIFICATES_QUOTA
public static final SummaryKeyType SERVER_CERTIFICATES_QUOTA
-
USER_POLICY_SIZE_QUOTA
public static final SummaryKeyType USER_POLICY_SIZE_QUOTA
-
GROUP_POLICY_SIZE_QUOTA
public static final SummaryKeyType GROUP_POLICY_SIZE_QUOTA
-
GROUPS_PER_USER_QUOTA
public static final SummaryKeyType GROUPS_PER_USER_QUOTA
-
SIGNING_CERTIFICATES_PER_USER_QUOTA
public static final SummaryKeyType SIGNING_CERTIFICATES_PER_USER_QUOTA
-
ACCESS_KEYS_PER_USER_QUOTA
public static final SummaryKeyType ACCESS_KEYS_PER_USER_QUOTA
-
MFA_DEVICES
public static final SummaryKeyType MFA_DEVICES
-
MFA_DEVICES_IN_USE
public static final SummaryKeyType MFA_DEVICES_IN_USE
-
ACCOUNT_MFA_ENABLED
public static final SummaryKeyType ACCOUNT_MFA_ENABLED
-
ACCOUNT_ACCESS_KEYS_PRESENT
public static final SummaryKeyType ACCOUNT_ACCESS_KEYS_PRESENT
-
ACCOUNT_SIGNING_CERTIFICATES_PRESENT
public static final SummaryKeyType ACCOUNT_SIGNING_CERTIFICATES_PRESENT
-
ATTACHED_POLICIES_PER_GROUP_QUOTA
public static final SummaryKeyType ATTACHED_POLICIES_PER_GROUP_QUOTA
-
ATTACHED_POLICIES_PER_ROLE_QUOTA
public static final SummaryKeyType ATTACHED_POLICIES_PER_ROLE_QUOTA
-
ATTACHED_POLICIES_PER_USER_QUOTA
public static final SummaryKeyType ATTACHED_POLICIES_PER_USER_QUOTA
-
POLICIES
public static final SummaryKeyType POLICIES
-
POLICIES_QUOTA
public static final SummaryKeyType POLICIES_QUOTA
-
POLICY_SIZE_QUOTA
public static final SummaryKeyType POLICY_SIZE_QUOTA
-
POLICY_VERSIONS_IN_USE
public static final SummaryKeyType POLICY_VERSIONS_IN_USE
-
POLICY_VERSIONS_IN_USE_QUOTA
public static final SummaryKeyType POLICY_VERSIONS_IN_USE_QUOTA
-
VERSIONS_PER_POLICY_QUOTA
public static final SummaryKeyType VERSIONS_PER_POLICY_QUOTA
-
GLOBAL_ENDPOINT_TOKEN_VERSION
public static final SummaryKeyType GLOBAL_ENDPOINT_TOKEN_VERSION
-
UNKNOWN_TO_SDK_VERSION
public static final SummaryKeyType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SummaryKeyType[] 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 (SummaryKeyType c : SummaryKeyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SummaryKeyType 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<SummaryKeyType>
-
fromValue
public static SummaryKeyType 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:
- SummaryKeyType corresponding to the value
-
knownValues
public static Set<SummaryKeyType> 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 knownSummaryKeyTypes
-
-