Struct: types.TooManyParts
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
366
367
368
|
// File 'service/s3/types/errors.go', line 366
func (e *TooManyParts) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
375
376
377
378
379
380
|
// File 'service/s3/types/errors.go', line 375
func (e *TooManyParts) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "TooManyParts"
}
return *e.ErrorCodeOverride
}
|
func (e *TooManyParts) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
381
|
// File 'service/s3/types/errors.go', line 381
func (e *TooManyParts) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
|
369
370
371
372
373
374
|
// File 'service/s3/types/errors.go', line 369
func (e *TooManyParts) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|