AlarmConfiguration

public struct AlarmConfiguration : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A list of alarms configured for the deployment group. A maximum of 10 alarms can be added to a deployment group.

    Declaration

    Swift

    public let alarms: [Alarm]?
  • Indicates whether the alarm configuration is enabled.

    Declaration

    Swift

    public let enabled: Bool?
  • Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from Amazon CloudWatch. The default value is false. true: The deployment proceeds even if alarm status information can’t be retrieved from Amazon CloudWatch. false: The deployment stops if alarm status information can’t be retrieved from Amazon CloudWatch.

    Declaration

    Swift

    public let ignorePollAlarmFailure: Bool?
  • Undocumented

    Declaration

    Swift

    public init(alarms: [Alarm]? = nil, enabled: Bool? = nil, ignorePollAlarmFailure: Bool? = nil)