Package | Description |
---|---|
com.amazonaws.services.lambda.model |
Modifier and Type | Method and Description |
---|---|
FunctionConfiguration |
FunctionConfiguration.clone() |
FunctionConfiguration |
GetFunctionResult.getConfiguration()
The configuration of the function or version.
|
FunctionConfiguration |
FunctionConfiguration.withCodeSha256(String codeSha256)
The SHA256 hash of the function's deployment package.
|
FunctionConfiguration |
FunctionConfiguration.withCodeSize(Long codeSize)
The size of the function's deployment package in bytes.
|
FunctionConfiguration |
FunctionConfiguration.withDeadLetterConfig(DeadLetterConfig deadLetterConfig)
The function's dead letter queue.
|
FunctionConfiguration |
FunctionConfiguration.withDescription(String description)
The function's description.
|
FunctionConfiguration |
FunctionConfiguration.withEnvironment(EnvironmentResponse environment)
The function's environment variables.
|
FunctionConfiguration |
FunctionConfiguration.withFunctionArn(String functionArn)
The function's Amazon Resource Name (ARN).
|
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.withKMSKeyArn(String kMSKeyArn)
The KMS key used to encrypt the function's environment variables.
|
FunctionConfiguration |
FunctionConfiguration.withLastModified(String lastModified)
The date and time that the function was last updated, in ISO-8601
format (YYYY-MM-DDThh:mm:ss.sTZD).
|
FunctionConfiguration |
FunctionConfiguration.withLayers(Collection<Layer> layers)
The function's layers
|
FunctionConfiguration |
FunctionConfiguration.withLayers(Layer... layers)
The function's layers
|
FunctionConfiguration |
FunctionConfiguration.withMasterArn(String masterArn)
For Lambda@Edge functions, the ARN of the master function.
|
FunctionConfiguration |
FunctionConfiguration.withMemorySize(Integer memorySize)
The memory allocated to the function
|
FunctionConfiguration |
FunctionConfiguration.withRevisionId(String revisionId)
Represents the latest updated revision of the function or alias.
|
FunctionConfiguration |
FunctionConfiguration.withRole(String role)
The function's execution role.
|
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 amount of time that Lambda allows a function to run before terminating it.
|
FunctionConfiguration |
FunctionConfiguration.withTracingConfig(TracingConfigResponse tracingConfig)
The function's AWS X-Ray tracing configuration.
|
FunctionConfiguration |
FunctionConfiguration.withVersion(String version)
The version of the Lambda function.
|
FunctionConfiguration |
FunctionConfiguration.withVpcConfig(VpcConfigResponse vpcConfig)
The function's networking configuration.
|
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)
The configuration of the function or version.
|
GetFunctionResult |
GetFunctionResult.withConfiguration(FunctionConfiguration configuration)
The configuration of the function or version.
|
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 © 2019. All rights reserved.