Interface GetLambdaFunctionRecommendationsRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,ComputeOptimizerRequest.Builder
,CopyableBuilder<GetLambdaFunctionRecommendationsRequest.Builder,
,GetLambdaFunctionRecommendationsRequest> SdkBuilder<GetLambdaFunctionRecommendationsRequest.Builder,
,GetLambdaFunctionRecommendationsRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
GetLambdaFunctionRecommendationsRequest
-
Method Summary
Modifier and TypeMethodDescriptionaccountIds
(String... accountIds) The ID of the Amazon Web Services account for which to return function recommendations.accountIds
(Collection<String> accountIds) The ID of the Amazon Web Services account for which to return function recommendations.An array of objects to specify a filter that returns a more specific list of function recommendations.filters
(Consumer<LambdaFunctionRecommendationFilter.Builder>... filters) An array of objects to specify a filter that returns a more specific list of function recommendations.filters
(LambdaFunctionRecommendationFilter... filters) An array of objects to specify a filter that returns a more specific list of function recommendations.functionArns
(String... functionArns) The Amazon Resource Name (ARN) of the functions for which to return recommendations.functionArns
(Collection<String> functionArns) The Amazon Resource Name (ARN) of the functions for which to return recommendations.maxResults
(Integer maxResults) The maximum number of function recommendations to return with a single request.The token to advance to the next page of function recommendations.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.services.computeoptimizer.model.ComputeOptimizerRequest.Builder
build
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 Details
-
functionArns
The Amazon Resource Name (ARN) of the functions for which to return recommendations.
You can specify a qualified or unqualified ARN. If you specify an unqualified ARN without a function version suffix, Compute Optimizer will return recommendations for the latest (
$LATEST
) version of the function. If you specify a qualified ARN with a version suffix, Compute Optimizer will return recommendations for the specified function version. For more information about using function versions, see Using versions in the Lambda Developer Guide.- Parameters:
functionArns
- The Amazon Resource Name (ARN) of the functions for which to return recommendations.You can specify a qualified or unqualified ARN. If you specify an unqualified ARN without a function version suffix, Compute Optimizer will return recommendations for the latest (
$LATEST
) version of the function. If you specify a qualified ARN with a version suffix, Compute Optimizer will return recommendations for the specified function version. For more information about using function versions, see Using versions in the Lambda Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionArns
The Amazon Resource Name (ARN) of the functions for which to return recommendations.
You can specify a qualified or unqualified ARN. If you specify an unqualified ARN without a function version suffix, Compute Optimizer will return recommendations for the latest (
$LATEST
) version of the function. If you specify a qualified ARN with a version suffix, Compute Optimizer will return recommendations for the specified function version. For more information about using function versions, see Using versions in the Lambda Developer Guide.- Parameters:
functionArns
- The Amazon Resource Name (ARN) of the functions for which to return recommendations.You can specify a qualified or unqualified ARN. If you specify an unqualified ARN without a function version suffix, Compute Optimizer will return recommendations for the latest (
$LATEST
) version of the function. If you specify a qualified ARN with a version suffix, Compute Optimizer will return recommendations for the specified function version. For more information about using function versions, see Using versions in the Lambda Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountIds
The ID of the Amazon Web Services account for which to return function recommendations.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return function recommendations.
Only one account ID can be specified per request.
- Parameters:
accountIds
- The ID of the Amazon Web Services account for which to return function recommendations.If your account is the management account of an organization, use this parameter to specify the member account for which you want to return function recommendations.
Only one account ID can be specified per request.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountIds
The ID of the Amazon Web Services account for which to return function recommendations.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return function recommendations.
Only one account ID can be specified per request.
- Parameters:
accountIds
- The ID of the Amazon Web Services account for which to return function recommendations.If your account is the management account of an organization, use this parameter to specify the member account for which you want to return function recommendations.
Only one account ID can be specified per request.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
GetLambdaFunctionRecommendationsRequest.Builder filters(Collection<LambdaFunctionRecommendationFilter> filters) An array of objects to specify a filter that returns a more specific list of function recommendations.
- Parameters:
filters
- An array of objects to specify a filter that returns a more specific list of function recommendations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
GetLambdaFunctionRecommendationsRequest.Builder filters(LambdaFunctionRecommendationFilter... filters) An array of objects to specify a filter that returns a more specific list of function recommendations.
- Parameters:
filters
- An array of objects to specify a filter that returns a more specific list of function recommendations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
GetLambdaFunctionRecommendationsRequest.Builder filters(Consumer<LambdaFunctionRecommendationFilter.Builder>... filters) An array of objects to specify a filter that returns a more specific list of function recommendations.
This is a convenience method that creates an instance of theLambdaFunctionRecommendationFilter.Builder
avoiding the need to create one manually viaLambdaFunctionRecommendationFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofilters(List<LambdaFunctionRecommendationFilter>)
.- Parameters:
filters
- a consumer that will call methods onLambdaFunctionRecommendationFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
nextToken
The token to advance to the next page of function recommendations.
- Parameters:
nextToken
- The token to advance to the next page of function recommendations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
The maximum number of function recommendations to return with a single request.
To retrieve the remaining results, make another request with the returned
nextToken
value.- Parameters:
maxResults
- The maximum number of function recommendations to return with a single request.To retrieve the remaining results, make another request with the returned
nextToken
value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
GetLambdaFunctionRecommendationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
GetLambdaFunctionRecommendationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-