pub struct GetAutoScalingGroupRecommendationsRequest {
pub account_ids: Option<Vec<String>>,
pub auto_scaling_group_arns: Option<Vec<String>>,
pub filters: Option<Vec<Filter>>,
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 Auto Scaling group recommendations.
If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return Auto Scaling group recommendations.
Only one account ID can be specified per request.
auto_scaling_group_arns: Option<Vec<String>>
The Amazon Resource Name (ARN) of the Auto Scaling groups for which to return recommendations.
filters: Option<Vec<Filter>>
An array of objects that describe a filter that returns a more specific list of Auto Scaling group recommendations.
max_results: Option<i64>
The maximum number of Auto Scaling group recommendations 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 Auto Scaling group recommendations.
Trait Implementations§
Source§impl Clone for GetAutoScalingGroupRecommendationsRequest
impl Clone for GetAutoScalingGroupRecommendationsRequest
Source§fn clone(&self) -> GetAutoScalingGroupRecommendationsRequest
fn clone(&self) -> GetAutoScalingGroupRecommendationsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GetAutoScalingGroupRecommendationsRequest
impl Default for GetAutoScalingGroupRecommendationsRequest
Source§fn default() -> GetAutoScalingGroupRecommendationsRequest
fn default() -> GetAutoScalingGroupRecommendationsRequest
Source§impl PartialEq for GetAutoScalingGroupRecommendationsRequest
impl PartialEq for GetAutoScalingGroupRecommendationsRequest
Source§fn eq(&self, other: &GetAutoScalingGroupRecommendationsRequest) -> bool
fn eq(&self, other: &GetAutoScalingGroupRecommendationsRequest) -> bool
self
and other
values to be equal, and is used by ==
.