pub struct PutRecommendationPreferences { /* private fields */ }
Expand description
Fluent builder constructing a request to PutRecommendationPreferences
.
Creates a new recommendation preference or updates an existing recommendation preference, such as enhanced infrastructure metrics.
For more information, see Activating enhanced infrastructure metrics in the Compute Optimizer User Guide.
Implementations
sourceimpl PutRecommendationPreferences
impl PutRecommendationPreferences
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutRecommendationPreferences, AwsResponseRetryClassifier>, SdkError<PutRecommendationPreferencesError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutRecommendationPreferences, AwsResponseRetryClassifier>, SdkError<PutRecommendationPreferencesError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<PutRecommendationPreferencesOutput, SdkError<PutRecommendationPreferencesError>>
pub async fn send(
self
) -> Result<PutRecommendationPreferencesOutput, SdkError<PutRecommendationPreferencesError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn resource_type(self, input: ResourceType) -> Self
pub fn resource_type(self, input: ResourceType) -> Self
The target resource type of the recommendation preference to create.
The Ec2Instance
option encompasses standalone instances and instances that are part of Auto Scaling groups. The AutoScalingGroup
option encompasses only instances that are part of an Auto Scaling group.
The valid values for this parameter are Ec2Instance
and AutoScalingGroup
.
sourcepub fn set_resource_type(self, input: Option<ResourceType>) -> Self
pub fn set_resource_type(self, input: Option<ResourceType>) -> Self
The target resource type of the recommendation preference to create.
The Ec2Instance
option encompasses standalone instances and instances that are part of Auto Scaling groups. The AutoScalingGroup
option encompasses only instances that are part of an Auto Scaling group.
The valid values for this parameter are Ec2Instance
and AutoScalingGroup
.
sourcepub fn scope(self, input: Scope) -> Self
pub fn scope(self, input: Scope) -> Self
An object that describes the scope of the recommendation preference to create.
You can create recommendation preferences at the organization level (for management accounts of an organization only), account level, and resource level. For more information, see Activating enhanced infrastructure metrics in the Compute Optimizer User Guide.
You cannot create recommendation preferences for Auto Scaling groups at the organization and account levels. You can create recommendation preferences for Auto Scaling groups only at the resource level by specifying a scope name of ResourceArn
and a scope value of the Auto Scaling group Amazon Resource Name (ARN). This will configure the preference for all instances that are part of the specified Auto Scaling group. You also cannot create recommendation preferences at the resource level for instances that are part of an Auto Scaling group. You can create recommendation preferences at the resource level only for standalone instances.
sourcepub fn set_scope(self, input: Option<Scope>) -> Self
pub fn set_scope(self, input: Option<Scope>) -> Self
An object that describes the scope of the recommendation preference to create.
You can create recommendation preferences at the organization level (for management accounts of an organization only), account level, and resource level. For more information, see Activating enhanced infrastructure metrics in the Compute Optimizer User Guide.
You cannot create recommendation preferences for Auto Scaling groups at the organization and account levels. You can create recommendation preferences for Auto Scaling groups only at the resource level by specifying a scope name of ResourceArn
and a scope value of the Auto Scaling group Amazon Resource Name (ARN). This will configure the preference for all instances that are part of the specified Auto Scaling group. You also cannot create recommendation preferences at the resource level for instances that are part of an Auto Scaling group. You can create recommendation preferences at the resource level only for standalone instances.
sourcepub fn enhanced_infrastructure_metrics(
self,
input: EnhancedInfrastructureMetrics
) -> Self
pub fn enhanced_infrastructure_metrics(
self,
input: EnhancedInfrastructureMetrics
) -> Self
The status of the enhanced infrastructure metrics recommendation preference to create or update.
Specify the Active
status to activate the preference, or specify Inactive
to deactivate the preference.
For more information, see Enhanced infrastructure metrics in the Compute Optimizer User Guide.
sourcepub fn set_enhanced_infrastructure_metrics(
self,
input: Option<EnhancedInfrastructureMetrics>
) -> Self
pub fn set_enhanced_infrastructure_metrics(
self,
input: Option<EnhancedInfrastructureMetrics>
) -> Self
The status of the enhanced infrastructure metrics recommendation preference to create or update.
Specify the Active
status to activate the preference, or specify Inactive
to deactivate the preference.
For more information, see Enhanced infrastructure metrics in the Compute Optimizer User Guide.
sourcepub fn inferred_workload_types(
self,
input: InferredWorkloadTypesPreference
) -> Self
pub fn inferred_workload_types(
self,
input: InferredWorkloadTypesPreference
) -> Self
The status of the inferred workload types recommendation preference to create or update.
The inferred workload type feature is active by default. To deactivate it, create a recommendation preference.
Specify the Inactive
status to deactivate the feature, or specify Active
to activate it.
For more information, see Inferred workload types in the Compute Optimizer User Guide.
sourcepub fn set_inferred_workload_types(
self,
input: Option<InferredWorkloadTypesPreference>
) -> Self
pub fn set_inferred_workload_types(
self,
input: Option<InferredWorkloadTypesPreference>
) -> Self
The status of the inferred workload types recommendation preference to create or update.
The inferred workload type feature is active by default. To deactivate it, create a recommendation preference.
Specify the Inactive
status to deactivate the feature, or specify Active
to activate it.
For more information, see Inferred workload types in the Compute Optimizer User Guide.
Trait Implementations
sourceimpl Clone for PutRecommendationPreferences
impl Clone for PutRecommendationPreferences
sourcefn clone(&self) -> PutRecommendationPreferences
fn clone(&self) -> PutRecommendationPreferences
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more