gpt4 book ai didi

java - AWS Lambda Java,写入 S3 存储桶

转载 作者:行者123 更新时间:2023-11-30 08:37:48 25 4
gpt4 key购买 nike

我正在创建每月运行一次的 AWS Lambda 函数。每个月处理一些数据并将其写回 S3 存储桶。

您知道如何将文件从 AWS Lambda Java 写入 S3 存储桶吗?

最佳答案

是的,您必须在 S3 存储桶中创建一个文本文件,并引用以下代码根据您的要求更新文件内容。

AmazonS3 client = new AmazonS3Client();
/**
* @param bucketName
* The name of the bucket to place the new object in.
* @param key
* The key of the object to create.
* @param content
* The String to encode
*/
client.putObject("**Bucket Name**", "**File Name to write**", "updated string contents");

关于java - AWS Lambda Java,写入 S3 存储桶,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36940291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com