Struct: types.CloudHsmClusterNotFoundException
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
171
172
173
|
// File 'service/kms/types/errors.go', line 171
func (e *CloudHsmClusterNotFoundException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
180
181
182
183
184
185
|
// File 'service/kms/types/errors.go', line 180
func (e *CloudHsmClusterNotFoundException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "CloudHsmClusterNotFoundException"
}
return *e.ErrorCodeOverride
}
|
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
// File 'service/kms/types/errors.go', line 186
func (e *CloudHsmClusterNotFoundException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
//
//
//
type CloudHsmClusterNotRelatedException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
174
175
176
177
178
179
|
// File 'service/kms/types/errors.go', line 174
func (e *CloudHsmClusterNotFoundException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|