Interface UpdateFunctionEventInvokeConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateFunctionEventInvokeConfigResponse.Builder,UpdateFunctionEventInvokeConfigResponse>
,LambdaResponse.Builder
,SdkBuilder<UpdateFunctionEventInvokeConfigResponse.Builder,UpdateFunctionEventInvokeConfigResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateFunctionEventInvokeConfigResponse
public static interface UpdateFunctionEventInvokeConfigResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<UpdateFunctionEventInvokeConfigResponse.Builder,UpdateFunctionEventInvokeConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateFunctionEventInvokeConfigResponse.Builder
destinationConfig(Consumer<DestinationConfig.Builder> destinationConfig)
A destination for events after they have been sent to a function for processing.UpdateFunctionEventInvokeConfigResponse.Builder
destinationConfig(DestinationConfig destinationConfig)
A destination for events after they have been sent to a function for processing.UpdateFunctionEventInvokeConfigResponse.Builder
functionArn(String functionArn)
The Amazon Resource Name (ARN) of the function.UpdateFunctionEventInvokeConfigResponse.Builder
lastModified(Instant lastModified)
The date and time that the configuration was last updated.UpdateFunctionEventInvokeConfigResponse.Builder
maximumEventAgeInSeconds(Integer maximumEventAgeInSeconds)
The maximum age of a request that Lambda sends to a function for processing.UpdateFunctionEventInvokeConfigResponse.Builder
maximumRetryAttempts(Integer maximumRetryAttempts)
The maximum number of times to retry when the function returns an error.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
lastModified
UpdateFunctionEventInvokeConfigResponse.Builder lastModified(Instant lastModified)
The date and time that the configuration was last updated.
- Parameters:
lastModified
- The date and time that the configuration was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionArn
UpdateFunctionEventInvokeConfigResponse.Builder functionArn(String functionArn)
The Amazon Resource Name (ARN) of the function.
- Parameters:
functionArn
- The Amazon Resource Name (ARN) of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumRetryAttempts
UpdateFunctionEventInvokeConfigResponse.Builder maximumRetryAttempts(Integer maximumRetryAttempts)
The maximum number of times to retry when the function returns an error.
- Parameters:
maximumRetryAttempts
- The maximum number of times to retry when the function returns an error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maximumEventAgeInSeconds
UpdateFunctionEventInvokeConfigResponse.Builder maximumEventAgeInSeconds(Integer maximumEventAgeInSeconds)
The maximum age of a request that Lambda sends to a function for processing.
- Parameters:
maximumEventAgeInSeconds
- The maximum age of a request that Lambda sends to a function for processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationConfig
UpdateFunctionEventInvokeConfigResponse.Builder destinationConfig(DestinationConfig destinationConfig)
A destination for events after they have been sent to a function for processing.
Destinations
-
Function - The Amazon Resource Name (ARN) of a Lambda function.
-
Queue - The ARN of a standard SQS queue.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
- Parameters:
destinationConfig
- A destination for events after they have been sent to a function for processing.Destinations
-
Function - The Amazon Resource Name (ARN) of a Lambda function.
-
Queue - The ARN of a standard SQS queue.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
destinationConfig
default UpdateFunctionEventInvokeConfigResponse.Builder destinationConfig(Consumer<DestinationConfig.Builder> destinationConfig)
A destination for events after they have been sent to a function for processing.
Destinations
-
Function - The Amazon Resource Name (ARN) of a Lambda function.
-
Queue - The ARN of a standard SQS queue.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
DestinationConfig.Builder
avoiding the need to create one manually viaDestinationConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todestinationConfig(DestinationConfig)
.- Parameters:
destinationConfig
- a consumer that will call methods onDestinationConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destinationConfig(DestinationConfig)
-
-
-