Enum LambdaEndpointBuilderFactory.LambdaOperations
- java.lang.Object
-
- java.lang.Enum<LambdaEndpointBuilderFactory.LambdaOperations>
-
- org.apache.camel.builder.endpoint.dsl.LambdaEndpointBuilderFactory.LambdaOperations
-
- All Implemented Interfaces:
Serializable
,Comparable<LambdaEndpointBuilderFactory.LambdaOperations>
- Enclosing interface:
- LambdaEndpointBuilderFactory
public static enum LambdaEndpointBuilderFactory.LambdaOperations extends Enum<LambdaEndpointBuilderFactory.LambdaOperations>
Proxy enum fororg.apache.camel.component.aws.lambda.LambdaOperations
enum.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LambdaEndpointBuilderFactory.LambdaOperations
valueOf(String name)
Returns the enum constant of this type with the specified name.static LambdaEndpointBuilderFactory.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 LambdaEndpointBuilderFactory.LambdaOperations listFunctions
-
getFunction
public static final LambdaEndpointBuilderFactory.LambdaOperations getFunction
-
createAlias
public static final LambdaEndpointBuilderFactory.LambdaOperations createAlias
-
deleteAlias
public static final LambdaEndpointBuilderFactory.LambdaOperations deleteAlias
-
getAlias
public static final LambdaEndpointBuilderFactory.LambdaOperations getAlias
-
listAliases
public static final LambdaEndpointBuilderFactory.LambdaOperations listAliases
-
createFunction
public static final LambdaEndpointBuilderFactory.LambdaOperations createFunction
-
deleteFunction
public static final LambdaEndpointBuilderFactory.LambdaOperations deleteFunction
-
invokeFunction
public static final LambdaEndpointBuilderFactory.LambdaOperations invokeFunction
-
updateFunction
public static final LambdaEndpointBuilderFactory.LambdaOperations updateFunction
-
createEventSourceMapping
public static final LambdaEndpointBuilderFactory.LambdaOperations createEventSourceMapping
-
deleteEventSourceMapping
public static final LambdaEndpointBuilderFactory.LambdaOperations deleteEventSourceMapping
-
listEventSourceMapping
public static final LambdaEndpointBuilderFactory.LambdaOperations listEventSourceMapping
-
listTags
public static final LambdaEndpointBuilderFactory.LambdaOperations listTags
-
tagResource
public static final LambdaEndpointBuilderFactory.LambdaOperations tagResource
-
untagResource
public static final LambdaEndpointBuilderFactory.LambdaOperations untagResource
-
publishVersion
public static final LambdaEndpointBuilderFactory.LambdaOperations publishVersion
-
listVersions
public static final LambdaEndpointBuilderFactory.LambdaOperations listVersions
-
-
Method Detail
-
values
public static LambdaEndpointBuilderFactory.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 (LambdaEndpointBuilderFactory.LambdaOperations c : LambdaEndpointBuilderFactory.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 LambdaEndpointBuilderFactory.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
-
-