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 Details
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())
}
|
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 }
type NotFound struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
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
}
|