AWS SNS binding spec

Detailed documentation on the AWS SNS binding component

配置

To setup AWS SNS binding create a component of type bindings.aws.sns. 请参阅本指南,了解如何创建和应用绑定配置。

关于身份验证相关属性的信息,请参阅 认证到 AWS

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: bindings.aws.sns
  8. version: v1
  9. metadata:
  10. - name: topicArn
  11. value: mytopic
  12. - name: region
  13. value: us-west-2
  14. - name: accessKey
  15. value: *****************
  16. - name: secretKey
  17. value: *****************
  18. - name: sessionToken
  19. value: *****************

Warning

以上示例将 Secret 明文存储。 更推荐的方式是使用 Secret 组件, 这里

元数据字段规范

字段必填绑定支持详情示例
topicArnYOutputThe SNS topic name“arn:::topicarn”
regionYOutputThe specific AWS region“us-east-1”
accessKeyYOutput要访问此资源的 AWS 访问密钥“key”
secretKeyYOutput要访问此资源的 AWS 密钥访问 Key“secretAccessKey”
sessionTokenNOutput要使用的 AWS 会话令牌“sessionToken”

绑定支持

该组件支持输出绑定,其操作如下:

  • create

相关链接