Struct: types.InvalidMarkerException
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
801
802
803
|
// File 'service/kms/types/errors.go', line 801
func (e *InvalidMarkerException) Error() string {
return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage())
}
|
810
811
812
813
814
815
|
// File 'service/kms/types/errors.go', line 810
func (e *InvalidMarkerException) ErrorCode() string {
if e == nil || e.ErrorCodeOverride == nil {
return "InvalidMarkerException"
}
return *e.ErrorCodeOverride
}
|
816
817
818
819
820
821
822
823
824
825
826
|
// File 'service/kms/types/errors.go', line 816
func (e *InvalidMarkerException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }
type KeyUnavailableException struct {
Message *string
ErrorCodeOverride *string
noSmithyDocumentSerde
}
|
804
805
806
807
808
809
|
// File 'service/kms/types/errors.go', line 804
func (e *InvalidMarkerException) ErrorMessage() string {
if e.Message == nil {
return ""
}
return *e.Message
}
|