> 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/sendssmcommandparameter-object.md).

# SendSsmCommandParameter Object

## Description

Specifies parameter name and values to use when sending SSM commands.

## Properties

### parameterName

Name of the SSM document parameter.

Type: `string`

Required: Yes

### values

Values for the SSM document parameter.

Type: Array of `string`

Required: Yes

## Sample JSON

```javascript
{
    "parameterName": "commands",
    "values": [
        "yum update"
    ]
}
```
