第 32 章 AWS S3 Storage Service 组件
从 Camel 版本 2.8 开始提供
S3 组件支持从/到 Amazon 的 S3 服务存储和检索 objetcs。
先决条件
您必须拥有有效的 Amazon Web Services 开发人员帐户,并有权限使用 Amazon S3。如需更多信息,请参阅 Amazon S3。
32.1. URI 格式
aws-s3://bucketNameOrArn[?options]
如果存储桶不存在,则会创建存储桶。
您可以在 URI 中附加查询选项,格式为 ?options=value&option2=value&…
例如,要从存储桶 helloBucket
读取文件 hello.txt
,请使用以下片断:
from("aws-s3:helloBucket?accessKey=yourAccessKey&secretKey=yourSecretKey&prefix=hello.txt") .to("file:/var/downloaded");