Struct: types.KMSInternalException
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
855
856
857
|
// File 'service/kms/types/errors.go', line 855
func (e *KMSInternalException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
864
865
866
867
868
869
|
// File 'service/kms/types/errors.go', line 864
func (e *KMSInternalException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "KMSInternalException"
}
return *e.ErrorCodeOverride
}
|
func (e *KMSInternalException) ErrorFault() smithy.ErrorFault { return smithy.FaultServer }
870
871
872
873
874
875
876
877
878
879
880
881
|
// File 'service/kms/types/errors.go', line 870
func (e *KMSInternalException) ErrorFault() smithy.ErrorFault { return smithy.FaultServer }
type KMSInvalidMacException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
858
859
860
861
862
863
|
// File 'service/kms/types/errors.go', line 858
func (e *KMSInternalException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|