dougongyou7364 2014-10-21 10:14
浏览 14
已采纳

在golang中,ec2.CreateSecurityGroup中的名称类型是什么

I am using CreateSecurityGroup func in golang using goamz. Below is the function signature:

func (ec2 *EC2) CreateSecurityGroup(name, description string) (resp *CreateSecurityGroupResp, err error)

What type does the argument name have in this argument list?

  • 写回答

1条回答 默认 最新

  • dongnang8192 2014-10-21 10:41
    关注

    The spec for function of method signature allows for parameters to use an IdentifierList for one type:

    ParameterDecl  = [ IdentifierList ] [ "..." ] Type .
    
    • name, description is the identifier list.
    • string is the type which applies to that list.

    You have the same feature for variable declaration:

    var U, V, W float64
    

    All three variables have the same type float64.


    Note: a more recent version of the goamz source code shows that same method with a different parameter: see commit 04a8dd3

    func (ec2 *EC2) CreateSecurityGroup(group SecurityGroup)
      (resp *CreateSecurityGroupResp, err error) {...
    

    with:

    type SecurityGroup struct {
        Id string `xml:"groupId"`   + Id string `xml:"groupId"`
        Name string `xml:"groupName"`   + Name string `xml:"groupName"`
        Description string `xml:"groupDescription"`
        VpcId string `xml:"vpcId"`
    }
    

    This is typical when the number of potential parameters grows: you wrap them in a struct.

    It is used in this test:

    resp, err := 
      s.ec2.CreateSecurityGroup(ec2.SecurityGroup{Name: "websrv", 
                                                  Description: "Web Servers"})
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题