interface IngestionWaitPolicyProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.IngestionWaitPolicyProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.IngestionWaitPolicyProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.IngestionWaitPolicyProperty |
TypeScript | @aws-cdk/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 * as quicksight from '@aws-cdk/aws-quicksight';
const ingestionWaitPolicyProperty: quicksight.CfnDataSet.IngestionWaitPolicyProperty = {
ingestionWaitTimeInHours: 123,
waitForSpiceIngestion: false,
};
Properties
Name | Type | Description |
---|---|---|
ingestion | number | The maximum time (in hours) to wait for Ingestion to complete. |
wait | boolean | IResolvable | Wait 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.