Skip to content

Create Ingestion

quicksight_create_ingestion R Documentation

Creates and starts a new SPICE ingestion for a dataset

Description

Creates and starts a new SPICE ingestion for a dataset. You can manually refresh datasets in an Enterprise edition account 32 times in a 24-hour period. You can manually refresh datasets in a Standard edition account 8 times in a 24-hour period. Each 24-hour period is measured starting 24 hours before the current date and time.

Any ingestions operating on tagged datasets inherit the same tags automatically for use in access control. For an example, see How do I create an IAM policy to control access to Amazon EC2 resources using tags? in the Amazon Web Services Knowledge Center. Tags are visible on the tagged dataset, but not on the ingestion resource.

Usage

quicksight_create_ingestion(DataSetId, IngestionId, AwsAccountId,
  IngestionType)

Arguments

DataSetId

[required] The ID of the dataset used in the ingestion.

IngestionId

[required] An ID for the ingestion.

AwsAccountId

[required] The Amazon Web Services account ID.

IngestionType

The type of ingestion that you want to create.

Value

A list with the following syntax:

list(
  Arn = "string",
  IngestionId = "string",
  IngestionStatus = "INITIALIZED"|"QUEUED"|"RUNNING"|"FAILED"|"COMPLETED"|"CANCELLED",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$create_ingestion(
  DataSetId = "string",
  IngestionId = "string",
  AwsAccountId = "string",
  IngestionType = "INCREMENTAL_REFRESH"|"FULL_REFRESH"
)