Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DynamodbDataSourceConfig

import type { DynamodbDataSourceConfig } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";

Describes an Amazon DynamoDB data source configuration.

interface DynamodbDataSourceConfig {
awsRegion: string;
deltaSyncConfig?: DeltaSyncConfig | null;
tableName: string;
useCallerCredentials?: boolean | null;
versioned?: boolean | null;
}

§Properties

§
awsRegion: string
[src]

The Amazon Web Services Region.

§
deltaSyncConfig?: DeltaSyncConfig | null
[src]

The DeltaSyncConfig for a versioned data source.

§
tableName: string
[src]

The table name.

§
useCallerCredentials?: boolean | null
[src]

Set to TRUE to use Amazon Cognito credentials with this data source.

§
versioned?: boolean | null
[src]

Set to TRUE to use Conflict Detection and Resolution with this data source.