Struct: types.XksProxyVpcEndpointServiceNotFoundException
import "../ibm-cos-sdk-go-v2/service/kms/types"
Overview
The request was rejected because KMS could not find the specified VPC endpoint
service. Use DescribeCustomKeyStoresto verify the VPC endpoint service name for the external key
store. Also, confirm that the Allow principals list for the VPC endpoint
service includes the KMS service principal for the Region, such as
cks.kms.us-east-1.amazonaws.com .
Implemented Interfaces
types.AnalyticsFilter, v4.HTTPPresigner, s3.HTTPPresignerV4, types.MetricsFilter, s3.PresignPost, arn.S3ObjectLambdaARN, types.SelectObjectContentEventStream
Structure Field Summary
collapse
Structure Field Details
ErrorCodeOverride *string
Message *string
Method Details
func (e *XksProxyVpcEndpointServiceNotFoundException) Error() string
1456
1457
1458
|
// File 'service/kms/types/errors.go', line 1456
func (e *XksProxyVpcEndpointServiceNotFoundException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorCode() string
1465
1466
1467
1468
1469
1470
|
// File 'service/kms/types/errors.go', line 1465
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksProxyVpcEndpointServiceNotFoundException"
}
return *e.ErrorCodeOverride
}
|
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorFault() smithy.ErrorFault
1471
1472
1473
|
// File 'service/kms/types/errors.go', line 1471
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorFault() smithy.ErrorFault {
return smithy.FaultClient
}
|
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorMessage() string
1459
1460
1461
1462
1463
1464
|
// File 'service/kms/types/errors.go', line 1459
func (e *XksProxyVpcEndpointServiceNotFoundException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|