Package | Description |
---|---|
com.amazonaws.services.lambda.model |
Modifier and Type | Method and Description |
---|---|
FunctionConfiguration |
FunctionConfiguration.clone() |
FunctionConfiguration |
GetFunctionResult.getConfiguration() |
FunctionConfiguration |
FunctionConfiguration.withCodeSha256(String codeSha256)
It is the SHA256 hash of your function deployment package.
|
FunctionConfiguration |
FunctionConfiguration.withCodeSize(Long codeSize)
The size, in bytes, of the function .zip file you uploaded.
|
FunctionConfiguration |
FunctionConfiguration.withDescription(String description)
The user-provided description.
|
FunctionConfiguration |
FunctionConfiguration.withFunctionArn(String functionArn)
The Amazon Resource Name (ARN) assigned to the function.
|
FunctionConfiguration |
FunctionConfiguration.withFunctionName(String functionName)
The name of the function.
|
FunctionConfiguration |
FunctionConfiguration.withHandler(String handler)
The function Lambda calls to begin executing your function.
|
FunctionConfiguration |
FunctionConfiguration.withLastModified(String lastModified)
The time stamp of the last time you updated the function.
|
FunctionConfiguration |
FunctionConfiguration.withMemorySize(Integer memorySize)
The memory size, in MB, you configured for the function.
|
FunctionConfiguration |
FunctionConfiguration.withRole(String role)
The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when
it executes your function to access any other Amazon Web Services (AWS)
resources.
|
FunctionConfiguration |
FunctionConfiguration.withRuntime(Runtime runtime)
The runtime environment for the Lambda function.
|
FunctionConfiguration |
FunctionConfiguration.withRuntime(String runtime)
The runtime environment for the Lambda function.
|
FunctionConfiguration |
FunctionConfiguration.withTimeout(Integer timeout)
The function execution time at which Lambda should terminate the
function.
|
FunctionConfiguration |
FunctionConfiguration.withVersion(String version)
The version of the Lambda function.
|
FunctionConfiguration |
FunctionConfiguration.withVpcConfig(VpcConfigResponse vpcConfig)
VPC configuration associated with your Lambda function.
|
Modifier and Type | Method and Description |
---|---|
List<FunctionConfiguration> |
ListFunctionsResult.getFunctions()
A list of Lambda functions.
|
List<FunctionConfiguration> |
ListVersionsByFunctionResult.getVersions()
A list of Lambda function versions.
|
Modifier and Type | Method and Description |
---|---|
void |
GetFunctionResult.setConfiguration(FunctionConfiguration configuration) |
GetFunctionResult |
GetFunctionResult.withConfiguration(FunctionConfiguration configuration) |
ListFunctionsResult |
ListFunctionsResult.withFunctions(FunctionConfiguration... functions)
A list of Lambda functions.
|
ListVersionsByFunctionResult |
ListVersionsByFunctionResult.withVersions(FunctionConfiguration... versions)
A list of Lambda function versions.
|
Modifier and Type | Method and Description |
---|---|
void |
ListFunctionsResult.setFunctions(Collection<FunctionConfiguration> functions)
A list of Lambda functions.
|
void |
ListVersionsByFunctionResult.setVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
ListFunctionsResult |
ListFunctionsResult.withFunctions(Collection<FunctionConfiguration> functions)
A list of Lambda functions.
|
ListVersionsByFunctionResult |
ListVersionsByFunctionResult.withVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
Copyright © 2016. All rights reserved.