Syntax
Get-AlarmActionTrigger [[-AlarmAction] <AlarmAction[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet retrieves the actions that trigger the specified alarm actions.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
AlarmAction | AlarmAction[] | Filters the trigger actions by the alarm actions they trigger. | false | true (ByValue) |
Return Type
Zero or more AlarmActionTrigger objectsNotes
Examples
-------------- Example 1 --------------
Get-AlarmAction -AlarmDefinition (Get-AlarmDefinition | select -First 1) | Get-AlarmActionTrigger
Retrieves the action triggers for the actions of the first returned alarm.