Enum rusoto_lambda::CreateFunctionError [−][src]
pub enum CreateFunctionError {
CodeStorageExceeded(String),
InvalidParameterValue(String),
ResourceConflict(String),
ResourceNotFound(String),
Service(String),
TooManyRequests(String),
HttpDispatch(HttpDispatchError),
Credentials(CredentialsError),
Validation(String),
Unknown(String),
}Errors returned by CreateFunction
Variants
CodeStorageExceeded(String)You have exceeded your maximum total code size per account. Limits
InvalidParameterValue(String)One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the CreateFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.
ResourceConflict(String)The resource already exists.
ResourceNotFound(String)The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.
Service(String)The AWS Lambda service encountered an internal error.
TooManyRequests(String)
HttpDispatch(HttpDispatchError)An error occurred dispatching the HTTP request
Credentials(CredentialsError)An error was encountered with AWS credentials.
Validation(String)A validation error occurred. Details from AWS are provided.
Unknown(String)An unknown error occurred. The raw HTTP response is provided.
Methods
impl CreateFunctionError[src]
impl CreateFunctionErrorpub fn from_body(body: &str) -> CreateFunctionError[src]
pub fn from_body(body: &str) -> CreateFunctionErrorTrait Implementations
impl Debug for CreateFunctionError[src]
impl Debug for CreateFunctionErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CreateFunctionError[src]
impl PartialEq for CreateFunctionErrorfn eq(&self, other: &CreateFunctionError) -> bool[src]
fn eq(&self, other: &CreateFunctionError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CreateFunctionError) -> bool[src]
fn ne(&self, other: &CreateFunctionError) -> boolThis method tests for !=.
impl From<Error> for CreateFunctionError[src]
impl From<Error> for CreateFunctionErrorfn from(err: Error) -> CreateFunctionError[src]
fn from(err: Error) -> CreateFunctionErrorPerforms the conversion.
impl From<CredentialsError> for CreateFunctionError[src]
impl From<CredentialsError> for CreateFunctionErrorfn from(err: CredentialsError) -> CreateFunctionError[src]
fn from(err: CredentialsError) -> CreateFunctionErrorPerforms the conversion.
impl From<HttpDispatchError> for CreateFunctionError[src]
impl From<HttpDispatchError> for CreateFunctionErrorfn from(err: HttpDispatchError) -> CreateFunctionError[src]
fn from(err: HttpDispatchError) -> CreateFunctionErrorPerforms the conversion.
impl From<Error> for CreateFunctionError[src]
impl From<Error> for CreateFunctionErrorfn from(err: Error) -> CreateFunctionError[src]
fn from(err: Error) -> CreateFunctionErrorPerforms the conversion.
impl Display for CreateFunctionError[src]
impl Display for CreateFunctionErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for CreateFunctionError[src]
impl Error for CreateFunctionErrorAuto Trait Implementations
impl Send for CreateFunctionError
impl Send for CreateFunctionErrorimpl Sync for CreateFunctionError
impl Sync for CreateFunctionError