interface DeltaSyncConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.DeltaSyncConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_DeltaSyncConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.DeltaSyncConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.DeltaSyncConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnDataSourcePropsMixin » DeltaSyncConfigProperty |
Describes a Delta Sync configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const deltaSyncConfigProperty: appsync_mixins.CfnDataSourcePropsMixin.DeltaSyncConfigProperty = {
baseTableTtl: 'baseTableTtl',
deltaSyncTableName: 'deltaSyncTableName',
deltaSyncTableTtl: 'deltaSyncTableTtl',
};
Properties
| Name | Type | Description |
|---|---|---|
| base | string | The number of minutes that an Item is stored in the data source. |
| delta | string | The Delta Sync table name. |
| delta | string | The number of minutes that a Delta Sync log entry is stored in the Delta Sync table. |
baseTableTtl?
Type:
string
(optional)
The number of minutes that an Item is stored in the data source.
deltaSyncTableName?
Type:
string
(optional)
The Delta Sync table name.
deltaSyncTableTtl?
Type:
string
(optional)
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.

.NET
Go
Java
Python
TypeScript