AWS S3 binding spec
Detailed documentation on the AWS S3 binding component
Component format
To setup AWS S3 binding create a component of type bindings.aws.s3
. 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.s3
version: v1
metadata:
- name: bucket
value: mybucket
- name: region
value: us-west-2
- name: accessKey
value: *****************
- name: secretKey
value: *****************
- name: bucket
value: mybucket
Warning
The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described here.
Spec metadata fields
字段 | Required | Binding support | Details | Example |
---|---|---|---|---|
bucket | Y | Output | The name of the S3 bucket to write to | “bucket” |
region | Y | Output | The specific AWS region | “us-east-1” |
accessKey | Y | Output | The AWS Access Key to access this resource | “key” |
secretKey | Y | Output | The AWS Secret Access Key to access this resource | “secretAccessKey” |
sessionToken | N | Output | The AWS session token to use | “sessionToken” |
Output bindings
字段名为 ttlInSeconds
。
create
相关链接
- Basic schema for a Dapr component
- Bindings building block
- 如何通过 input binding 触发应用
- How-To:使用绑定与外部资源进行交互
- 绑定API 参考
- Authenticating to AWS
Last modified January 1, 0001