Struct: types.DisabledException
import "../ibm-cos-sdk-go-v2/service/kms/types"
Implemented Interfaces
types.AnalyticsFilter, v4.HTTPPresigner, s3.HTTPPresignerV4, types.MetricsFilter, s3.PresignPost, arn.S3ObjectLambdaARN, types.SelectObjectContentEventStream
Method Details
427
428
429
|
// File 'service/kms/types/errors.go', line 427
func (e *DisabledException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
436
437
438
439
440
441
|
// File 'service/kms/types/errors.go', line 436
func (e *DisabledException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "DisabledException"
}
return *e.ErrorCodeOverride
}
|
func (e *DisabledException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
442
443
444
445
446
447
448
449
450
451
|
// File 'service/kms/types/errors.go', line 442
func (e *DisabledException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
type DryRunOperationException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
430
431
432
433
434
435
|
// File 'service/kms/types/errors.go', line 430
func (e *DisabledException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|