moto icon indicating copy to clipboard operation
moto copied to clipboard

A library that allows you to easily mock out tests based on AWS infrastructure.

Results 248 moto issues
Sort by recently updated
recently updated
newest added

## Reporting Bugs When calling `run_job_flow` with `AutoTerminationPolicy` as a parameter like. `{"IdleTimeout" : 123} `causes a TypeError with Exception TypeError: Unknown type long. However AutoTerminationPolicy expect a dict with...

bug

It looks like the [S3 select](https://docs.aws.amazon.com/AmazonS3/latest/API/API_SelectObjectContent.html) feature isn't supported by moto at the moment. Moto version: `moto==1.3.16`. Here is a small snippet of code to demonstrate: ```python import boto3 import...

enhancement

Hi, Sorry for the spam, just raising another issue for a potential enhancement. There is currently no validation on the `admin_update_user_attributes` function to check that the email address we are...

enhancement

Hi, There is currently no password validation being performed on the `admin_set_user_password` function. (and I believe the same is applicable to `change_password` but I haven't tested it) As you can...

enhancement

I recently noticed that Moto does not enforce the API limits for PutRecords in Kinesis Data Streams. [Relevant documentation](https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html#kds-api-limits-data). Examples: #### Record data exceeds 1 MB ```python client = boto3.client('kinesis')...

enhancement

Amazon announced a new version of the SES API earlier this week. I would like to use the new [`send_email` call](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sesv2.html#SESV2.Client.send_email) with moto. In boto3 this appears as `boto3.client('sesv2').send_email()`, compared...

enhancement

moto does not appear to return `Item` under `err.response["CancellationReasons"][n]` when a transaction fails, and we've set ` "ReturnValuesOnConditionCheckFailure": "ALL_OLD"`. I've created a minimal repro with a failing test case here:...

bug

Hello, is there any way to save current moto server state? For example, I created a lots of different resources (s3 buckets, etc) and everything is gone after stadalone (or...

enhancement

It looks like that run_task and describe_tasks using `awsvpc` mode do not attach an ENI to the task. the ENI info should be present under `attachments` -> `details` with value...

enhancement

## iam.get_access_key_last_used() never return a date-time iam.get_access_key_last_used() never return a last date-time (field LastUsedDate never exist). Is it a way to "force" setup of this attribute by mocking an access...

enhancement