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
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
DeltaSyncConfigfor 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.
      2338 2339 2340 2341 2342 2343 2344 2345 2346  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2338 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.
      2338 2339 2340 2341 2342 2343 2344 2345 2346  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2338 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.
      2338 2339 2340 2341 2342 2343 2344 2345 2346  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2338 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.
      2338 2339 2340 2341 2342 2343 2344 2345 2346  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2338 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.
      2338 2339 2340 2341 2342 2343 2344 2345 2346  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2338 class DynamodbDataSourceConfig < Struct.new( :table_name, :aws_region, :use_caller_credentials, :delta_sync_config, :versioned) SENSITIVE = [] include Aws::Structure end  |