Class: Aws::AppSync::Types::DynamodbDataSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::DynamodbDataSourceConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass DynamodbDataSourceConfig data as a hash:
{
table_name: "String", # required
aws_region: "String", # required
use_caller_credentials: false,
delta_sync_config: {
base_table_ttl: 1,
delta_sync_table_name: "String",
delta_sync_table_ttl: 1,
},
versioned: false,
}
Describes an Amazon DynamoDB data source configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_region ⇒ String
The Amazon Web Services Region.
-
#delta_sync_config ⇒ Types::DeltaSyncConfig
The
DeltaSyncConfig
for a versioned data source. -
#table_name ⇒ String
The table name.
-
#use_caller_credentials ⇒ Boolean
Set to TRUE to use Amazon Cognito credentials with this data source.
-
#versioned ⇒ Boolean
Set to TRUE to use Conflict Detection and Resolution with this data source.
Instance Attribute Details
#aws_region ⇒ String
The Amazon Web Services Region.
1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1684 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end |
#delta_sync_config ⇒ Types::DeltaSyncConfig
The DeltaSyncConfig
for a versioned data source.
1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1684 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The table name.
1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1684 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end |
#use_caller_credentials ⇒ Boolean
Set to TRUE to use Amazon Cognito credentials with this data source.
1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1684 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end |
#versioned ⇒ Boolean
Set to TRUE to use Conflict Detection and Resolution with this data source.
1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1684 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end |