mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-23 18:00:32 +08:00
21 lines
548 B
Go
21 lines
548 B
Go
package api_struct
|
|
|
|
type AwsStorageCredentialReq struct {
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type AwsStorageCredentialRespData struct {
|
|
AccessKeyId string `json:"accessKeyID"`
|
|
SecretAccessKey string `json:"secretAccessKey"`
|
|
SessionToken string `json:"sessionToken"`
|
|
RegionID string `json:"regionId"`
|
|
Bucket string `json:"bucket"`
|
|
FinalHost string `json:"FinalHost"`
|
|
}
|
|
|
|
type AwsStorageCredentialResp struct {
|
|
CommResp
|
|
CosData AwsStorageCredentialRespData
|
|
Data map[string]interface{} `json:"data"`
|
|
}
|