aws-cdk-lib.aws_quicksight.CfnDataSet.IngestionWaitPolicyProperty

interface IngestionWaitPolicyProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.IngestionWaitPolicyProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_IngestionWaitPolicyProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.IngestionWaitPolicyProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.IngestionWaitPolicyProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDataSet » IngestionWaitPolicyProperty

The wait policy to use when creating or updating a Dataset.

The default is to wait for SPICE ingestion to finish with timeout of 36 hours.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const ingestionWaitPolicyProperty: quicksight.CfnDataSet.IngestionWaitPolicyProperty = {
  ingestionWaitTimeInHours: 123,
  waitForSpiceIngestion: false,
};

Properties

NameTypeDescription
ingestionWaitTimeInHours?numberThe maximum time (in hours) to wait for Ingestion to complete.
waitForSpiceIngestion?boolean | IResolvableWait for SPICE ingestion to finish to mark dataset creation or update as successful.

ingestionWaitTimeInHours?

Type: number (optional)

The maximum time (in hours) to wait for Ingestion to complete.

Default timeout is 36 hours. Applicable only when DataSetImportMode mode is set to SPICE and WaitForSpiceIngestion is set to true.


waitForSpiceIngestion?

Type: boolean | IResolvable (optional)

Wait for SPICE ingestion to finish to mark dataset creation or update as successful.

Default (true). Applicable only when DataSetImportMode mode is set to SPICE.