Struct: types.XksProxyUriEndpointInUseException
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
1302
1303
1304
|
// File 'service/kms/types/errors.go', line 1302
func (e *XksProxyUriEndpointInUseException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
1311
1312
1313
1314
1315
1316
|
// File 'service/kms/types/errors.go', line 1311
func (e *XksProxyUriEndpointInUseException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksProxyUriEndpointInUseException"
}
return *e.ErrorCodeOverride
}
|
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
|
// File 'service/kms/types/errors.go', line 1317
func (e *XksProxyUriEndpointInUseException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
type XksProxyUriInUseException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
1305
1306
1307
1308
1309
1310
|
// File 'service/kms/types/errors.go', line 1305
func (e *XksProxyUriEndpointInUseException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|