Show / Hide Table of Contents

Interface CfnDataSource.IDeltaSyncConfigProperty

Describes a Delta Sync configuration.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IDeltaSyncConfigProperty
Syntax (vb)
Public Interface CfnDataSource.IDeltaSyncConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.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.AppSync;

             var deltaSyncConfigProperty = new DeltaSyncConfigProperty {
                 BaseTableTtl = "baseTableTtl",
                 DeltaSyncTableName = "deltaSyncTableName",
                 DeltaSyncTableTtl = "deltaSyncTableTtl"
             };

Synopsis

Properties

BaseTableTtl

The number of minutes that an Item is stored in the data source.

DeltaSyncTableName

The Delta Sync table name.

DeltaSyncTableTtl

The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.

Properties

BaseTableTtl

The number of minutes that an Item is stored in the data source.

string BaseTableTtl { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-basetablettl

DeltaSyncTableName

The Delta Sync table name.

string DeltaSyncTableName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablename

DeltaSyncTableTtl

The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.

string DeltaSyncTableTtl { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-deltasyncconfig.html#cfn-appsync-datasource-deltasyncconfig-deltasynctablettl

Back to top Generated by DocFX