Resource: aws_neptune_cluster_snapshot

Manages a Neptune database cluster snapshot.

Example Usage

resource "aws_neptune_cluster_snapshot" "example" {
  db_cluster_identifier          = aws_neptune_cluster.example.id
  db_cluster_snapshot_identifier = "resourcetestsnapshot1234"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

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

Timeouts

Configuration options:

Import

In Terraform v1.5.0 and later, use an import block to import aws_neptune_cluster_snapshot using the cluster snapshot identifier. For example:

import {
  to = aws_neptune_cluster_snapshot.example
  id = "my-cluster-snapshot"
}

Using terraform import, import aws_neptune_cluster_snapshot using the cluster snapshot identifier. For example:

% terraform import aws_neptune_cluster_snapshot.example my-cluster-snapshot