github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil.XMLNode.Name (field)

10 uses

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil (current package)
		build.go#L312: 		current.AddChild(&XMLNode{Name: xname, Text: str})
		xml_to_struct.go#L12: 	Name     xml.Name              `json:",omitempty"`
		xml_to_struct.go#L24: 		Name:     name,
		xml_to_struct.go#L33: 	if _, ok := n.Children[child.Name.Local]; !ok {
		xml_to_struct.go#L34: 		n.Children[child.Name.Local] = []*XMLNode{}
		xml_to_struct.go#L36: 	n.Children[child.Name.Local] = append(n.Children[child.Name.Local], child)
		xml_to_struct.go#L76: 			node.Name = typed.Name
		xml_to_struct.go#L133: 	e.EncodeToken(xml.StartElement{Name: node.Name, Attr: attrs})
		xml_to_struct.go#L157: 	e.EncodeToken(xml.EndElement{Name: node.Name})