Enum IAMOperations
- java.lang.Object
-
- java.lang.Enum<IAMOperations>
-
- org.apache.camel.component.aws.iam.IAMOperations
-
- All Implemented Interfaces:
Serializable
,Comparable<IAMOperations>
public enum IAMOperations extends Enum<IAMOperations>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description addUserToGroup
createAccessKey
createGroup
createUser
deleteAccessKey
deleteGroup
deleteUser
getUser
listAccessKeys
listGroups
listUsers
removeUserFromGroup
updateAccessKey
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IAMOperations
valueOf(String name)
Returns the enum constant of this type with the specified name.static IAMOperations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
listAccessKeys
public static final IAMOperations listAccessKeys
-
createUser
public static final IAMOperations createUser
-
deleteUser
public static final IAMOperations deleteUser
-
getUser
public static final IAMOperations getUser
-
listUsers
public static final IAMOperations listUsers
-
createAccessKey
public static final IAMOperations createAccessKey
-
deleteAccessKey
public static final IAMOperations deleteAccessKey
-
updateAccessKey
public static final IAMOperations updateAccessKey
-
createGroup
public static final IAMOperations createGroup
-
deleteGroup
public static final IAMOperations deleteGroup
-
listGroups
public static final IAMOperations listGroups
-
addUserToGroup
public static final IAMOperations addUserToGroup
-
removeUserFromGroup
public static final IAMOperations removeUserFromGroup
-
-
Method Detail
-
values
public static IAMOperations[] 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 (IAMOperations c : IAMOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IAMOperations 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
-
-