Struct aws_sdk_emr::types::AutoScalingPolicy
source · #[non_exhaustive]pub struct AutoScalingPolicy {
pub constraints: Option<ScalingConstraints>,
pub rules: Option<Vec<ScalingRule>>,
}
Expand description
An automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. An automatic scaling policy defines how an instance group dynamically adds and terminates Amazon EC2 instances in response to the value of a CloudWatch metric. See PutAutoScalingPolicy
.
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.constraints: Option<ScalingConstraints>
The upper and lower Amazon EC2 instance limits for an automatic scaling policy. Automatic scaling activity will not cause an instance group to grow above or below these limits.
rules: Option<Vec<ScalingRule>>
The scale-in and scale-out rules that comprise the automatic scaling policy.
Implementations§
source§impl AutoScalingPolicy
impl AutoScalingPolicy
sourcepub fn constraints(&self) -> Option<&ScalingConstraints>
pub fn constraints(&self) -> Option<&ScalingConstraints>
The upper and lower Amazon EC2 instance limits for an automatic scaling policy. Automatic scaling activity will not cause an instance group to grow above or below these limits.
sourcepub fn rules(&self) -> &[ScalingRule]
pub fn rules(&self) -> &[ScalingRule]
The scale-in and scale-out rules that comprise the automatic scaling policy.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .rules.is_none()
.
source§impl AutoScalingPolicy
impl AutoScalingPolicy
sourcepub fn builder() -> AutoScalingPolicyBuilder
pub fn builder() -> AutoScalingPolicyBuilder
Creates a new builder-style object to manufacture AutoScalingPolicy
.
Trait Implementations§
source§impl Clone for AutoScalingPolicy
impl Clone for AutoScalingPolicy
source§fn clone(&self) -> AutoScalingPolicy
fn clone(&self) -> AutoScalingPolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutoScalingPolicy
impl Debug for AutoScalingPolicy
source§impl PartialEq for AutoScalingPolicy
impl PartialEq for AutoScalingPolicy
source§fn eq(&self, other: &AutoScalingPolicy) -> bool
fn eq(&self, other: &AutoScalingPolicy) -> bool
self
and other
values to be equal, and is used
by ==
.