// Code generated by smithy-go-codegen DO NOT EDIT. package types import ( "fmt" smithy "github.com/aws/smithy-go" ) // Secrets Manager can't decrypt the protected secret text using the provided KMS // key. type DecryptionFailure struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *DecryptionFailure) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *DecryptionFailure) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *DecryptionFailure) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "DecryptionFailure" } return *e.ErrorCodeOverride } func (e *DecryptionFailure) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Secrets Manager can't encrypt the protected secret text using the provided KMS // key. Check that the KMS key is available, enabled, and not in an invalid state. // For more information, see Key state: Effect on your KMS key (https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html) // . type EncryptionFailure struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *EncryptionFailure) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *EncryptionFailure) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *EncryptionFailure) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "EncryptionFailure" } return *e.ErrorCodeOverride } func (e *EncryptionFailure) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // An error occurred on the server side. type InternalServiceError struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InternalServiceError) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InternalServiceError) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InternalServiceError) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InternalServiceError" } return *e.ErrorCodeOverride } func (e *InternalServiceError) ErrorFault() smithy.ErrorFault { return smithy.FaultServer } // The NextToken value is invalid. type InvalidNextTokenException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidNextTokenException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidNextTokenException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidNextTokenException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidNextTokenException" } return *e.ErrorCodeOverride } func (e *InvalidNextTokenException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The parameter name or value is invalid. type InvalidParameterException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *InvalidParameterException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *InvalidParameterException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *InvalidParameterException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "InvalidParameterException" } return *e.ErrorCodeOverride } func (e *InvalidParameterException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A parameter value is not valid for the current state of the resource. Possible // causes: // - The secret is scheduled for deletion. // - You tried to enable rotation on a secret that doesn't already have a Lambda // function ARN configured and you didn't include such an ARN as a parameter in // this call. // - The secret is managed by another service, and you must use that service to // update it. For more information, see Secrets managed by other Amazon Web // Services services (https://docs.aws.amazon.com/secretsmanager/latest/userguide/service-linked-secrets.html) // . 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 } // The request failed because it would exceed one of the Secrets Manager quotas. type LimitExceededException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *LimitExceededException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *LimitExceededException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *LimitExceededException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "LimitExceededException" } return *e.ErrorCodeOverride } func (e *LimitExceededException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The resource policy has syntax errors. type MalformedPolicyDocumentException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *MalformedPolicyDocumentException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *MalformedPolicyDocumentException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *MalformedPolicyDocumentException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "MalformedPolicyDocumentException" } return *e.ErrorCodeOverride } func (e *MalformedPolicyDocumentException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The request failed because you did not complete all the prerequisite steps. type PreconditionNotMetException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *PreconditionNotMetException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *PreconditionNotMetException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *PreconditionNotMetException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "PreconditionNotMetException" } return *e.ErrorCodeOverride } func (e *PreconditionNotMetException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // The BlockPublicPolicy parameter is set to true, and the resource policy did not // prevent broad access to the secret. type PublicPolicyException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *PublicPolicyException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *PublicPolicyException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *PublicPolicyException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "PublicPolicyException" } return *e.ErrorCodeOverride } func (e *PublicPolicyException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // A resource with the ID you requested already exists. type ResourceExistsException struct { Message *string ErrorCodeOverride *string noSmithyDocumentSerde } func (e *ResourceExistsException) Error() string { return fmt.Sprintf("%s: %s", e.ErrorCode(), e.ErrorMessage()) } func (e *ResourceExistsException) ErrorMessage() string { if e.Message == nil { return "" } return *e.Message } func (e *ResourceExistsException) ErrorCode() string { if e == nil || e.ErrorCodeOverride == nil { return "ResourceExistsException" } return *e.ErrorCodeOverride } func (e *ResourceExistsException) ErrorFault() smithy.ErrorFault { return smithy.FaultClient } // Secrets Manager can't find the resource that you asked for. 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 }