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

# ProjectNotificationAmazonSnsSettings Object

## Description

Amazon SNS settings for a project notification.

## Properties

### credentialId

Credential ID of the registered credential to use to send the notification.

Type: `string`

Required: Yes

### regionName

Name of the region containing the SNS topic.

Type: `string`

Required: Yes

### topicArn

ARN of the SNS topic to which notifications will be sent.

Type: `string`

Required: Yes

## Sample JSON

```javascript
{
    "regionName": "us-east-1",
    "credentialId": "cred-12345678"
    "topicArn": "arn:aws:sns:us-east-1:123456789012:my-topic"
}
```
