我是 AWS 新手。现在我想编写一个 java 代码来使用 CloudFront 来访问一个 s3。
我创建了一个 S3 存储桶。但我不知道如何使用 S3 凭据获取云端对象。
我看了AWS JAVA API,看来代码应该是这样的形式:
AmazonCloudFrontClient cloudfront = new AmazonCloudFrontClient(credentials);
CreateCloudFrontOriginAccessIdentityRequest originRequest = new CreateCloudFrontOriginAccessIdentityRequest();
originRequest.setRequestCredentials(credentials);
cloudfront.createCloudFrontOriginAccessIdentity(originRequest);
但我没有看到 S3ID 或将 S3 设置为云端的东西。