AWS DynamoDB 绑定规范

AWS DynamoDB 绑定组件的详细文档

配置

要设置 AWS DynamoDB 绑定,请创建一个类型为 bindings.aws.dynamodb 的组件。 See this guide on how to create and apply a binding configuration.

See Authenticating to AWS for information about authentication-related attributes

apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: <NAME>
  namespace: <NAMESPACE>
spec:
  type: bindings.aws.dynamodb
  version: v1
  metadata:
  - name: table
    value: items
  - name: region
    value: us-west-2
  - name: accessKey
    value: *****************
  - name: secretKey
    value: *****************
  - name: sessionToken
    value: *****************

元数据字段规范

字段必填绑定支持详情Example
tableY输出DynamoDB 表名称"items"
regionY输出AWS DynamoDB 实例所部署的特定AWS 区域"us-east-1"
accessKeyY输出要访问此资源的 AWS 访问密钥"key"
secretKeyY输出要访问此资源的 AWS 密钥访问 Key"secretAccessKey"
sessionTokenN输出要使用的 AWS 会话令牌"sessionToken"

绑定支持

字段名为 ttlInSeconds

  • create

相关链接