1. Packages
  2. AWS
  3. API Docs
  4. cloudwatch
  5. CompositeAlarm
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.cloudwatch.CompositeAlarm

Explore with Pulumi AI

Provides a CloudWatch Composite Alarm resource.

NOTE: An alarm (composite or metric) cannot be destroyed when there are other composite alarms depending on it. This can lead to a cyclical dependency on update, as the provider will unsuccessfully attempt to destroy alarms before updating the rule. Consider using depends_on, references to alarm names, and two-stage updates.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.cloudwatch.CompositeAlarm("example", {
    alarmDescription: "This is a composite alarm!",
    alarmName: "example-composite-alarm",
    alarmActions: exampleAwsSnsTopic.arn,
    okActions: exampleAwsSnsTopic.arn,
    alarmRule: `ALARM(${alpha.alarmName}) OR
ALARM(${bravo.alarmName})
`,
    actionsSuppressor: {
        alarm: "suppressor-alarm",
        extensionPeriod: 10,
        waitPeriod: 20,
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.cloudwatch.CompositeAlarm("example",
    alarm_description="This is a composite alarm!",
    alarm_name="example-composite-alarm",
    alarm_actions=example_aws_sns_topic["arn"],
    ok_actions=example_aws_sns_topic["arn"],
    alarm_rule=f"""ALARM({alpha["alarmName"]}) OR
ALARM({bravo["alarmName"]})
""",
    actions_suppressor={
        "alarm": "suppressor-alarm",
        "extension_period": 10,
        "wait_period": 20,
    })
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloudwatch"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudwatch.NewCompositeAlarm(ctx, "example", &cloudwatch.CompositeAlarmArgs{
			AlarmDescription: pulumi.String("This is a composite alarm!"),
			AlarmName:        pulumi.String("example-composite-alarm"),
			AlarmActions:     pulumi.Any(exampleAwsSnsTopic.Arn),
			OkActions:        pulumi.Any(exampleAwsSnsTopic.Arn),
			AlarmRule:        pulumi.Sprintf("ALARM(%v) OR\nALARM(%v)\n", alpha.AlarmName, bravo.AlarmName),
			ActionsSuppressor: &cloudwatch.CompositeAlarmActionsSuppressorArgs{
				Alarm:           pulumi.String("suppressor-alarm"),
				ExtensionPeriod: pulumi.Int(10),
				WaitPeriod:      pulumi.Int(20),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.CloudWatch.CompositeAlarm("example", new()
    {
        AlarmDescription = "This is a composite alarm!",
        AlarmName = "example-composite-alarm",
        AlarmActions = exampleAwsSnsTopic.Arn,
        OkActions = exampleAwsSnsTopic.Arn,
        AlarmRule = @$"ALARM({alpha.AlarmName}) OR
ALARM({bravo.AlarmName})
",
        ActionsSuppressor = new Aws.CloudWatch.Inputs.CompositeAlarmActionsSuppressorArgs
        {
            Alarm = "suppressor-alarm",
            ExtensionPeriod = 10,
            WaitPeriod = 20,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudwatch.CompositeAlarm;
import com.pulumi.aws.cloudwatch.CompositeAlarmArgs;
import com.pulumi.aws.cloudwatch.inputs.CompositeAlarmActionsSuppressorArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new CompositeAlarm("example", CompositeAlarmArgs.builder()
            .alarmDescription("This is a composite alarm!")
            .alarmName("example-composite-alarm")
            .alarmActions(exampleAwsSnsTopic.arn())
            .okActions(exampleAwsSnsTopic.arn())
            .alarmRule("""
ALARM(%s) OR
ALARM(%s)
", alpha.alarmName(),bravo.alarmName()))
            .actionsSuppressor(CompositeAlarmActionsSuppressorArgs.builder()
                .alarm("suppressor-alarm")
                .extensionPeriod(10)
                .waitPeriod(20)
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:cloudwatch:CompositeAlarm
    properties:
      alarmDescription: This is a composite alarm!
      alarmName: example-composite-alarm
      alarmActions: ${exampleAwsSnsTopic.arn}
      okActions: ${exampleAwsSnsTopic.arn}
      alarmRule: |
        ALARM(${alpha.alarmName}) OR
        ALARM(${bravo.alarmName})        
      actionsSuppressor:
        alarm: suppressor-alarm
        extensionPeriod: 10
        waitPeriod: 20
Copy

Create CompositeAlarm Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CompositeAlarm(name: string, args: CompositeAlarmArgs, opts?: CustomResourceOptions);
@overload
def CompositeAlarm(resource_name: str,
                   args: CompositeAlarmArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def CompositeAlarm(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   alarm_name: Optional[str] = None,
                   alarm_rule: Optional[str] = None,
                   actions_enabled: Optional[bool] = None,
                   actions_suppressor: Optional[CompositeAlarmActionsSuppressorArgs] = None,
                   alarm_actions: Optional[Sequence[str]] = None,
                   alarm_description: Optional[str] = None,
                   insufficient_data_actions: Optional[Sequence[str]] = None,
                   ok_actions: Optional[Sequence[str]] = None,
                   tags: Optional[Mapping[str, str]] = None)
func NewCompositeAlarm(ctx *Context, name string, args CompositeAlarmArgs, opts ...ResourceOption) (*CompositeAlarm, error)
public CompositeAlarm(string name, CompositeAlarmArgs args, CustomResourceOptions? opts = null)
public CompositeAlarm(String name, CompositeAlarmArgs args)
public CompositeAlarm(String name, CompositeAlarmArgs args, CustomResourceOptions options)
type: aws:cloudwatch:CompositeAlarm
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CompositeAlarmArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CompositeAlarmArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CompositeAlarmArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CompositeAlarmArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CompositeAlarmArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var compositeAlarmResource = new Aws.CloudWatch.CompositeAlarm("compositeAlarmResource", new()
{
    AlarmName = "string",
    AlarmRule = "string",
    ActionsEnabled = false,
    ActionsSuppressor = new Aws.CloudWatch.Inputs.CompositeAlarmActionsSuppressorArgs
    {
        Alarm = "string",
        ExtensionPeriod = 0,
        WaitPeriod = 0,
    },
    AlarmActions = new[]
    {
        "string",
    },
    AlarmDescription = "string",
    InsufficientDataActions = new[]
    {
        "string",
    },
    OkActions = new[]
    {
        "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := cloudwatch.NewCompositeAlarm(ctx, "compositeAlarmResource", &cloudwatch.CompositeAlarmArgs{
	AlarmName:      pulumi.String("string"),
	AlarmRule:      pulumi.String("string"),
	ActionsEnabled: pulumi.Bool(false),
	ActionsSuppressor: &cloudwatch.CompositeAlarmActionsSuppressorArgs{
		Alarm:           pulumi.String("string"),
		ExtensionPeriod: pulumi.Int(0),
		WaitPeriod:      pulumi.Int(0),
	},
	AlarmActions: pulumi.StringArray{
		pulumi.String("string"),
	},
	AlarmDescription: pulumi.String("string"),
	InsufficientDataActions: pulumi.StringArray{
		pulumi.String("string"),
	},
	OkActions: pulumi.StringArray{
		pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var compositeAlarmResource = new CompositeAlarm("compositeAlarmResource", CompositeAlarmArgs.builder()
    .alarmName("string")
    .alarmRule("string")
    .actionsEnabled(false)
    .actionsSuppressor(CompositeAlarmActionsSuppressorArgs.builder()
        .alarm("string")
        .extensionPeriod(0)
        .waitPeriod(0)
        .build())
    .alarmActions("string")
    .alarmDescription("string")
    .insufficientDataActions("string")
    .okActions("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
composite_alarm_resource = aws.cloudwatch.CompositeAlarm("compositeAlarmResource",
    alarm_name="string",
    alarm_rule="string",
    actions_enabled=False,
    actions_suppressor={
        "alarm": "string",
        "extension_period": 0,
        "wait_period": 0,
    },
    alarm_actions=["string"],
    alarm_description="string",
    insufficient_data_actions=["string"],
    ok_actions=["string"],
    tags={
        "string": "string",
    })
Copy
const compositeAlarmResource = new aws.cloudwatch.CompositeAlarm("compositeAlarmResource", {
    alarmName: "string",
    alarmRule: "string",
    actionsEnabled: false,
    actionsSuppressor: {
        alarm: "string",
        extensionPeriod: 0,
        waitPeriod: 0,
    },
    alarmActions: ["string"],
    alarmDescription: "string",
    insufficientDataActions: ["string"],
    okActions: ["string"],
    tags: {
        string: "string",
    },
});
Copy
type: aws:cloudwatch:CompositeAlarm
properties:
    actionsEnabled: false
    actionsSuppressor:
        alarm: string
        extensionPeriod: 0
        waitPeriod: 0
    alarmActions:
        - string
    alarmDescription: string
    alarmName: string
    alarmRule: string
    insufficientDataActions:
        - string
    okActions:
        - string
    tags:
        string: string
Copy

CompositeAlarm Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CompositeAlarm resource accepts the following input properties:

AlarmName
This property is required.
Changes to this property will trigger replacement.
string
The name for the composite alarm. This name must be unique within the region.
AlarmRule This property is required. string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
ActionsEnabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
ActionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
AlarmActions List<string>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
AlarmDescription string
The description for the composite alarm.
InsufficientDataActions List<string>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
OkActions List<string>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
Tags Dictionary<string, string>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
AlarmName
This property is required.
Changes to this property will trigger replacement.
string
The name for the composite alarm. This name must be unique within the region.
AlarmRule This property is required. string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
ActionsEnabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
ActionsSuppressor CompositeAlarmActionsSuppressorArgs
Actions will be suppressed if the suppressor alarm is in the ALARM state.
AlarmActions []string
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
AlarmDescription string
The description for the composite alarm.
InsufficientDataActions []string
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
OkActions []string
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
Tags map[string]string
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
alarmName
This property is required.
Changes to this property will trigger replacement.
String
The name for the composite alarm. This name must be unique within the region.
alarmRule This property is required. String
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
actionsEnabled Changes to this property will trigger replacement. Boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions List<String>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription String
The description for the composite alarm.
insufficientDataActions List<String>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions List<String>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Map<String,String>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
alarmName
This property is required.
Changes to this property will trigger replacement.
string
The name for the composite alarm. This name must be unique within the region.
alarmRule This property is required. string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
actionsEnabled Changes to this property will trigger replacement. boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions string[]
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription string
The description for the composite alarm.
insufficientDataActions string[]
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions string[]
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags {[key: string]: string}
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
alarm_name
This property is required.
Changes to this property will trigger replacement.
str
The name for the composite alarm. This name must be unique within the region.
alarm_rule This property is required. str
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
actions_enabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actions_suppressor CompositeAlarmActionsSuppressorArgs
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarm_actions Sequence[str]
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarm_description str
The description for the composite alarm.
insufficient_data_actions Sequence[str]
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
ok_actions Sequence[str]
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Mapping[str, str]
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
alarmName
This property is required.
Changes to this property will trigger replacement.
String
The name for the composite alarm. This name must be unique within the region.
alarmRule This property is required. String
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
actionsEnabled Changes to this property will trigger replacement. Boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor Property Map
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions List<String>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription String
The description for the composite alarm.
insufficientDataActions List<String>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions List<String>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Map<String>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the CompositeAlarm resource produces the following output properties:

Arn string
The ARN of the composite alarm.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN of the composite alarm.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the composite alarm.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN of the composite alarm.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN of the composite alarm.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the composite alarm.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing CompositeAlarm Resource

Get an existing CompositeAlarm resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CompositeAlarmState, opts?: CustomResourceOptions): CompositeAlarm
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        actions_enabled: Optional[bool] = None,
        actions_suppressor: Optional[CompositeAlarmActionsSuppressorArgs] = None,
        alarm_actions: Optional[Sequence[str]] = None,
        alarm_description: Optional[str] = None,
        alarm_name: Optional[str] = None,
        alarm_rule: Optional[str] = None,
        arn: Optional[str] = None,
        insufficient_data_actions: Optional[Sequence[str]] = None,
        ok_actions: Optional[Sequence[str]] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> CompositeAlarm
func GetCompositeAlarm(ctx *Context, name string, id IDInput, state *CompositeAlarmState, opts ...ResourceOption) (*CompositeAlarm, error)
public static CompositeAlarm Get(string name, Input<string> id, CompositeAlarmState? state, CustomResourceOptions? opts = null)
public static CompositeAlarm get(String name, Output<String> id, CompositeAlarmState state, CustomResourceOptions options)
resources:  _:    type: aws:cloudwatch:CompositeAlarm    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ActionsEnabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
ActionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
AlarmActions List<string>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
AlarmDescription string
The description for the composite alarm.
AlarmName Changes to this property will trigger replacement. string
The name for the composite alarm. This name must be unique within the region.
AlarmRule string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
Arn string
The ARN of the composite alarm.
InsufficientDataActions List<string>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
OkActions List<string>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
Tags Dictionary<string, string>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

ActionsEnabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
ActionsSuppressor CompositeAlarmActionsSuppressorArgs
Actions will be suppressed if the suppressor alarm is in the ALARM state.
AlarmActions []string
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
AlarmDescription string
The description for the composite alarm.
AlarmName Changes to this property will trigger replacement. string
The name for the composite alarm. This name must be unique within the region.
AlarmRule string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
Arn string
The ARN of the composite alarm.
InsufficientDataActions []string
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
OkActions []string
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
Tags map[string]string
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

actionsEnabled Changes to this property will trigger replacement. Boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions List<String>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription String
The description for the composite alarm.
alarmName Changes to this property will trigger replacement. String
The name for the composite alarm. This name must be unique within the region.
alarmRule String
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
arn String
The ARN of the composite alarm.
insufficientDataActions List<String>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions List<String>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Map<String,String>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

actionsEnabled Changes to this property will trigger replacement. boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor CompositeAlarmActionsSuppressor
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions string[]
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription string
The description for the composite alarm.
alarmName Changes to this property will trigger replacement. string
The name for the composite alarm. This name must be unique within the region.
alarmRule string
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
arn string
The ARN of the composite alarm.
insufficientDataActions string[]
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions string[]
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags {[key: string]: string}
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

actions_enabled Changes to this property will trigger replacement. bool
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actions_suppressor CompositeAlarmActionsSuppressorArgs
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarm_actions Sequence[str]
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarm_description str
The description for the composite alarm.
alarm_name Changes to this property will trigger replacement. str
The name for the composite alarm. This name must be unique within the region.
alarm_rule str
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
arn str
The ARN of the composite alarm.
insufficient_data_actions Sequence[str]
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
ok_actions Sequence[str]
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Mapping[str, str]
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

actionsEnabled Changes to this property will trigger replacement. Boolean
Indicates whether actions should be executed during any changes to the alarm state of the composite alarm. Defaults to true.
actionsSuppressor Property Map
Actions will be suppressed if the suppressor alarm is in the ALARM state.
alarmActions List<String>
The set of actions to execute when this alarm transitions to the ALARM state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
alarmDescription String
The description for the composite alarm.
alarmName Changes to this property will trigger replacement. String
The name for the composite alarm. This name must be unique within the region.
alarmRule String
An expression that specifies which other alarms are to be evaluated to determine this composite alarm's state. For syntax, see Creating a Composite Alarm. The maximum length is 10240 characters.
arn String
The ARN of the composite alarm.
insufficientDataActions List<String>
The set of actions to execute when this alarm transitions to the INSUFFICIENT_DATA state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
okActions List<String>
The set of actions to execute when this alarm transitions to an OK state from any other state. Each action is specified as an ARN. Up to 5 actions are allowed.
tags Map<String>
A map of tags to associate with the alarm. Up to 50 tags are allowed. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

CompositeAlarmActionsSuppressor
, CompositeAlarmActionsSuppressorArgs

Alarm This property is required. string
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
ExtensionPeriod This property is required. int
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
WaitPeriod This property is required. int
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.
Alarm This property is required. string
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
ExtensionPeriod This property is required. int
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
WaitPeriod This property is required. int
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.
alarm This property is required. String
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
extensionPeriod This property is required. Integer
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
waitPeriod This property is required. Integer
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.
alarm This property is required. string
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
extensionPeriod This property is required. number
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
waitPeriod This property is required. number
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.
alarm This property is required. str
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
extension_period This property is required. int
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
wait_period This property is required. int
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.
alarm This property is required. String
Can be an AlarmName or an Amazon Resource Name (ARN) from an existing alarm.
extensionPeriod This property is required. Number
The maximum time in seconds that the composite alarm waits after suppressor alarm goes out of the ALARM state. After this time, the composite alarm performs its actions.
waitPeriod This property is required. Number
The maximum time in seconds that the composite alarm waits for the suppressor alarm to go into the ALARM state. After this time, the composite alarm performs its actions.

Import

Using pulumi import, import a CloudWatch Composite Alarm using the alarm_name. For example:

$ pulumi import aws:cloudwatch/compositeAlarm:CompositeAlarm test my-alarm
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.