Class CfnDataSource.DeltaSyncConfigProperty
Describes a Delta Sync configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.DeltaSyncConfigProperty : CfnDataSource.IDeltaSyncConfigProperty
Syntax (vb)
Public Class CfnDataSource.DeltaSyncConfigProperty Implements CfnDataSource.IDeltaSyncConfigProperty
Remarks
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
Constructors
| DeltaSyncConfigProperty() | Describes a Delta Sync configuration. |
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. |
Constructors
DeltaSyncConfigProperty()
Describes a Delta Sync configuration.
public DeltaSyncConfigProperty()
Remarks
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"
};
Properties
BaseTableTtl
The number of minutes that an Item is stored in the data source.
public string BaseTableTtl { get; set; }
Property Value
Remarks
DeltaSyncTableName
The Delta Sync table name.
public string DeltaSyncTableName { get; set; }
Property Value
Remarks
DeltaSyncTableTtl
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
public string DeltaSyncTableTtl { get; set; }