Resource: aws_redshift_snapshot_schedule

Example Usage

resource "aws_redshift_snapshot_schedule" "default" {
  identifier = "tf-redshift-snapshot-schedule"
  definitions = [
    "rate(12 hours)",
  ]
}

Argument Reference

This resource supports the following arguments:

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 Redshift Snapshot Schedule using the identifier. For example:

import {
  to = aws_redshift_snapshot_schedule.default
  id = "tf-redshift-snapshot-schedule"
}

Using terraform import, import Redshift Snapshot Schedule using the identifier. For example:

% terraform import aws_redshift_snapshot_schedule.default tf-redshift-snapshot-schedule