Update AWS SDK to 1.12.7

Fix #54032
This commit is contained in:
Justin Santa Barbara
2017-10-07 13:39:32 -04:00
parent 57f6c9dd39
commit 330c10af13
118 changed files with 25360 additions and 8183 deletions

12
vendor/github.com/aws/aws-sdk-go/aws/url.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +build go1.8
package aws
import "net/url"
// URLHostname will extract the Hostname without port from the URL value.
//
// Wrapper of net/url#URL.Hostname for backwards Go version compatibility.
func URLHostname(url *url.URL) string {
return url.Hostname()
}