Resource: aws_quicksight_ingestion

Terraform resource for managing an AWS QuickSight Ingestion.

Example Usage

Basic Usage

resource "aws_quicksight_ingestion" "example" {
  data_set_id    = aws_quicksight_data_set.example.data_set_id
  ingestion_id   = "example-id"
  ingestion_type = "FULL_REFRESH"
}

Argument Reference

The following arguments are required:

The following arguments are optional:

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 QuickSight Ingestion using the AWS account ID, data set ID, and ingestion ID separated by commas (,). For example:

import {
  to = aws_quicksight_ingestion.example
  id = "123456789012,example-dataset-id,example-ingestion-id"
}

Using terraform import, import QuickSight Ingestion using the AWS account ID, data set ID, and ingestion ID separated by commas (,). For example:

% terraform import aws_quicksight_ingestion.example 123456789012,example-dataset-id,example-ingestion-id