Resource: aws_pinpoint_app

Provides a Pinpoint App resource.

Example Usage

resource "aws_pinpoint_app" "example" {
  name = "test-app"

  limits {
    maximum_duration = 600
  }

  quiet_time {
    start = "00:00"
    end   = "06:00"
  }
}

Argument Reference

This resource supports the following arguments:

campaign_hook supports the following:

limits supports the following:

quiet_time supports the following:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Pinpoint App using the application-id. For example:

import {
  to = aws_pinpoint_app.name
  id = "application-id"
}

Using terraform import, import Pinpoint App using the application-id. For example:

% terraform import aws_pinpoint_app.name application-id