Следующий ответ был возвращен с сервера S3:
<Error>
<Code>BucketAlreadyOwnedByYou</Code>
<Message>Your previous request to create the named bucket succeeded and you already own it.</Message>
<BucketName>newbucket</BucketName>
<Resource>/newbucket</Resource>
<RequestId>15C79B745D6D5C78</RequestId>
<HostId>1c8c1a3a-fe7a-472a-a401-b57d6997aa9e</HostId>
</Error>
Как получить ответ xml от сервера S3 с помощью aws-sdk-go
при получении ошибки?Мне нужен весь ответ xml.
func createBucket(s *s3.S3) {
out, err := s.CreateBucket(&s3.CreateBucketInput{
Bucket: aws.String("newbucket"),
})
}
Недостаточно использовать err
в моем случае.
Спасибо, что уделили время.