Show / Hide Table of Contents

Class CfnDataSet.IngestionWaitPolicyProperty

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

Inheritance
object
CfnDataSet.IngestionWaitPolicyProperty
Implements
CfnDataSet.IIngestionWaitPolicyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.IngestionWaitPolicyProperty : CfnDataSet.IIngestionWaitPolicyProperty
Syntax (vb)
Public Class CfnDataSet.IngestionWaitPolicyProperty Implements CfnDataSet.IIngestionWaitPolicyProperty
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-ingestionwaitpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.QuickSight;

             var ingestionWaitPolicyProperty = new IngestionWaitPolicyProperty {
                 IngestionWaitTimeInHours = 123,
                 WaitForSpiceIngestion = false
             };

Synopsis

Constructors

IngestionWaitPolicyProperty()

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

Properties

IngestionWaitTimeInHours

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

WaitForSpiceIngestion

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

Constructors

IngestionWaitPolicyProperty()

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

public IngestionWaitPolicyProperty()
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-ingestionwaitpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.QuickSight;

             var ingestionWaitPolicyProperty = new IngestionWaitPolicyProperty {
                 IngestionWaitTimeInHours = 123,
                 WaitForSpiceIngestion = false
             };

Properties

IngestionWaitTimeInHours

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

public double? IngestionWaitTimeInHours { get; set; }
Property Value

double?

Remarks

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

Default: - 36

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-ingestionwaitpolicy.html#cfn-quicksight-dataset-ingestionwaitpolicy-ingestionwaittimeinhours

WaitForSpiceIngestion

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

public object? WaitForSpiceIngestion { get; set; }
Property Value

object

Remarks

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

Default: - true

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-ingestionwaitpolicy.html#cfn-quicksight-dataset-ingestionwaitpolicy-waitforspiceingestion

Implements

CfnDataSet.IIngestionWaitPolicyProperty
Back to top Generated by DocFX