diff options
author | j0nes2k <jonas.kaufmann@gmail.com> | 2013-10-23 12:10:20 +0200 |
---|---|---|
committer | j0nes2k <jonas.kaufmann@gmail.com> | 2013-10-23 12:10:20 +0200 |
commit | b6e1d471627145b9b2fed1a20e0cf7eb64eccc06 (patch) | |
tree | f2ff9aa0e811ce32aa91d802b21ebb5c5d99bfe9 /boto/ec2 | |
parent | 4aad26db762d9b8dd4abd2f6e6a239c603ad3c32 (diff) | |
download | boto-b6e1d471627145b9b2fed1a20e0cf7eb64eccc06.tar.gz |
Added documentation for valid event types
Reference: http://docs.aws.amazon.com/AutoScaling/latest/APIReference/API_DescribeAutoScalingNotificationTypes.html
Diffstat (limited to 'boto/ec2')
-rw-r--r-- | boto/ec2/autoscale/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/boto/ec2/autoscale/__init__.py b/boto/ec2/autoscale/__init__.py index 6da974d3..2a54adf1 100644 --- a/boto/ec2/autoscale/__init__.py +++ b/boto/ec2/autoscale/__init__.py @@ -700,7 +700,12 @@ class AutoScaleConnection(AWSQueryConnection): :type notification_types: list :param notification_types: The type of events that will trigger - the notification. + the notification. Valid types are: + 'autoscaling:EC2_INSTANCE_LAUNCH', + 'autoscaling:EC2_INSTANCE_LAUNCH_ERROR', + 'autoscaling:EC2_INSTANCE_TERMINATE', + 'autoscaling:EC2_INSTANCE_TERMINATE_ERROR', + 'autoscaling:TEST_NOTIFICATION' """ name = autoscale_group |