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

# CloudFormationParameter Object

## Description

Parameters for a CloudFormation stack.

## Properties

### key

Key (name) of the CloudFormation parameter.&#x20;

Type: `string`

Required: Yes

### key

Value of the CloudFormation parameter. Required when `usePreviousValue` is `false`.

Type: `string`

Required: Conditional

### usePreviousValue

Indicates that the previous value for the key will be used.

Type: `boolean`

Required: No

Default: `false`

## Sample JSON

```javascript
{
    "key": "param1",
    "value": "value1",
    "usePreviousValue": false
}
```
