Struct: types.NoSuchUpload

import "../ibm-cos-sdk-go-v2/service/s3/types"

Implemented Interfaces

types.AnalyticsFilter, v4.HTTPPresigner, s3.HTTPPresignerV4, types.MetricsFilter, s3.PresignPost, arn.S3ObjectLambdaARN, types.SelectObjectContentEventStream

Method Summary collapse

Method Details

func (e *NoSuchUpload) Error() string



258
259
260
// File 'service/s3/types/errors.go', line 258

func (e *NoSuchUpload) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) }

func (e *NoSuchUpload) ErrorCode() string



267
268
269
270
271
272
// File 'service/s3/types/errors.go', line 267

func (e *NoSuchUpload) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "NoSuchUpload" } return *e.ErrorCodeOverride }

func (e *NoSuchUpload) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }



273
274
275
276
277
278
279
280
281
282
// File 'service/s3/types/errors.go', line 273

func (e *NoSuchUpload) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified content does not exist. type NotFound struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde }

func (e *NoSuchUpload) ErrorMessage() string



261
262
263
264
265
266
// File 'service/s3/types/errors.go', line 261

func (e *NoSuchUpload) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message }