English 中文(简体)
最佳做法: 亚马孙S3 湿租赁
原标题:Best practice: AmazonS3 url sharing

我计划把查阅亚马孙3号档案作为私人文件。 但我要向人数有限的人群介绍URL案。

建议采取什么方法这样做?

最佳回答

仅创设一个 签名,时间有限,与他们分享。

You could also look at using AWS Identity and Access Management (IAM) (currently in Beta) for other ways to control access. But, honestly, querystring authentication is going to be the simplest to implement and should be fine for the majority of use cases.

问题回答

暂无回答




相关问题
Is this a standard C++ code?

The following simple piece of code, compiles with VC2008 but g++ rejects the code: #include <iostream> class myclass { protected: void print() { std::cout << "myclass::print();"; } };...

What is the best practice for formatting logs?

I m writing a piece of honeypot software that will have extensive logging of interactions with it, I plan to log in plaintext .log files. I have two questions, from someone who isn t too familiar ...

Should I keep the package name when extending a class?

I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich Should the extended class be in the same package structure: oracle.adfinternal.view.faces.renderkit....

Why doesnt Regex.Match have a GetEnumerator function?

Regex.Match has a .Success and .NextMatch why doesnt it have a GetEnumerator function? With my logic it seems easy enough to implement. But it isnt in 3.5 so can anyone tell me why not? foreach (...

How are you using C++11 today? [closed]

This is a question in two parts, the first is the most important and concerns now: Are you following the design and evolution of C++11? What blogs, newsgroups, committee papers, and other resources ...

subexpressions evaluation order

I ve looked at SO/IEC 9899:201x under J.1 Unspecified behavior: "The order in which subexpressions are evaluated and the order in which side effects take place, except as specified for the function-...

Lower Bounds For Floating Points

Are there any lower bounds for floating point types in C? Like there are lower bounds for integral types (int being at least 16 bits)?

热门标签