pub struct GetLambdaFunctionRecommendationsResponse {
pub lambda_function_recommendations: Option<Vec<LambdaFunctionRecommendation>>,
pub next_token: Option<String>,
}
Fields§
§lambda_function_recommendations: Option<Vec<LambdaFunctionRecommendation>>
An array of objects that describe function recommendations.
next_token: Option<String>
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.
Trait Implementations§
Source§impl Clone for GetLambdaFunctionRecommendationsResponse
impl Clone for GetLambdaFunctionRecommendationsResponse
Source§fn clone(&self) -> GetLambdaFunctionRecommendationsResponse
fn clone(&self) -> GetLambdaFunctionRecommendationsResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for GetLambdaFunctionRecommendationsResponse
impl Default for GetLambdaFunctionRecommendationsResponse
Source§fn default() -> GetLambdaFunctionRecommendationsResponse
fn default() -> GetLambdaFunctionRecommendationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLambdaFunctionRecommendationsResponse
impl<'de> Deserialize<'de> for GetLambdaFunctionRecommendationsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetLambdaFunctionRecommendationsResponse
impl PartialEq for GetLambdaFunctionRecommendationsResponse
Source§fn eq(&self, other: &GetLambdaFunctionRecommendationsResponse) -> bool
fn eq(&self, other: &GetLambdaFunctionRecommendationsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetLambdaFunctionRecommendationsResponse
Auto Trait Implementations§
impl Freeze for GetLambdaFunctionRecommendationsResponse
impl RefUnwindSafe for GetLambdaFunctionRecommendationsResponse
impl Send for GetLambdaFunctionRecommendationsResponse
impl Sync for GetLambdaFunctionRecommendationsResponse
impl Unpin for GetLambdaFunctionRecommendationsResponse
impl UnwindSafe for GetLambdaFunctionRecommendationsResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more