> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/actionexecutiontrigger-object.md).

# ActionExecutionTrigger Object

## Description

Specifies the trigger for an action execution.

## Properties

### triggerType

Type of trigger.

Type: `string`

Valid Values:

* `schedule`
* `user`
* `sns`

### userId

User that triggered the action execution. Will only be present when `triggerType` is `user`.

Type: `string`

## Sample JSON

```javascript
{
    "triggerType": "user",
    "userId": "u-00000001"
}
```
