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?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南