Struct aws_sdk_computeoptimizer::output::get_lambda_function_recommendations_output::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for GetLambdaFunctionRecommendationsOutput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use to advance to the next page of function recommendations.
This value is null when there are no more pages of function recommendations to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use to advance to the next page of function recommendations.
This value is null when there are no more pages of function recommendations to return.
sourcepub fn lambda_function_recommendations(
self,
input: LambdaFunctionRecommendation
) -> Self
pub fn lambda_function_recommendations(
self,
input: LambdaFunctionRecommendation
) -> Self
Appends an item to lambda_function_recommendations
.
To override the contents of this collection use set_lambda_function_recommendations
.
An array of objects that describe function recommendations.
sourcepub fn set_lambda_function_recommendations(
self,
input: Option<Vec<LambdaFunctionRecommendation>>
) -> Self
pub fn set_lambda_function_recommendations(
self,
input: Option<Vec<LambdaFunctionRecommendation>>
) -> Self
An array of objects that describe function recommendations.
sourcepub fn build(self) -> GetLambdaFunctionRecommendationsOutput
pub fn build(self) -> GetLambdaFunctionRecommendationsOutput
Consumes the builder and constructs a GetLambdaFunctionRecommendationsOutput
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more