Struct: types.InvalidCiphertextException
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
654
655
656
|
// File 'service/kms/types/errors.go', line 654
func (e *InvalidCiphertextException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
663
664
665
666
667
668
|
// File 'service/kms/types/errors.go', line 663
func (e *InvalidCiphertextException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "InvalidCiphertextException"
}
return *e.ErrorCodeOverride
}
|
669
670
671
672
673
674
675
676
677
678
|
// File 'service/kms/types/errors.go', line 669
func (e *InvalidCiphertextException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
type InvalidGrantIdException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
657
658
659
660
661
662
|
// File 'service/kms/types/errors.go', line 657
func (e *InvalidCiphertextException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|