Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Mar 19, 2021
1 parent 64cbf10 commit fc6c58d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aws/resource_aws_pinpoint_email_channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ func resourceAwsPinpointEmailChannel() *schema.Resource {
ForceNew: true,
},
"configuration_set": {
Type: schema.TypeString,
Optional: true,
Type: schema.TypeString,
Optional: true,
ValidateFunc: validateArn,
},
"enabled": {
Type: schema.TypeBool,
Expand Down
1 change: 1 addition & 0 deletions website/docs/r/pinpoint_email_channel.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ The following arguments are supported:

* `application_id` - (Required) The application ID.
* `enabled` - (Optional) Whether the channel is enabled or disabled. Defaults to `true`.
* `configuration_set` - (Optional) The ARN of the Amazon SES configuration set that you want to apply to messages that you send through the channel.
* `from_address` - (Required) The email address used to send emails from.
* `identity` - (Required) The ARN of an identity verified with SES.
* `role_arn` - (Required) The ARN of an IAM Role used to submit events to Mobile Analytics' event ingestion service.
Expand Down

0 comments on commit fc6c58d

Please sign in to comment.