ScalingEvents

class aws_cdk.aws_autoscaling.ScalingEvents(*types)

Bases: object

A list of ScalingEvents, you can use one of the predefined lists, such as ScalingEvents.ERRORS or create a custom group by instantiating a NotificationTypes object, e.g: new NotificationTypes(``NotificationType.INSTANCE_LAUNCH)``.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_autoscaling as autoscaling

scaling_events = autoscaling.ScalingEvents.ALL
Parameters:

types (ScalingEvent) –

Attributes

ALL = <aws_cdk.aws_autoscaling.ScalingEvents object>
ERRORS = <aws_cdk.aws_autoscaling.ScalingEvents object>
LAUNCH_EVENTS = <aws_cdk.aws_autoscaling.ScalingEvents object>
TERMINATION_EVENTS = <aws_cdk.aws_autoscaling.ScalingEvents object>