Struct: types.ObjectNotInActiveTierError

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 *ObjectNotInActiveTierError) Error() string



337
338
339
// File 'service/s3/types/errors.go', line 337

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

func (e *ObjectNotInActiveTierError) ErrorCode() string



346
347
348
349
350
351
// File 'service/s3/types/errors.go', line 346

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

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



352
353
354
355
356
357
358
359
360
361
362
363
364
// File 'service/s3/types/errors.go', line 352

func (e *ObjectNotInActiveTierError) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // You have attempted to add more parts than the maximum of 10000 that are // // allowed for this object. You can use the CopyObject operation to copy this // object to another and then add more data to the newly copied object. type TooManyParts struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde }

func (e *ObjectNotInActiveTierError) ErrorMessage() string



340
341
342
343
344
345
// File 'service/s3/types/errors.go', line 340

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