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