Show / Hide Table of Contents

Class DeploymentGroupAlarmConfigurationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DeploymentGroupAlarmConfigurationArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.CodeDeploy.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DeploymentGroupAlarmConfigurationArgs : ResourceArgs

Constructors

View Source

DeploymentGroupAlarmConfigurationArgs()

Declaration
public DeploymentGroupAlarmConfigurationArgs()

Properties

View Source

Alarms

A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group.

Declaration
public InputList<string> Alarms { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Enabled

Indicates whether the alarm configuration is enabled. This option is useful when you want to temporarily deactivate alarm monitoring for a deployment group without having to add the same alarms again later.

Declaration
public Input<bool> Enabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

IgnorePollAlarmFailure

Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from CloudWatch. The default value is false.

  • true: The deployment will proceed even if alarm status information can't be retrieved.
  • false: The deployment will stop if alarm status information can't be retrieved.
Declaration
public Input<bool> IgnorePollAlarmFailure { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.