Struct: types.XksProxyVpcEndpointServiceInvalidConfigurationException
import "../ibm-cos-sdk-go-v2/service/kms/types"
Overview
The request was rejected because the Amazon VPC endpoint service configuration does not fulfill the requirements for an external key store. To identify the cause, see the error message that accompanies the exception and the requirements[https://docs.aws.amazon.com/kms/latest/developerguide/vpc-connectivity.html#xks-vpc-requirements]for Amazon VPC endpoint service connectivity for an external key store.
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
1424
1425
1426
|
// File 'service/kms/types/errors.go', line 1424
func (e *XksProxyVpcEndpointServiceInvalidConfigurationException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
1433
1434
1435
1436
1437
1438
|
// File 'service/kms/types/errors.go', line 1433
func (e *XksProxyVpcEndpointServiceInvalidConfigurationException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "XksProxyVpcEndpointServiceInvalidConfigurationException"
}
return *e.ErrorCodeOverride
}
|
1439
1440
1441
|
// File 'service/kms/types/errors.go', line 1439
func (e *XksProxyVpcEndpointServiceInvalidConfigurationException) ErrorFault() smithy.ErrorFault {
return smithy.FaultClient
}
|
1427
1428
1429
1430
1431
1432
|
// File 'service/kms/types/errors.go', line 1427
func (e *XksProxyVpcEndpointServiceInvalidConfigurationException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|