Struct: types.CloudHsmClusterNotRelatedException
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
210
211
212
|
// File 'service/kms/types/errors.go', line 210
func (e *CloudHsmClusterNotRelatedException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
219
220
221
222
223
224
|
// File 'service/kms/types/errors.go', line 219
func (e *CloudHsmClusterNotRelatedException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "CloudHsmClusterNotRelatedException"
}
return *e.ErrorCodeOverride
}
|
225
226
227
|
// File 'service/kms/types/errors.go', line 225
func (e *CloudHsmClusterNotRelatedException) ErrorFault() smithy.ErrorFault {
return smithy.FaultClient
}
|
213
214
215
216
217
218
|
// File 'service/kms/types/errors.go', line 213
func (e *CloudHsmClusterNotRelatedException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|