dongliuzi3410 2018-07-05 11:16
浏览 52
已采纳

将输出字符串转换为使用golang映射

Get the output as

 {
   ARN: "arn:aws:secretsmanager:us-east-2:xxxx:secret:team_dev-Xhzkt6",
   CreatedDate: 2018-07-05 06:50:07 +0000 UTC,
   Name: "team_dev",
   SecretString: "{\"password\":\"test\"}",
   VersionId: "6b65bfe4-7908-474b-9ae6-xxxx",
   VersionStages: ["AWSCURRENT"]
 }

Try to get the value as map with the key SecretString

d.Set("secret_string", output.SecretString)

How can I get it as Schema TypeMap?

With jq, I can easily get it, but not sure how to do this in golang.

Updates

Thanks, @mkopriva

in the aws sdk (github.com/aws/aws-sdk-go/service/secretsmanager/api.go), output (GetSecretValueOutput) is defined as type:"structure"

type GetSecretValueOutput struct {
        _ struct{} `type:"structure"`

And thanks again to provide a test code, I will try it.

package main

import (
    "fmt"
    "encoding/json"
)

func main() {
    secretString := "{\"password\":\"test\"}"

    sec := map[string]interface{}{}
    if err := json.Unmarshal([]byte(secretString), &sec); err != nil {
        panic(err)
    }
    fmt.Println(sec)
}
  • 写回答

1条回答 默认 最新

  • donglianer5064 2018-07-05 12:54
    关注

    @mkopriva

    Thanks, please answer this question, so I can vote and accept it.

    With your sample code, I did fix the issue.

    -       d.Set("secret_string", output.SecretString)
    +       var sec map[string]interface{}
    +       if err = json.Unmarshal([]byte(*output.SecretString), &sec); err != nil {
    +               return err
    +       }
    +       d.Set("secret_string", sec)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 模电中二极管,三极管和电容的应用
  • ¥15 关于模型导入UNITY的.FBX: Check external application preferences.警告。
  • ¥15 气象网格数据与卫星轨道数据如何匹配
  • ¥100 java ee ssm项目 悬赏,感兴趣直接联系我
  • ¥15 微软账户问题不小心注销了好像
  • ¥15 x264库中预测模式字IPM、运动向量差MVD、量化后的DCT系数的位置
  • ¥15 curl 命令调用正常,程序调用报 java.net.ConnectException: connection refused
  • ¥20 关于web前端如何播放二次加密m3u8视频的问题
  • ¥15 使用百度地图api 位置函数报错?
  • ¥15 metamask如何添加TRON自定义网络