Struct: types.XksProxyUriInUseException
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
1331
1332
1333
|
// File 'service/kms/types/errors.go', line 1331
func (e *XksProxyUriInUseException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
1340
1341
1342
1343
1344
1345
|
// File 'service/kms/types/errors.go', line 1340
func (e *XksProxyUriInUseException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksProxyUriInUseException"
}
return *e.ErrorCodeOverride
}
|
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
|
// File 'service/kms/types/errors.go', line 1346
func (e *XksProxyUriInUseException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
//
type XksProxyUriUnreachableException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
1334
1335
1336
1337
1338
1339
|
// File 'service/kms/types/errors.go', line 1334
func (e *XksProxyUriInUseException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|