1VM::EC2::ASG(3) User Contributed Perl Documentation VM::EC2::ASG(3)
2
3
4
6 VM::EC2::ASG - Object describing an AutoScaling Group
7
9 use VM::EC2;
10
11 $ec2 = VM::EC2->new(...);
12 @asgs = $ec2->describe_autoscaling_groups();
13
14 $asg = $asgs[0];
15 $name = $asg->auto_scaling_group_name;
16 @azs = $asg->availability_zones;
17
19 This object represents an AutoScaling Group. It is returned by
20 "VM::EC2-"describe_autoscaling_groups()>.
21
23 These properties are supported:
24
25 auto_scaling_group_arn -- ARN of the group
26 auto_scaling_group_name -- Name
27 availability_zones -- Zones in which this group auto scale
28 created_time -- Time of creation
29 default_cooldown
30 desired_capacity
31 enabled_metrics
32 health_check_type
33 health_check_grace_period
34 instance -- List of instances active in this group
35 launch_configuration -- Launch configuration name
36 load_balancer_names -- List of load balancers
37 max_size
38 min_size
39 placement_group
40 status
41 suspended_processes
42 tags
43 termination_policies
44 vpc_zone_identifier
45
47 VM::EC2 VM::EC2::Generic
48
50 Jose Luis Martinez
51
52
53
54perl v5.32.0 2020-07-28 VM::EC2::ASG(3)