Amplify.Storage.getUrl Security Token expiry date

0

Is there any expiry date of the security token present in the URL which I got through:

Amplify.Storage.getUrl(
    "ExampleKey",
    result -> Log.i("MyAmplifyApp", "Successfully generated: " + result.getUrl()),
    error -> Log.e("MyAmplifyApp", "URL generation failure", error)
);

I'm asking this because I want to hardcode the URL in my post model of graphql schema

Second question: is it good to hardcode the URL? I'm worried because recently the s3 object URL format got deprecated.

Update (September 23, 2020) – Over the last year, we’ve heard feedback from many customers who have asked us to extend the deprecation date. Based on this feedback we have decided to delay the deprecation of path-style URLs to ensure that customers have the time that they need to transition to virtual hosted-style URLs.

Like this one day, virtual hosted-style URLs might be deprecated

1 回答
1
已接受的回答

Hi there, You can use expires option in the Storage.get[1] call but the maximum time is seven days[2]. So you might not want to persist that. Typically we recommend to generate the presigned URLs only when you want to download the object.

AWS
Clay_B
已回答 1 年前
  • Then how to access urls? should I make my bucket completely public?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则