Interface MaintenanceWindowLambdaParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MaintenanceWindowLambdaParameters.Builder,MaintenanceWindowLambdaParameters>,SdkBuilder<MaintenanceWindowLambdaParameters.Builder,MaintenanceWindowLambdaParameters>,SdkPojo
- Enclosing class:
- MaintenanceWindowLambdaParameters
public static interface MaintenanceWindowLambdaParameters.Builder extends SdkPojo, CopyableBuilder<MaintenanceWindowLambdaParameters.Builder,MaintenanceWindowLambdaParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MaintenanceWindowLambdaParameters.BuilderclientContext(String clientContext)Pass client-specific information to the Lambda function that you are invoking.MaintenanceWindowLambdaParameters.Builderpayload(SdkBytes payload)JSON to provide to your Lambda function as input.MaintenanceWindowLambdaParameters.Builderqualifier(String qualifier)(Optional) Specify an Lambda function version or alias name.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
clientContext
MaintenanceWindowLambdaParameters.Builder clientContext(String clientContext)
Pass client-specific information to the Lambda function that you are invoking. You can then process the client information in your Lambda function as you choose through the context variable.
- Parameters:
clientContext- Pass client-specific information to the Lambda function that you are invoking. You can then process the client information in your Lambda function as you choose through the context variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
qualifier
MaintenanceWindowLambdaParameters.Builder qualifier(String qualifier)
(Optional) Specify an Lambda function version or alias name. If you specify a function version, the operation uses the qualified function Amazon Resource Name (ARN) to invoke a specific Lambda function. If you specify an alias name, the operation uses the alias ARN to invoke the Lambda function version to which the alias points.
- Parameters:
qualifier- (Optional) Specify an Lambda function version or alias name. If you specify a function version, the operation uses the qualified function Amazon Resource Name (ARN) to invoke a specific Lambda function. If you specify an alias name, the operation uses the alias ARN to invoke the Lambda function version to which the alias points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
payload
MaintenanceWindowLambdaParameters.Builder payload(SdkBytes payload)
JSON to provide to your Lambda function as input.
- Parameters:
payload- JSON to provide to your Lambda function as input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-