Enum LambdaOperations
- java.lang.Object
-
- java.lang.Enum<LambdaOperations>
-
- org.apache.camel.component.aws.lambda.LambdaOperations
-
- All Implemented Interfaces:
Serializable
,Comparable<LambdaOperations>
public enum LambdaOperations extends Enum<LambdaOperations>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LambdaOperations
valueOf(String name)
Returns the enum constant of this type with the specified name.static LambdaOperations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
listFunctions
public static final LambdaOperations listFunctions
-
getFunction
public static final LambdaOperations getFunction
-
createAlias
public static final LambdaOperations createAlias
-
deleteAlias
public static final LambdaOperations deleteAlias
-
getAlias
public static final LambdaOperations getAlias
-
listAliases
public static final LambdaOperations listAliases
-
createFunction
public static final LambdaOperations createFunction
-
deleteFunction
public static final LambdaOperations deleteFunction
-
invokeFunction
public static final LambdaOperations invokeFunction
-
updateFunction
public static final LambdaOperations updateFunction
-
createEventSourceMapping
public static final LambdaOperations createEventSourceMapping
-
deleteEventSourceMapping
public static final LambdaOperations deleteEventSourceMapping
-
listEventSourceMapping
public static final LambdaOperations listEventSourceMapping
-
listTags
public static final LambdaOperations listTags
-
tagResource
public static final LambdaOperations tagResource
-
untagResource
public static final LambdaOperations untagResource
-
publishVersion
public static final LambdaOperations publishVersion
-
listVersions
public static final LambdaOperations listVersions
-
-
Method Detail
-
values
public static LambdaOperations[] 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 (LambdaOperations c : LambdaOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LambdaOperations 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
-
-