// Code generated by smithy-go-codegen DO NOT EDIT. package types import ( "fmt" smithy "github.com/aws/smithy-go" ) // The certificate is invalid. type CertificateValidationException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *CertificateValidationException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *CertificateValidationException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *CertificateValidationException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "CertificateValidationException" } return *e.ErrorCodeOverride } func (e *CertificateValidationException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The contents of the request were invalid. For example, this code is returned // when an UpdateJobExecution request contains invalid status details. The message // contains details about the error. type InvalidRequestException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidRequestException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidRequestException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidRequestException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidRequestException" } return *e.ErrorCodeOverride } func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // An update attempted to change the job execution to a state that is invalid // because of the job execution's current state (for example, an attempt to change // a request in state SUCCESS to state IN_PROGRESS). In this case, the body of the // error message also contains the executionState field. type InvalidStateTransitionException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidStateTransitionException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidStateTransitionException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidStateTransitionException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidStateTransitionException" } return *e.ErrorCodeOverride } func (e *InvalidStateTransitionException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The specified resource does not exist. type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ResourceNotFoundException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ResourceNotFoundException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ResourceNotFoundException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ResourceNotFoundException" } return *e.ErrorCodeOverride } func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The service is temporarily unavailable. type ServiceUnavailableException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ServiceUnavailableException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ServiceUnavailableException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ServiceUnavailableException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ServiceUnavailableException" } return *e.ErrorCodeOverride } func (e *ServiceUnavailableException) ErrorFault() smithy.ErrorFault { return smithy.FaultServer } // The job is in a terminal state. type TerminalStateException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *TerminalStateException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *TerminalStateException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *TerminalStateException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "TerminalStateException" } return *e.ErrorCodeOverride } func (e *TerminalStateException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The rate exceeds the limit. type ThrottlingException struct { Message *string ErrorCodeOverride *string Payload []byte noSmithyDocumentSerde } func (e *ThrottlingException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ThrottlingException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ThrottlingException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ThrottlingException" } return *e.ErrorCodeOverride } func (e *ThrottlingException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient }