Struct: types.NotFound

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



284
285
286
// File 'service/s3/types/errors.go', line 284

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

func (e *NotFound) ErrorCode() string



293
294
295
296
297
298
// File 'service/s3/types/errors.go', line 293

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

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



299
300
301
302
303
304
305
306
307
308
// File 'service/s3/types/errors.go', line 299

func (e *NotFound) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // This action is not allowed against this storage tier. type ObjectAlreadyInActiveTierError struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde }

func (e *NotFound) ErrorMessage() string



287
288
289
290
291
292
// File 'service/s3/types/errors.go', line 287

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