Struct: types.XksKeyInvalidConfigurationException
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
1147
1148
1149
|
// File 'service/kms/types/errors.go', line 1147
func (e *XksKeyInvalidConfigurationException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
1156
1157
1158
1159
1160
1161
|
// File 'service/kms/types/errors.go', line 1156
func (e *XksKeyInvalidConfigurationException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksKeyInvalidConfigurationException"
}
return *e.ErrorCodeOverride
}
|
1162
1163
1164
|
// File 'service/kms/types/errors.go', line 1162
func (e *XksKeyInvalidConfigurationException) ErrorFault() smithy.ErrorFault {
return smithy.FaultClient
}
|
1150
1151
1152
1153
1154
1155
|
// File 'service/kms/types/errors.go', line 1150
func (e *XksKeyInvalidConfigurationException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|