创建具有键模式上不存在的属性的表时出现问题

Posted

技术标签:

【中文标题】创建具有键模式上不存在的属性的表时出现问题【英文标题】:Issue when creating a table with attributes non present on keyschema 【发布时间】:2021-04-16 22:59:42 【问题描述】:

我正在学习 DynamoDB。

我想创建一个具有以下主键的表:

分区键:名称 排序键:creationDate

并具有以下属性:

名称(pk) 地址(sk) 创建日期 是活跃的

这是我的 TS 界面(以防它有助于描述我想要什么)

interface User 
  readonly name: string;
  readonly address: string;
  readonly creationDate: Date;
  readonly isActive: boolean;

我写了以下模板:

Resources:
  myDynamoDBTable:
    Type: AWS::DynamoDB::Table
    Properties:
      AttributeDefinitions:
      - AttributeName: 'name'
        AttributeType: 'S'
      - AttributeName: 'address'
        AttributeType: 'S'
      - AttributeName: 'creationDate'
        AttributeType: 'S'
      - AttributeName: 'isActive'
        AttributeType: 'S'
      KeySchema:
      - AttributeName: 'name'
        KeyType: HASH
      - AttributeName: 'creationDate'
        KeyType: RANGE

当我部署它时,它失败并出现以下错误

One or more parameter values were invalid: Number of attributes in KeySchema does not exactly match number of attributes defined in AttributeDefinitions

我用谷歌搜索并找到了几个答案,但我仍然不明白发生了什么以及如何在我的表中拥有这些属性(所有项目都将具有这些属性)。

有什么办法可以做到吗?如果是这样,我做错了什么? 谢谢

【问题讨论】:

只有用作键的属性必须预先声明 这能回答你的问题吗? CloudFormation insists my DynamoDB creation JSON is invalid .. but I can't see how 【参考方案1】:

您的AttributeDefinitions 中不能有isActiveaddress,因为它们不在您的KeySchema 中。您还缺少ProvisionedThroughput。所以正确的表定义是(例子):

Resources:
  myDynamoDBTable:
    Type: AWS::DynamoDB::Table
    Properties:
      AttributeDefinitions:
      - AttributeName: 'name'
        AttributeType: 'S'
      - AttributeName: 'creationDate'
        AttributeType: 'S'
      KeySchema:
      - AttributeName: 'name'
        KeyType: HASH
      - AttributeName: 'creationDate'
        KeyType: RANGE
      ProvisionedThroughput:
        ReadCapacityUnits: 1
        WriteCapacityUnits: 1

【讨论】:

以上是关于创建具有键模式上不存在的属性的表时出现问题的主要内容,如果未能解决你的问题,请参考以下文章

创建具有更多参数的函数时出现“函数不存在”错误

Vue.js 3 属性“$store”在“CreateComponentPublicInstance”类型上不存在

尝试定义 FOREIGN KEY 时出现“表中不存在键列”

对象“RealmSwiftPermissionRole”上不存在主键属性“名称”

类型“文档<any>”上不存在属性“密码”

类型“未知”.ts(2339) 上不存在属性“名称”