コード例 #1
0
ファイル: param_filler.go プロジェクト: datacratic/aws-sdk-go
func (f paramFiller) typeName(shape *api.Shape) string {
	if f.prefixPackageName && shape.Type == "structure" {
		return "*" + shape.API.PackageName() + "." + shape.GoTypeElem()
	} else {
		return shape.GoType()
	}
}