Struct: types.XksProxyIncorrectAuthenticationCredentialException
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
1213
1214
1215
|
// File 'service/kms/types/errors.go', line 1213
func (e *XksProxyIncorrectAuthenticationCredentialException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
1222
1223
1224
1225
1226
1227
|
// File 'service/kms/types/errors.go', line 1222
func (e *XksProxyIncorrectAuthenticationCredentialException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksProxyIncorrectAuthenticationCredentialException"
}
return *e.ErrorCodeOverride
}
|
1228
1229
1230
|
// File 'service/kms/types/errors.go', line 1228
func (e *XksProxyIncorrectAuthenticationCredentialException) ErrorFault() smithy.ErrorFault {
return smithy.FaultClient
}
|
1216
1217
1218
1219
1220
1221
|
// File 'service/kms/types/errors.go', line 1216
func (e *XksProxyIncorrectAuthenticationCredentialException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|