Ingestion

class Ingestion : KotlinCustomResource

Resource for managing an AWS QuickSight Ingestion.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.quicksight.Ingestion;
import com.pulumi.aws.quicksight.IngestionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Ingestion("example", IngestionArgs.builder()
.dataSetId(aws_quicksight_data_set.example().data_set_id())
.ingestionId("example-id")
.ingestionType("FULL_REFRESH")
.build());
}
}

Import

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

$ pulumi import aws:quicksight/ingestion:Ingestion example 123456789012,example-dataset-id,example-ingestion-id

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Ingestion.

Link copied to clipboard
val awsAccountId: Output<String>

AWS account ID.

Link copied to clipboard
val dataSetId: Output<String>

ID of the dataset used in the ingestion.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val ingestionId: Output<String>

ID for the ingestion.

Link copied to clipboard
val ingestionStatus: Output<String>

Ingestion status.

Link copied to clipboard
val ingestionType: Output<String>

Type of ingestion to be created. Valid values are INCREMENTAL_REFRESH and FULL_REFRESH. The following arguments are optional:

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>