Struct: types.LimitExceededException
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
982
983
984
|
// File 'service/kms/types/errors.go', line 982
func (e *LimitExceededException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
991
992
993
994
995
996
|
// File 'service/kms/types/errors.go', line 991
func (e *LimitExceededException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "LimitExceededException"
}
return *e.ErrorCodeOverride
}
|
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
|
// File 'service/kms/types/errors.go', line 997
func (e *LimitExceededException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
type MalformedPolicyDocumentException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
985
986
987
988
989
990
|
// File 'service/kms/types/errors.go', line 985
func (e *LimitExceededException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|