查看PDF

复制对象

更新时间: 2019-03-13 10:26

功能说明

为指定桶中的对象创建一个副本。

方法定义

  1. func (obsClient ObsClient) CopyObject(input *CopyObjectInput) (output *CopyObjectOutput, err error)

使用带授权信息URL的方法定义

  1. func (obsClient ObsClient) CopyObjectWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header) (output *CopyObjectOutput, err error)

请求参数


参数名

类型

约束

input

*CopyObjectInput

必选

返回结果


参数名

类型

output

*CopyObjectOutput

err

error

代码样例

  1. func main() {
  2. input := &obs.CopyObjectInput{}
  3. input.Bucket = "bucketname"
  4. input.Key = "objectkey"
  5. input.CopySourceBucket = "sourcebucketname"
  6. input.CopySourceKey = "sourceobjectkey"
  7. output, err := obsClient.CopyObject(input)
  8. if err == nil {
  9. fmt.Printf("RequestId:%s\n", output.RequestId)
  10. fmt.Printf("ETag:%s, LastModified:%s\n",
  11. output.ETag, output.LastModified)
  12. } else {
  13. if obsError, ok := err.(obs.ObsError); ok {
  14. fmt.Println(obsError.Code)
  15. fmt.Println(obsError.Message)
  16. } else {
  17. fmt.Println(err)
  18. }
  19. }
  20. }

父主题:对象相关接口