Struct aws_sdk_computeoptimizer::operation::get_ec2_instance_recommendations::GetEc2InstanceRecommendationsInput
source · #[non_exhaustive]pub struct GetEc2InstanceRecommendationsInput {
pub instance_arns: Option<Vec<String>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub filters: Option<Vec<Filter>>,
pub account_ids: Option<Vec<String>>,
pub recommendation_preferences: Option<RecommendationPreferences>,
}
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.instance_arns: Option<Vec<String>>
The Amazon Resource Name (ARN) of the instances for which to return recommendations.
next_token: Option<String>
The token to advance to the next page of instance recommendations.
max_results: Option<i32>
The maximum number of instance recommendations to return with a single request.
To retrieve the remaining results, make another request with the returned nextToken
value.
filters: Option<Vec<Filter>>
An array of objects to specify a filter that returns a more specific list of instance recommendations.
account_ids: Option<Vec<String>>
The ID of the Amazon Web Services account for which to return instance recommendations.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return instance recommendations.
Only one account ID can be specified per request.
recommendation_preferences: Option<RecommendationPreferences>
An object to specify the preferences for the Amazon EC2 instance recommendations to return in the response.
Implementations§
source§impl GetEc2InstanceRecommendationsInput
impl GetEc2InstanceRecommendationsInput
sourcepub fn instance_arns(&self) -> &[String]
pub fn instance_arns(&self) -> &[String]
The Amazon Resource Name (ARN) of the instances for which to return recommendations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .instance_arns.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 instance recommendations.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of instance recommendations to return with a single request.
To retrieve the remaining results, make another request with the returned nextToken
value.
sourcepub fn filters(&self) -> &[Filter]
pub fn filters(&self) -> &[Filter]
An array of objects to specify a filter that returns a more specific list of instance recommendations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn account_ids(&self) -> &[String]
pub fn account_ids(&self) -> &[String]
The ID of the Amazon Web Services account for which to return instance recommendations.
If your account is the management account of an organization, use this parameter to specify the member account for which you want to return instance recommendations.
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 recommendation_preferences(&self) -> Option<&RecommendationPreferences>
pub fn recommendation_preferences(&self) -> Option<&RecommendationPreferences>
An object to specify the preferences for the Amazon EC2 instance recommendations to return in the response.
source§impl GetEc2InstanceRecommendationsInput
impl GetEc2InstanceRecommendationsInput
sourcepub fn builder() -> GetEc2InstanceRecommendationsInputBuilder
pub fn builder() -> GetEc2InstanceRecommendationsInputBuilder
Creates a new builder-style object to manufacture GetEc2InstanceRecommendationsInput
.
Trait Implementations§
source§impl Clone for GetEc2InstanceRecommendationsInput
impl Clone for GetEc2InstanceRecommendationsInput
source§fn clone(&self) -> GetEc2InstanceRecommendationsInput
fn clone(&self) -> GetEc2InstanceRecommendationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetEc2InstanceRecommendationsInput
impl PartialEq for GetEc2InstanceRecommendationsInput
source§fn eq(&self, other: &GetEc2InstanceRecommendationsInput) -> bool
fn eq(&self, other: &GetEc2InstanceRecommendationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.