public static interface GetFunctionResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<GetFunctionResponse.Builder,GetFunctionResponse>
Modifier and Type | Method and Description |
---|---|
default GetFunctionResponse.Builder |
code(Consumer<FunctionCodeLocation.Builder> code)
The function's code.
|
GetFunctionResponse.Builder |
code(FunctionCodeLocation code)
The function's code.
|
GetFunctionResponse.Builder |
concurrency(Concurrency concurrency)
The concurrent execution limit set for this function.
|
default GetFunctionResponse.Builder |
concurrency(Consumer<Concurrency.Builder> concurrency)
The concurrent execution limit set for this function.
|
default GetFunctionResponse.Builder |
configuration(Consumer<FunctionConfiguration.Builder> configuration)
The function's configuration.
|
GetFunctionResponse.Builder |
configuration(FunctionConfiguration configuration)
The function's configuration.
|
GetFunctionResponse.Builder |
tags(Map<String,String> tags)
Returns the list of tags associated with the function.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
GetFunctionResponse.Builder configuration(FunctionConfiguration configuration)
The function's configuration.
configuration
- The function's configuration.default GetFunctionResponse.Builder configuration(Consumer<FunctionConfiguration.Builder> configuration)
The function's configuration.
This is a convenience that creates an instance of theFunctionConfiguration.Builder
avoiding the need
to create one manually via FunctionConfiguration.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to configuration(FunctionConfiguration)
.configuration
- a consumer that will call methods on FunctionConfiguration.Builder
configuration(FunctionConfiguration)
GetFunctionResponse.Builder code(FunctionCodeLocation code)
The function's code.
code
- The function's code.default GetFunctionResponse.Builder code(Consumer<FunctionCodeLocation.Builder> code)
The function's code.
This is a convenience that creates an instance of theFunctionCodeLocation.Builder
avoiding the need
to create one manually via FunctionCodeLocation.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to code(FunctionCodeLocation)
.code
- a consumer that will call methods on FunctionCodeLocation.Builder
code(FunctionCodeLocation)
GetFunctionResponse.Builder tags(Map<String,String> tags)
Returns the list of tags associated with the function. For more information, see Tagging Lambda Functions in the AWS Lambda Developer Guide.
tags
- Returns the list of tags associated with the function. For more information, see Tagging Lambda Functions in the
AWS Lambda Developer Guide.GetFunctionResponse.Builder concurrency(Concurrency concurrency)
The concurrent execution limit set for this function. For more information, see Managing Concurrency.
concurrency
- The concurrent execution limit set for this function. For more information, see Managing
Concurrency.default GetFunctionResponse.Builder concurrency(Consumer<Concurrency.Builder> concurrency)
The concurrent execution limit set for this function. For more information, see Managing Concurrency.
This is a convenience that creates an instance of theConcurrency.Builder
avoiding the need to create
one manually via Concurrency.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to concurrency(Concurrency)
.concurrency
- a consumer that will call methods on Concurrency.Builder
concurrency(Concurrency)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.