Interface LambdaConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LambdaConfiguration.Builder,LambdaConfiguration>,SdkBuilder<LambdaConfiguration.Builder,LambdaConfiguration>,SdkPojo
- Enclosing class:
- LambdaConfiguration
public static interface LambdaConfiguration.Builder extends SdkPojo, CopyableBuilder<LambdaConfiguration.Builder,LambdaConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaConfiguration.BuilderlambdaArn(String lambdaArn)The ARN of the Lambda function.LambdaConfiguration.BuilderroleArn(String roleArn)The ARN of an IAM role that has permission to invoke the Lambda function.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
roleArn
LambdaConfiguration.Builder roleArn(String roleArn)
The ARN of an IAM role that has permission to invoke the Lambda function.
- Parameters:
roleArn- The ARN of an IAM role that has permission to invoke the Lambda function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lambdaArn
LambdaConfiguration.Builder lambdaArn(String lambdaArn)
The ARN of the Lambda function.
- Parameters:
lambdaArn- The ARN of the Lambda function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-