[−][src]Struct rusoto_autoscaling::AutoScalingGroup
Describes an Auto Scaling group.
Fields
auto_scaling_group_arn: Option<String>
The Amazon Resource Name (ARN) of the Auto Scaling group.
auto_scaling_group_name: String
The name of the Auto Scaling group.
availability_zones: Vec<String>
One or more Availability Zones for the group.
created_time: String
The date and time the group was created.
default_cooldown: i64
The amount of time, in seconds, after a scaling activity completes before another scaling activity can start.
desired_capacity: i64
The desired size of the group.
enabled_metrics: Option<Vec<EnabledMetric>>
The metrics enabled for the group.
health_check_grace_period: Option<i64>
The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service.
health_check_type: String
The service to use for the health checks. The valid values are EC2
and ELB
. If you configure an Auto Scaling group to use ELB health checks, it considers the instance unhealthy if it fails either the EC2 status checks or the load balancer health checks.
instances: Option<Vec<Instance>>
The EC2 instances associated with the group.
launch_configuration_name: Option<String>
The name of the associated launch configuration.
launch_template: Option<LaunchTemplateSpecification>
The launch template for the group.
load_balancer_names: Option<Vec<String>>
One or more load balancers associated with the group.
max_size: i64
The maximum size of the group.
min_size: i64
The minimum size of the group.
mixed_instances_policy: Option<MixedInstancesPolicy>
The mixed instances policy for the group.
new_instances_protected_from_scale_in: Option<bool>
Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in.
placement_group: Option<String>
The name of the placement group into which to launch your instances, if any.
service_linked_role_arn: Option<String>
The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS services on your behalf.
status: Option<String>
The current state of the group when DeleteAutoScalingGroup is in progress.
suspended_processes: Option<Vec<SuspendedProcess>>
The suspended processes associated with the group.
The tags for the group.
target_group_ar_ns: Option<Vec<String>>
The Amazon Resource Names (ARN) of the target groups for your load balancer.
termination_policies: Option<Vec<String>>
The termination policies for the group.
vpc_zone_identifier: Option<String>
One or more subnet IDs, if applicable, separated by commas.
Trait Implementations
impl PartialEq<AutoScalingGroup> for AutoScalingGroup
[src]
fn eq(&self, other: &AutoScalingGroup) -> bool
[src]
fn ne(&self, other: &AutoScalingGroup) -> bool
[src]
impl Default for AutoScalingGroup
[src]
fn default() -> AutoScalingGroup
[src]
impl Clone for AutoScalingGroup
[src]
fn clone(&self) -> AutoScalingGroup
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AutoScalingGroup
[src]
Auto Trait Implementations
impl Send for AutoScalingGroup
impl Sync for AutoScalingGroup
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self