2023年5月30日星期二。
網頁
▼
2023/5/30
2023/5/29
Golang 跳脫格式化字串百分比符號 % escapse format string percent sign
Go格式化字串時(e.g. fmt.Printf
、fmt.Sprintf
)使用特殊符號如%v
、%s
、%d
來填入變數。若格式化字串中需要%
的實字(literal percent sign),則使用%%
。
2023/5/28
2023/5/27
2023/5/26
2023/5/25
2023/5/24
2023/5/23
2023/5/22
2023/5/21
2023/5/20
2023/5/19
GCP SDK API資源操作時找不到資源的錯誤訊息 resource operation not found error message
以GCP的SDK或API操作雲端資源時,找不到資源時回應的錯誤訊息。
2023/5/15
2023/5/14
2023/5/13
2023/5/12
Visual Studio Code Go No implementation found 錯誤
在VS Code編輯Go程式時,將游標移到介面方法名稱上按滑鼠右鍵選擇[Go to Implementations]要跳轉到實作方法時,在確實有實作方法卻跳出"No implementation found"訊息。
2023/5/11
Golang 刪除AWS S3 bucket access point policy
Go以AWS SDK aws-sdk-go-v2
來刪除S3 bucket access point的policy。
2023/5/10
AWS S3 bucket access point Object URL InvalidRequest - Please use Signature Version 4
在瀏覽器點選AWS S3 bucket access point的object的[Object URL]出現錯誤InvalidRequest
,錯誤訊息The authorization mechanism you have provided is not supported. Please use Signature Version 4.
。
2023/5/9
AWS S3 bucket access point policy Resource 格式
AWS S3 bucket的access point的policy的Resource
格式為。
arn:aws:s3:<REGION>:<ACCOUNT>:accesspoint/<ACCESS_POINT_NAME>/object/*
。
2023/5/8
2023/5/7
2023/5/6
AWS IAM policy JSON Version元素作用?
在撰寫AWS IAM policy時,例如S3 bucket policy的JSON,裡面的Version
元素(element)的作用為說明目前的policy語言(policy language)的版本,目前固定填2012-10-17
即可,只會有一個,同常是policy JSON的第一個元素。