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

# CloudFormationStackNameComparison Object

## Description

Comparison for CloudFormation stack names.

## Properties

### compareType

Comparison to use.

Type: `string`

Valid Values:

* `contains`
* `does-not-contain`
* `does-not-end-with`
* `does-not-equal`
* `does-not-start-with`
* `ends-with`
* `equals`
* `starts-with`

Required: Yes

### stackName

Text to compare.

Type: `string`

Required: Yes

## Sample JSON

```javascript
{
    "compareType": "starts-with",
    "stackName": "prod-"
}
```
