Struct aws_sdk_computeoptimizer::operation::get_recommendation_summaries::GetRecommendationSummariesInput
source · #[non_exhaustive]pub struct GetRecommendationSummariesInput {
pub account_ids: Option<Vec<String>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.account_ids: Option<Vec<String>>
The ID of the Amazon Web Services account for which to return recommendation summaries.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return recommendation summaries.
Only one account ID can be specified per request.
next_token: Option<String>
The token to advance to the next page of recommendation summaries.
max_results: Option<i32>
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.
Implementations§
source§impl GetRecommendationSummariesInput
impl GetRecommendationSummariesInput
sourcepub fn account_ids(&self) -> &[String]
pub fn account_ids(&self) -> &[String]
The ID of the Amazon Web Services account for which to return recommendation summaries.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return recommendation summaries.
Only one account ID can be specified per request.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .account_ids.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to advance to the next page of recommendation summaries.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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.
source§impl GetRecommendationSummariesInput
impl GetRecommendationSummariesInput
sourcepub fn builder() -> GetRecommendationSummariesInputBuilder
pub fn builder() -> GetRecommendationSummariesInputBuilder
Creates a new builder-style object to manufacture GetRecommendationSummariesInput
.
Trait Implementations§
source§impl Clone for GetRecommendationSummariesInput
impl Clone for GetRecommendationSummariesInput
source§fn clone(&self) -> GetRecommendationSummariesInput
fn clone(&self) -> GetRecommendationSummariesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetRecommendationSummariesInput
impl PartialEq for GetRecommendationSummariesInput
source§fn eq(&self, other: &GetRecommendationSummariesInput) -> bool
fn eq(&self, other: &GetRecommendationSummariesInput) -> bool
self
and other
values to be equal, and is used
by ==
.