pub struct GetRecommendationSummariesRequest {
pub account_ids: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§account_ids: Option<Vec<String>>
The IDs of the AWS accounts for which to return recommendation summaries.
If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return recommendation summaries.
Only one account ID can be specified per request.
max_results: Option<i64>
The maximum number of recommendation summaries to return with a single request.
To retrieve the remaining results, make another request with the returned NextToken
value.
next_token: Option<String>
The token to advance to the next page of recommendation summaries.
Trait Implementations§
Source§impl Clone for GetRecommendationSummariesRequest
impl Clone for GetRecommendationSummariesRequest
Source§fn clone(&self) -> GetRecommendationSummariesRequest
fn clone(&self) -> GetRecommendationSummariesRequest
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 GetRecommendationSummariesRequest
impl Default for GetRecommendationSummariesRequest
Source§fn default() -> GetRecommendationSummariesRequest
fn default() -> GetRecommendationSummariesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetRecommendationSummariesRequest
impl PartialEq for GetRecommendationSummariesRequest
Source§fn eq(&self, other: &GetRecommendationSummariesRequest) -> bool
fn eq(&self, other: &GetRecommendationSummariesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRecommendationSummariesRequest
Auto Trait Implementations§
impl Freeze for GetRecommendationSummariesRequest
impl RefUnwindSafe for GetRecommendationSummariesRequest
impl Send for GetRecommendationSummariesRequest
impl Sync for GetRecommendationSummariesRequest
impl Unpin for GetRecommendationSummariesRequest
impl UnwindSafe for GetRecommendationSummariesRequest
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