Interface DynamoDbDataSourceProps

All Superinterfaces:
BackedDataSourceProps, BaseDataSourceProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DynamoDbDataSourceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.801Z") @Stability(Stable) public interface DynamoDbDataSourceProps extends software.amazon.jsii.JsiiSerializable, BackedDataSourceProps
Properties for an AppSync DynamoDB datasource.

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.*;
 import software.amazon.awscdk.services.dynamodb.*;
 import software.amazon.awscdk.services.iam.*;
 GraphqlApi graphqlApi;
 Role role;
 Table table;
 DynamoDbDataSourceProps dynamoDbDataSourceProps = DynamoDbDataSourceProps.builder()
         .api(graphqlApi)
         .table(table)
         // the properties below are optional
         .description("description")
         .name("name")
         .readOnlyAccess(false)
         .serviceRole(role)
         .useCallerCredentials(false)
         .build();
 
  • Method Details

    • getTable

      @Stability(Stable) @NotNull ITable getTable()
      The DynamoDB table backing this data source.
    • getReadOnlyAccess

      @Stability(Stable) @Nullable default Boolean getReadOnlyAccess()
      Specify whether this DS is read only or has read and write permissions to the DynamoDB table.

      Default: false

    • getUseCallerCredentials

      @Stability(Stable) @Nullable default Boolean getUseCallerCredentials()
      use credentials of caller to access DynamoDB.

      Default: false

    • builder

      @Stability(Stable) static DynamoDbDataSourceProps.Builder builder()
      Returns:
      a DynamoDbDataSourceProps.Builder of DynamoDbDataSourceProps