Interface GetFunctionEventInvokeConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetFunctionEventInvokeConfigResponse.Builder,GetFunctionEventInvokeConfigResponse>,LambdaResponse.Builder,SdkBuilder<GetFunctionEventInvokeConfigResponse.Builder,GetFunctionEventInvokeConfigResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetFunctionEventInvokeConfigResponse
@Mutable @NotThreadSafe public static interface GetFunctionEventInvokeConfigResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<GetFunctionEventInvokeConfigResponse.Builder,GetFunctionEventInvokeConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetFunctionEventInvokeConfigResponse.BuilderdestinationConfig(Consumer<DestinationConfig.Builder> destinationConfig)A destination for events after they have been sent to a function for processing.GetFunctionEventInvokeConfigResponse.BuilderdestinationConfig(DestinationConfig destinationConfig)A destination for events after they have been sent to a function for processing.GetFunctionEventInvokeConfigResponse.BuilderfunctionArn(String functionArn)The Amazon Resource Name (ARN) of the function.GetFunctionEventInvokeConfigResponse.BuilderlastModified(Instant lastModified)The date and time that the configuration was last updated.GetFunctionEventInvokeConfigResponse.BuildermaximumEventAgeInSeconds(Integer maximumEventAgeInSeconds)The maximum age of a request that Lambda sends to a function for processing.GetFunctionEventInvokeConfigResponse.BuildermaximumRetryAttempts(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
GetFunctionEventInvokeConfigResponse.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
GetFunctionEventInvokeConfigResponse.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
GetFunctionEventInvokeConfigResponse.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
GetFunctionEventInvokeConfigResponse.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
GetFunctionEventInvokeConfigResponse.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.
-
Bucket - The ARN of an Amazon S3 bucket.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
S3 buckets are supported only for on-failure destinations. To retain records of successful invocations, use another destination type.
- 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.
-
Bucket - The ARN of an Amazon S3 bucket.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
S3 buckets are supported only for on-failure destinations. To retain records of successful invocations, use another destination type.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
destinationConfig
default GetFunctionEventInvokeConfigResponse.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.
-
Bucket - The ARN of an Amazon S3 bucket.
-
Topic - The ARN of a standard SNS topic.
-
Event Bus - The ARN of an Amazon EventBridge event bus.
This is a convenience method that creates an instance of theS3 buckets are supported only for on-failure destinations. To retain records of successful invocations, use another destination type.
DestinationConfig.Builderavoiding the need to create one manually viaDestinationConfig.builder().When the
Consumercompletes,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)
-
-
-