Interface CfnDataSource.DynamoDBConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.DynamoDBConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.DynamoDBConfigProperty
extends software.amazon.jsii.JsiiSerializable
The
DynamoDBConfig
property type specifies the AwsRegion
and TableName
for an Amazon DynamoDB table in your account for an AWS AppSync data source.
DynamoDBConfig
is a property of the AWS::AppSync::DataSource property type.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appsync.*; DynamoDBConfigProperty dynamoDBConfigProperty = DynamoDBConfigProperty.builder() .awsRegion("awsRegion") .tableName("tableName") // the properties below are optional .deltaSyncConfig(DeltaSyncConfigProperty.builder() .baseTableTtl("baseTableTtl") .deltaSyncTableName("deltaSyncTableName") .deltaSyncTableTtl("deltaSyncTableTtl") .build()) .useCallerCredentials(false) .versioned(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.DynamoDBConfigProperty
static final class
An implementation forCfnDataSource.DynamoDBConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The AWS Region.default Object
TheDeltaSyncConfig
for a versioned datasource.The table name.default Object
Set toTRUE
to use AWS Identity and Access Management with this data source.default Object
Set to TRUE to use Conflict Detection and Resolution with this data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsRegion
The AWS Region.- See Also:
-
getTableName
The table name.- See Also:
-
getDeltaSyncConfig
TheDeltaSyncConfig
for a versioned datasource.- See Also:
-
getUseCallerCredentials
Set toTRUE
to use AWS Identity and Access Management with this data source.- See Also:
-
getVersioned
Set to TRUE to use Conflict Detection and Resolution with this data source.- See Also:
-
builder
-