Show / Hide Table of Contents

Class CfnDataSource.DeltaSyncConfigProperty

Describes a Delta Sync configuration.

Inheritance
object
CfnDataSource.DeltaSyncConfigProperty
Implements
CfnDataSource.IDeltaSyncConfigProperty
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.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.DeltaSyncConfigProperty : CfnDataSource.IDeltaSyncConfigProperty
Syntax (vb)
Public Class CfnDataSource.DeltaSyncConfigProperty Implements 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

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

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"
             };

Properties

BaseTableTtl

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

public string BaseTableTtl { get; set; }
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.

public string DeltaSyncTableName { get; set; }
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.

public string DeltaSyncTableTtl { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataSource.IDeltaSyncConfigProperty
Back to top Generated by DocFX