DynamoDB

Implementation details for API dynamodb

Coverage Overview

DynamoDB is supported by LocalStack in the community version with additional features available in the pro version.

AvailabilityTesting*
OperationImplementedEditionInternal Test SuiteExternal Test SuiteTerraform ValidatedAWS ValidatedSnapshot TestedDetails
BatchExecuteStatement✔️community✔️✔️✔️✔️Show Tests
BatchGetItem✔️community✔️✔️✔️✔️Show Tests
BatchWriteItem✔️community✔️✔️✔️✔️Show Tests
CreateBackup✔️pro✔️Show Tests
CreateGlobalTable✔️community✔️✔️✔️✔️✔️Show Tests
CreateTable✔️community✔️✔️✔️✔️✔️Show Tests
DeleteBackup✔️pro✔️Show Tests
DeleteItem✔️community✔️✔️✔️✔️✔️Show Tests
DeleteTable✔️community✔️✔️✔️✔️✔️Show Tests
DescribeBackup
DescribeContinuousBackups✔️community✔️✔️✔️✔️✔️Show Tests
DescribeContributorInsights
DescribeEndpoints
DescribeExport
DescribeGlobalTable✔️community✔️✔️✔️✔️✔️Show Tests
DescribeGlobalTableSettings
DescribeImport
DescribeKinesisStreamingDestination✔️community✔️✔️✔️✔️✔️Show Tests
DescribeLimits✔️community
DescribeTable✔️community✔️✔️✔️✔️✔️Show Tests
DescribeTableReplicaAutoScaling
DescribeTimeToLive✔️community✔️✔️✔️✔️✔️Show Tests
DisableKinesisStreamingDestination✔️community✔️✔️✔️✔️✔️Show Tests
EnableKinesisStreamingDestination✔️community✔️✔️✔️✔️✔️Show Tests
ExecuteStatement✔️community✔️✔️✔️✔️Show Tests
ExecuteTransaction✔️community✔️✔️✔️Show Tests
ExportTableToPointInTime
GetItem✔️community✔️✔️✔️✔️✔️Show Tests
ImportTable
ListBackups✔️pro
ListContributorInsights
ListExports
ListGlobalTables✔️community✔️✔️
ListImports
ListTables✔️community✔️✔️✔️✔️✔️Show Tests
ListTagsOfResource✔️community✔️✔️✔️✔️✔️Show Tests
PutItem✔️community✔️✔️✔️✔️✔️Show Tests
Query✔️community✔️✔️✔️✔️Show Tests
RestoreTableFromBackup✔️pro✔️Show Tests
RestoreTableToPointInTime✔️✔️
Scan✔️community✔️✔️✔️✔️✔️Show Tests
TagResource✔️community✔️✔️✔️✔️✔️Show Tests
TransactGetItems✔️community✔️✔️✔️✔️Show Tests
TransactWriteItems✔️community✔️✔️✔️Show Tests
UntagResource✔️community✔️✔️✔️✔️✔️Show Tests
UpdateContinuousBackups✔️community✔️✔️✔️✔️✔️Show Tests
UpdateContributorInsights✔️✔️
UpdateGlobalTable✔️community✔️✔️✔️Show Tests
UpdateGlobalTableSettings
UpdateItem✔️community✔️✔️✔️✔️✔️Show Tests
UpdateTable✔️community✔️✔️✔️✔️✔️Show Tests
UpdateTableReplicaAutoScaling
UpdateTimeToLive✔️community✔️✔️✔️✔️✔️Show Tests

Terminology

  • Internal Test Suite: tested by LocalStack's internal integration test suite
  • External Test Suite: covered by an external integration test suite, that runs against LocalStack
  • Terraform Validated: operation tested with Terraform
  • AWS Validated: the integration test that includes this operation call was validated against AWS
  • Snapshot Tested: the operation is part of a snapshot parity test, which verifies the responses by LocalStack and AWS are the same

Testing Details

This section gives an overview about the internal integration test suite and the specific test cases that recorded the API call.

How to read the test details?

For each operation we put up a list of the related integration test cases.
Those operation calls have been recorded during the exeuction of the outlined test cases. Some calls might be internal, i.e., they are not explicitly called in the test, but are triggered implicitly by the LocalStack framework.

  • Parameters: The tests are ordered by the parameters used, which are highlighted in bold.
  • Test Details: LocalStack Community or LocalStack Pro indicates where the test originates. For each test you see:
    • test name
    • status code returned (which is the expected one for the test case)
    • information about validation:
      • AWS validated the test is validated against AWS, meaning it run successfully against real AWS as well
      • Snapshot Tested this is a snapshot parity test, meaning the responses are validated against AWS


BatchExecuteStatement

Parameters: Statements
  • LocalStack Community
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested

BatchGetItem

Parameters: RequestItems
  • LocalStack Community
    • test_dynamodb_get_batch_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items HTTP Status Code: 200 AWS validated Snapshot Tested

BatchWriteItem

Parameters: RequestItems
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_batch_write_not_matching_schema LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
  • LocalStack Pro
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200

CreateBackup

Parameters: BackupName, TableName
  • LocalStack Pro
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200

CreateGlobalTable

Parameters: GlobalTableName, ReplicationGroup
  • LocalStack Community
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 400 (GlobalTableAlreadyExistsException) AWS validated Snapshot Tested

CreateTable

Parameters: AttributeDefinitions, BillingMode, GlobalSecondaryIndexes, KeySchema, TableName
  • LocalStack Community
    • test_more_than_20_global_secondary_indexes LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, BillingMode, KeySchema, ProvisionedThroughput, TableName
  • LocalStack Community
    • test_dynamodb_pay_per_request LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_pay_per_request HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
Parameters: AttributeDefinitions, BillingMode, KeySchema, StreamSpecification, TableName
  • LocalStack Community
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_without_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_billing_mode_as_conditional[PAY_PER_REQUEST] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_describe_with_exclusive_start_shard_id LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_shard_iterator_format LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_empty_and_binary_values LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nosql_workbench_localhost_region LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_event_source_validation LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_lifecycle LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[single-string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 200
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 200
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_invoke_dynamodb LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb HTTP Status Code: 200
    • test_multiple_api_keys_validate LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate HTTP Status Code: 400 (ResourceInUseException)
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 400 (ResourceInUseException)
  • LocalStack Pro
    • test_cognito_authorization LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer] HTTP Status Code: 200
    • test_cognito_authorization_group_enforcement LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_enforce_policy_dynamodb LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_enforce_policy_dynamodb HTTP Status Code: 200
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_enforce_policy_dynamodb LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_enforce_policy_dynamodb HTTP Status Code: 400 (AccessDeniedException)
Parameters: AttributeDefinitions, BillingMode, KeySchema, TableName
  • LocalStack Community
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 200
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
  • LocalStack Pro
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 200
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
Parameters: AttributeDefinitions, BillingMode, KeySchema, TableName, Tags
  • LocalStack Community
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, GlobalSecondaryIndexes, KeySchema, ProvisionedThroughput, StreamSpecification, TableName
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_stack_with_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_globalindex_read_write_provisioned_throughput_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table HTTP Status Code: 200 AWS validated
Parameters: AttributeDefinitions, GlobalSecondaryIndexes, KeySchema, ProvisionedThroughput, TableName, Tags
  • LocalStack Community
    • test_invalid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, KeySchema, LocalSecondaryIndexes, ProvisionedThroughput, TableName, Tags
  • LocalStack Community
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, KeySchema, ProvisionedThroughput, SSESpecification, TableName, Tags
  • LocalStack Community
    • test_dynamodb_create_table_with_partial_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, KeySchema, ProvisionedThroughput, StreamSpecification, TableName
  • LocalStack Community
    • test_managed_policy_with_empty_resource LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_billing_mode_as_conditional[PROVISIONED] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_with_exports LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports HTTP Status Code: 200
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_shard_iterator LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_rules_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed HTTP Status Code: 200
Parameters: AttributeDefinitions, KeySchema, ProvisionedThroughput, TableClass, TableName
  • LocalStack Community
    • test_dynamodb_create_table_with_class LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: AttributeDefinitions, KeySchema, ProvisionedThroughput, TableName
  • LocalStack Community
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_batch_write_not_matching_schema LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_get_batch_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_event_rules_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed HTTP Status Code: 200
  • LocalStack Pro
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_websocket_subscriptions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
Parameters: AttributeDefinitions, KeySchema, ProvisionedThroughput, TableName, Tags
  • LocalStack Community
    • test_default_name_for_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 400 (ResourceInUseException) AWS validated Snapshot Tested

DeleteBackup

Parameters: BackupArn
  • LocalStack Pro
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200

DeleteItem

Parameters: Key, TableName
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_get_signing_certificate LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate HTTP Status Code: 200

DeleteTable

Parameters: TableName
  • LocalStack Community
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_another_scenario LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_another_scenario HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_managed_policy_with_empty_resource LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 200
    • test_billing_mode_as_conditional[PAY_PER_REQUEST] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_billing_mode_as_conditional[PROVISIONED] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_default_name_for_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_stack_with_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_globalindex_read_write_provisioned_throughput_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_with_exports LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports HTTP Status Code: 200
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_not_matching_schema LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_class LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_partial_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_get_batch_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_shard_iterator LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_describe_with_exclusive_start_shard_id LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_shard_iterator_format LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_empty_and_binary_values LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_more_than_20_global_secondary_indexes LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nosql_workbench_localhost_region LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_event_source_validation LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_lifecycle LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[single-string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 200
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 200
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_s3_bucket_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed HTTP Status Code: 200
    • test_invoke_dynamodb LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb HTTP Status Code: 200
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 400 (ResourceNotFoundException)
  • LocalStack Pro
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 200
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_cognito_authorization LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer] HTTP Status Code: 200
    • test_cognito_authorization_group_enforcement LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_websocket_subscriptions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions HTTP Status Code: 200
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_enforce_policy_dynamodb LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_enforce_policy_dynamodb HTTP Status Code: 200
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested

DescribeContinuousBackups

Parameters: TableName
  • LocalStack Community
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested

DescribeGlobalTable

Parameters: GlobalTableName
  • LocalStack Community
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 400 (GlobalTableNotFoundException) AWS validated Snapshot Tested

DescribeKinesisStreamingDestination

Parameters: TableName
  • LocalStack Community
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested

DescribeTable

Parameters: TableName
  • LocalStack Community
    • test_lambda_dynamodb LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_search_books LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_search_books HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_multiple_api_keys_validate LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_without_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_managed_policy_with_empty_resource LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 200
    • test_billing_mode_as_conditional[PAY_PER_REQUEST] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_billing_mode_as_conditional[PROVISIONED] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_default_name_for_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_stack_with_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_globalindex_read_write_provisioned_throughput_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_with_exports LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports HTTP Status Code: 200
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_not_matching_schema LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_class LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_partial_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_get_batch_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_shard_iterator LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_describe_with_exclusive_start_shard_id LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_shard_iterator_format LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_empty_and_binary_values LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_more_than_20_global_secondary_indexes LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nosql_workbench_localhost_region LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_event_source_validation LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_lifecycle LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[single-string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 200
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 200
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 200
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_dynamodb_stream_handler_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_dynamodb_stream_handler_deployed HTTP Status Code: 200
    • test_event_rules_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed HTTP Status Code: 200
    • test_kinesis_stream_handler_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_kinesis_stream_handler_deployed HTTP Status Code: 200
    • test_s3_bucket_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed HTTP Status Code: 200
    • test_invoke_dynamodb LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb HTTP Status Code: 200
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_batch_write_not_existing_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_dynamodb_pay_per_request LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_pay_per_request HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 400 (ResourceNotFoundException)
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 400 (ResourceNotFoundException)
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 400 (ResourceNotFoundException)
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 400 (ResourceNotFoundException)
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 400 (ResourceNotFoundException)
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 400 (ResourceNotFoundException)
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 400 (ResourceNotFoundException)
  • LocalStack Pro
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 200
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_cognito_authorization LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer] HTTP Status Code: 200
    • test_cognito_authorization_group_enforcement LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_websocket_subscriptions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions HTTP Status Code: 200
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_enforce_policy_dynamodb LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_enforce_policy_dynamodb HTTP Status Code: 200
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 400 (ResourceNotFoundException)
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 400 (ResourceNotFoundException)
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 400 (ResourceNotFoundException)
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 400 (ResourceNotFoundException)
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 400 (ResourceNotFoundException)
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 400 (ResourceNotFoundException)
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 400 (ResourceNotFoundException)
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 400 (ResourceNotFoundException)
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 400 (ResourceNotFoundException)
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 400 (ResourceNotFoundException)
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 400 (ResourceNotFoundException)

DescribeTimeToLive

Parameters: TableName
  • LocalStack Community
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested

DisableKinesisStreamingDestination

Parameters: StreamArn, TableName
  • LocalStack Community
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested

EnableKinesisStreamingDestination

Parameters: StreamArn, TableName
  • LocalStack Community
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested

ExecuteStatement

Parameters: Statement
  • LocalStack Community
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested

ExecuteTransaction

Parameters: ClientRequestToken, TransactStatements
  • LocalStack Community
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested

GetItem

Parameters: ConsistentRead, Key, TableName
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED] LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input1-SUCCEEDED] LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input1-SUCCEEDED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
  • LocalStack Pro
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_layer_python LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python HTTP Status Code: 200
    • test_custom_scopes LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes HTTP Status Code: 200 AWS validated
    • test_get_signing_certificate LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate HTTP Status Code: 200
    • test_update_user_mfa_preferences LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
Parameters: Key, TableName
  • LocalStack Community
    • test_lambda_dynamodb LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 200
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 400 (ProvisionedThroughputExceededException)
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 400 (ProvisionedThroughputExceededException)
  • LocalStack Pro
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated

ListTables

Parameters: - (without any parameters)
  • LocalStack Community
    • test_deploy_stack_with_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
Parameters: Limit
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_multiple_api_keys_validate LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_without_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_managed_policy_with_empty_resource LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 200
    • test_billing_mode_as_conditional[PAY_PER_REQUEST] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_billing_mode_as_conditional[PROVISIONED] LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_default_name_for_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_stack_with_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_globalindex_read_write_provisioned_throughput_dynamodb_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table HTTP Status Code: 200 AWS validated
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_response_with_cf LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf HTTP Status Code: 200
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_with_exports LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports HTTP Status Code: 200
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_not_matching_schema LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_create_duplicate_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_class LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_partial_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_partial_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_create_table_with_sse_specification LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_sse_specification HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_get_batch_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_get_batch_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_partiql_missing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_partiql_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_pay_per_request LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_pay_per_request HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_shard_iterator LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_describe_with_exclusive_start_shard_id LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_streams_shard_iterator_format LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_empty_and_binary_values LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_more_than_20_global_secondary_indexes LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_more_than_20_global_secondary_indexes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nosql_workbench_localhost_region LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_event_source_validation LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_lifecycle LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deletion_event_source_mapping_with_dynamodb LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[single-string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_error_injection HTTP Status Code: 200
    • test_dynamodb_read_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_read_error_injection HTTP Status Code: 200
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 200
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_multi_accounts_dynamodb LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb HTTP Status Code: 200
    • test_event_rules_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed HTTP Status Code: 200
    • test_invoke_dynamodb LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb HTTP Status Code: 200
  • LocalStack Pro
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 200
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_cognito_authorization LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[access with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id no bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer] HTTP Status Code: 200
    • test_cognito_authorization_bearer_configuration[id with bearer] LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer] HTTP Status Code: 200
    • test_cognito_authorization_group_enforcement LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_websocket_subscriptions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions HTTP Status Code: 200
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_enforce_policy_dynamodb LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_enforce_policy_dynamodb HTTP Status Code: 200
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200

ListTagsOfResource

Parameters: ResourceArn
  • LocalStack Community
    • test_default_name_for_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested

PutItem

Parameters: Expected, Item, TableName
  • LocalStack Community
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
  • LocalStack Pro
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
Parameters: Item, ReturnValues, TableName
  • LocalStack Community
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: Item, TableName
  • LocalStack Community
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_multiple_api_keys_validate LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate HTTP Status Code: 200
    • test_put_integration_dynamodb_proxy_validation_with_request_template LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_binary LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_binary_data_with_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_execute_statement LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_batch_execute_statement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_empty_and_binary_values LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_empty_and_binary_values HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_non_ascii_chars LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_return_values_in_put_item LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_in_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_disabled_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_dynamodb_write_error_injection LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_dynamodb_write_error_injection HTTP Status Code: 400 (ProvisionedThroughputExceededException)
  • LocalStack Pro
    • test_apigateway_to_appsync_integration LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration HTTP Status Code: 200 AWS validated
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_websocket_subscriptions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_integration LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_dynamodb_integration HTTP Status Code: 400 (AccessDeniedException) AWS validated Snapshot Tested
    • test_connect_mqtt_via_aws_iot_sdk[mqtt] LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_connect_mqtt_via_aws_iot_sdk[mqtt] HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • test_connect_mqtt_via_aws_iot_sdk[websockets] LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_connect_mqtt_via_aws_iot_sdk[websockets] HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • test_shadow_after_thing_deletion LocalStack Pro: tests/aws/services/iot_data/test_iot_data.py::TestIoTShadows::test_shadow_after_thing_deletion HTTP Status Code: 400 (ResourceNotFoundException)
    • test_thing_shadow_input_errors LocalStack Pro: tests/aws/services/iot_data/test_iot_data.py::TestIoTShadows::test_thing_shadow_input_errors HTTP Status Code: 400 (ResourceNotFoundException)
    • test_thing_shadow_metadata LocalStack Pro: tests/aws/services/iot_data/test_iot_data.py::TestIoTShadows::test_thing_shadow_metadata HTTP Status Code: 400 (ResourceNotFoundException)
    • test_create_iotanalytics_resources LocalStack Pro: tests/aws/services/iotanalytics/test_iotanalytics.py::TestIotAnalytics::test_create_iotanalytics_resources HTTP Status Code: 400 (ResourceNotFoundException)

Query

Parameters: ExpressionAttributeNames, ExpressionAttributeValues, KeyConditionExpression, TableName
  • LocalStack Pro
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
Parameters: ExpressionAttributeValues, IndexName, KeyConditionExpression, Select, TableName
  • LocalStack Community
    • test_valid_local_secondary_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_local_secondary_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_valid_query_index HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_query_index LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_invalid_query_index HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, IndexName, KeyConditionExpression, TableName
  • LocalStack Community
    • test_lambda_dynamodb LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, KeyConditionExpression, TableName
  • LocalStack Community
    • test_rest_api_to_dynamodb_integration[Query] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_query_on_deleted_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested

RestoreTableFromBackup

Parameters: BackupArn, TargetTableName
  • LocalStack Pro
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200

Scan

Parameters: Limit, TableName
  • LocalStack Community
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_stack_with_sns_topic LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_deploy_stack_with_sns_topic HTTP Status Code: 200 AWS validated
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.amr] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.amr] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_container_port_can_be_bound[SdkDockerClient-tcp] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-tcp] HTTP Status Code: 200
  • LocalStack Pro
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_update_user_mfa_preferences LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cognito_triggers LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_triggers HTTP Status Code: 200 AWS validated
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_create_delete_service LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
    • test_describe_service_with_task_definition LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition HTTP Status Code: 200
    • test_create_app_in_k3s_cluster LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster HTTP Status Code: 200
    • test_describe_load_balancers LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
Parameters: Select, TableName
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: TableName
  • LocalStack Community
    • test_lambda_dynamodb LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_search_books LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_search_books HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_another_scenario LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_another_scenario HTTP Status Code: 200
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_boto_wait_for_certificate_validation LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_boto_wait_for_certificate_validation HTTP Status Code: 200
    • test_certificate_for_subdomain_wildcard LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_certificate_for_subdomain_wildcard HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_certificate LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_import_certificate HTTP Status Code: 200
    • test_rest_api_to_dynamodb_integration[PutItem] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_rest_api_to_dynamodb_integration[Scan] LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_domain_names LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_create_domain_names HTTP Status Code: 200
    • test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER] LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_export_oas30_openapi[TEST_IMPORT_PETS] LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_export_swagger_openapi[TEST_IMPORT_PETS] LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_domain_names LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_names HTTP Status Code: 200
    • test_import_and_validate_rest_api[swagger-mock-cors.json] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[swagger-mock-cors.json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_api LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_api_with_base_path_oas30[ignore] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[ignore] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_api_with_base_path_oas30[prepend] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[prepend] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_api_with_base_path_oas30[split] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_api_with_base_path_oas30[split] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_apis_with_base_path_swagger[ignore] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[ignore] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_apis_with_base_path_swagger[prepend] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[prepend] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_rest_apis_with_base_path_swagger[split] LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_rest_apis_with_base_path_swagger[split] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_swagger_api LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_swagger_api HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_with_circular_models LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_with_circular_models_and_request_validation LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_circular_models_and_request_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_execute_api_vpc_endpoint LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nested_output_in_params LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_output_in_params HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_nested_stack LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack HTTP Status Code: 200
    • test_nested_stack_output_refs LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack_output_refs HTTP Status Code: 200 AWS validated
    • test_simple_mapping_working LocalStack Community: tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_simple_mapping_working HTTP Status Code: 200 AWS validated
    • test_getattr[Tier] LocalStack Community: tests/aws/services/cloudformation/resource_providers/ssm/test_parameter_getatt_exploration.py::TestAttributeAccess::test_getattr[Tier] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_macro LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_waitcondition LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_waitcondition HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_alarm_creation LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_alarm_creation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_handle_elasticsearch_domain LocalStack Community: tests/aws/services/cloudformation/resources/test_elasticsearch.py::test_cfn_handle_elasticsearch_domain HTTP Status Code: 200
    • test_cfn_event_bus_resource LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource HTTP Status Code: 200 AWS validated
    • test_cfn_handle_events_rule LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule HTTP Status Code: 200
    • test_cfn_handle_events_rule_without_name LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name HTTP Status Code: 200
    • test_event_rule_creation_without_target LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target HTTP Status Code: 200
    • test_event_rule_to_logs LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs HTTP Status Code: 200 AWS validated
    • test_eventbus_policies LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies HTTP Status Code: 200 AWS validated
    • test_eventbus_policy_statement LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement HTTP Status Code: 200 AWS validated
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_kinesis_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_permissions LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_lambda_sqs_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_function_url LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_invoke_config LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_alias LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_cfn_run LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run HTTP Status Code: 200 AWS validated
    • test_lambda_code_signing_config LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_code_signing_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_version LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_lambda_permissions_for_singlefn LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_python_lambda_code_deployed_via_s3 LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3 HTTP Status Code: 200 AWS validated
    • test_domain LocalStack Community: tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_record_set_via_id LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_id HTTP Status Code: 200 AWS validated
    • test_create_record_set_via_name LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_name HTTP Status Code: 200 AWS validated
    • test_create_record_set_without_resource_record LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_without_resource_record HTTP Status Code: 200 AWS validated
    • test_bucket_autoname LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_autoname HTTP Status Code: 200 AWS validated
    • test_bucket_versioning LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_versioning HTTP Status Code: 200
    • test_bucketpolicy LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucketpolicy HTTP Status Code: 200
    • test_cors_configuration LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_cors_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_website_configuration LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_website_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_handle_secretsmanager_secret LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_handle_secretsmanager_secret HTTP Status Code: 200
    • test_cfn_secret_policy LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_secretsmanager_gen_secret LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secretsmanager_gen_secret HTTP Status Code: 200
    • test_deploy_stack_with_sns_topic LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_deploy_stack_with_sns_topic HTTP Status Code: 200 AWS validated
    • test_sns_subscription LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_sns_subscription HTTP Status Code: 200 AWS validated
    • test_sns_topic_fifo_with_deduplication LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_with_deduplication HTTP Status Code: 200 AWS validated
    • test_sns_topic_fifo_without_suffix_fails LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_without_suffix_fails HTTP Status Code: 200
    • test_create_stack_set_with_stack_instances LocalStack Community: tests/aws/services/cloudformation/resources/test_stack_sets.py::test_create_stack_set_with_stack_instances HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_aws_sqs_metrics_created LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_aws_sqs_metrics_created HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_breaching_alarm_actions LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_describe_alarms_converts_date_format_correctly LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_alarms_converts_date_format_correctly HTTP Status Code: 200 AWS validated
    • test_enable_disable_alarm_actions LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_enable_disable_alarm_actions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_metric_data LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data HTTP Status Code: 200 AWS validated
    • test_list_metrics_uniqueness LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_uniqueness HTTP Status Code: 200 AWS validated
    • test_multiple_dimensions LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_multiple_dimensions HTTP Status Code: 200 AWS validated
    • test_put_metric_data_gzip LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_put_metric_data_gzip HTTP Status Code: 200
    • test_set_alarm LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_set_alarm HTTP Status Code: 200 AWS validated
    • test_store_tags LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_store_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_execute_transaction LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_execute_transaction HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_large_data_download LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_large_data_download HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_add_tags_to_stream LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_add_tags_to_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_stream_without_shard_count LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_records LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_records_empty_stream LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_empty_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_records_next_shard_iterator LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_next_shard_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_record_lifecycle_data_integrity LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_record_lifecycle_data_integrity HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_consumers LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_to_shard LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_to_shard_timeout LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_to_shard_with_sequence_number_as_iterator LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_with_sequence_number_as_iterator HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter1-item_matching1-item_not_matching1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter4-item_matching4-this is a test string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter7-item_matching7-item_not_matching7] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_failing_lambda_retries_after_visibility_timeout LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_redrive_policy_with_failing_lambda LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures_invalid_result_json_batch_fails LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_by_presigned_request_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_object_put_via_dynamodb LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_lambda_arn LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_invalid_lambda_arn HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_notification_with_invalid_filter_rules LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_bucket_notification_with_invalid_filter_rules HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_objects LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_delete_objects HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_rules_case_insensitive LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_filter_rules_case_insensitive HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_sqs_arn LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_invalid_sqs_arn HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_key_encoding LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_key_encoding HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_invalid_sqs_arns LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_multiple_invalid_sqs_arns HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notifications_with_filter LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_notifications_with_filter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_and_object_removed LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_and_object_removed HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_complete_multipart_upload LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_complete_multipart_upload HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_copy LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_copy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_put LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_put_with_presigned_url_upload LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put_with_presigned_url_upload HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_put_acl LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_put_acl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_tagging_delete_event LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_delete_event HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_tagging_put_event LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_put_event HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_restore_object LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_restore_object HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_xray_header LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_xray_header HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_messages_as_botocore_endpoint_url LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_as_botocore_endpoint_url HTTP Status Code: 200
    • test_list_messages_with_non_existent_queue LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_with_non_existent_queue HTTP Status Code: 200
    • test_failing_deletion LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_failing_deletion HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_failing_start_transcription_job LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_failing_start_transcription_job HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_transcription_job LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_get_transcription_job HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_transcription_jobs LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_list_transcription_jobs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_happy_path LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_happy_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[None-None] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[None-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[test-output-bucket-2-None] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-2-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[test-output-bucket-3-test-output] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-3-test-output] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[test-output-bucket-4-test-output.json] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-4-test-output.json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[test-output-bucket-5-test-files/test-output.json] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-5-test-files/test-output.json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job[test-output-bucket-6-test-files/test-output] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-6-test-files/test-output] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_start_job_same_name LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job_same_name HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.amr] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.amr] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.flac] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.flac] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.mp3] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp3] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.mp4] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp4] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.ogg] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.ogg] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.webm] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.webm] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_unsupported_media_format_failure LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_unsupported_media_format_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.10] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.11] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.7] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.8] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8] HTTP Status Code: 200
    • test_lambda_put_item_to_dynamodb[python3.9] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9] HTTP Status Code: 200
    • test_call_s3_with_streaming_trait[bytes] LocalStack Community: tests/aws/test_moto.py::test_call_s3_with_streaming_trait[bytes] HTTP Status Code: 200
    • test_build_image[SdkDockerClient-False-False] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_build_image[SdkDockerClient-False-False] HTTP Status Code: 200
    • test_build_image[SdkDockerClient-True-False] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_build_image[SdkDockerClient-True-False] HTTP Status Code: 200
    • test_container_lifecycle_commands[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_container_lifecycle_commands[SdkDockerClient] HTTP Status Code: 200
    • test_copy_directory_content_into_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_directory_content_into_container[SdkDockerClient] HTTP Status Code: 200
    • test_copy_directory_into_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_directory_into_container[SdkDockerClient] HTTP Status Code: 200
    • test_copy_directory_structure_into_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_directory_structure_into_container[SdkDockerClient] HTTP Status Code: 200
    • test_copy_from_container_into_directory[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_from_container_into_directory[SdkDockerClient] HTTP Status Code: 200
    • test_copy_from_container_to_different_file[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_from_container_to_different_file[SdkDockerClient] HTTP Status Code: 200
    • test_copy_into_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_into_container[SdkDockerClient] HTTP Status Code: 200
    • test_copy_into_non_existent_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_into_non_existent_container[SdkDockerClient] HTTP Status Code: 200
    • test_create_container_remove_removes_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_container_remove_removes_container[SdkDockerClient] HTTP Status Code: 200
    • test_create_container_with_max_env_vars[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_container_with_max_env_vars[SdkDockerClient] HTTP Status Code: 200
    • test_create_start_container_with_stdin_to_file[SdkDockerClient-False] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_start_container_with_stdin_to_file[SdkDockerClient-False] HTTP Status Code: 200
    • test_create_start_container_with_stdin_to_file[SdkDockerClient-True] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_start_container_with_stdin_to_file[SdkDockerClient-True] HTTP Status Code: 200
    • test_create_start_container_with_stdin_to_stdout[SdkDockerClient-False] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_start_container_with_stdin_to_stdout[SdkDockerClient-False] HTTP Status Code: 200
    • test_create_with_exposed_ports[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_with_exposed_ports[SdkDockerClient] HTTP Status Code: 200
    • test_docker_image_names[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_docker_image_names[SdkDockerClient] HTTP Status Code: 200
    • test_exec_error_in_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_error_in_container[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container_with_env[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container_with_env[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container_with_env_deletion[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container_with_env_deletion[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container_with_stdin[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container_with_stdin[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container_with_stdin_stdout_stderr[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container_with_stdin_stdout_stderr[SdkDockerClient] HTTP Status Code: 200
    • test_exec_in_container_with_workdir[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_exec_in_container_with_workdir[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_command_not_pulled_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_command_not_pulled_image[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_entrypoint_non_existing_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_entrypoint_non_existing_image[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_entrypoint_not_pulled_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_entrypoint_not_pulled_image[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_ip[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_ip[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_ip_for_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_ip_for_network[SdkDockerClient] HTTP Status Code: 200
    • test_get_container_name[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_name[SdkDockerClient] HTTP Status Code: 200
    • test_get_logs[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_logs[SdkDockerClient] HTTP Status Code: 200
    • test_get_network_multiple_networks[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_network_multiple_networks[SdkDockerClient] HTTP Status Code: 200
    • test_inspect_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_inspect_container[SdkDockerClient] HTTP Status Code: 200
    • test_is_container_running[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_is_container_running[SdkDockerClient] HTTP Status Code: 200
    • test_list_containers_filter_non_existing[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_list_containers_filter_non_existing[SdkDockerClient] HTTP Status Code: 200
    • test_pause_non_existing_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_pause_non_existing_container[SdkDockerClient] HTTP Status Code: 200
    • test_pull_non_existent_docker_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_pull_non_existent_docker_image[SdkDockerClient] HTTP Status Code: 200
    • test_push_access_denied[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_push_access_denied[SdkDockerClient] HTTP Status Code: 200
    • test_run_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_run_container[SdkDockerClient] HTTP Status Code: 200
    • test_run_container_automatic_pull[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_run_container_automatic_pull[SdkDockerClient] HTTP Status Code: 200
    • test_run_container_with_stdin[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_run_container_with_stdin[SdkDockerClient] HTTP Status Code: 200
    • test_running_container_names[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_running_container_names[SdkDockerClient] HTTP Status Code: 200
    • test_connect_container_to_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_connect_container_to_network[SdkDockerClient] HTTP Status Code: 200
    • test_connect_container_to_network_with_alias_and_disconnect[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_connect_container_to_network_with_alias_and_disconnect[SdkDockerClient] HTTP Status Code: 200
    • test_connect_container_to_nonexistent_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_connect_container_to_nonexistent_network[SdkDockerClient] HTTP Status Code: 200
    • test_connect_nonexistent_container_to_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_connect_nonexistent_container_to_network[SdkDockerClient] HTTP Status Code: 200
    • test_docker_sdk_retries_after_init LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_docker_sdk_retries_after_init HTTP Status Code: 200
    • test_docker_sdk_retries_on_init LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_docker_sdk_retries_on_init HTTP Status Code: 200
    • test_get_container_ip_with_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_get_container_ip_with_network[SdkDockerClient] HTTP Status Code: 200
    • test_network_lifecycle[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_network_lifecycle[SdkDockerClient] HTTP Status Code: 200
    • test_set_container_workdir[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_set_container_workdir[SdkDockerClient] HTTP Status Code: 200
    • test_container_with_cap_add[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPermissions::test_container_with_cap_add[SdkDockerClient] HTTP Status Code: 200
    • test_container_with_cap_drop[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPermissions::test_container_with_cap_drop[SdkDockerClient] HTTP Status Code: 200
    • test_container_port_can_be_bound[SdkDockerClient-None] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-None] HTTP Status Code: 200
    • test_container_port_can_be_bound[SdkDockerClient-tcp] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-tcp] HTTP Status Code: 200
    • test_container_port_can_be_bound[SdkDockerClient-udp] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-udp] HTTP Status Code: 200
    • test_reserve_container_port[SdkDockerClient-None] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-None] HTTP Status Code: 200
    • test_reserve_container_port[SdkDockerClient-tcp] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-tcp] HTTP Status Code: 200
    • test_reserve_container_port[SdkDockerClient-udp] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-udp] HTTP Status Code: 200
    • test_run_with_additional_arguments[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestRunWithAdditionalArgs::test_run_with_additional_arguments[SdkDockerClient] HTTP Status Code: 200
    • test_run_with_additional_arguments_add_dns[SdkDockerClient-False] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestRunWithAdditionalArgs::test_run_with_additional_arguments_add_dns[SdkDockerClient-False] HTTP Status Code: 200
    • test_run_with_additional_arguments_add_dns[SdkDockerClient-True] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestRunWithAdditionalArgs::test_run_with_additional_arguments_add_dns[SdkDockerClient-True] HTTP Status Code: 200
    • test_cors_s3_override LocalStack Community: tests/integration/test_security.py::TestCSRF::test_cors_s3_override HTTP Status Code: 200
  • LocalStack Pro
    • test_cognito_authorization_group_enforcement LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_scheduled_backup_and_restore LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore HTTP Status Code: 200
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_cluster LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster HTTP Status Code: 200
    • test_db_instance_deployment LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_hostedzone_with_comment LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_db_tables LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables HTTP Status Code: 200
    • test_cdk_trail_cw_logs LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs HTTP Status Code: 200 AWS validated
    • test_create_repository LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_repository HTTP Status Code: 200
    • test_admin_no_srp_auth_flow LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow HTTP Status Code: 200 AWS validated
    • test_invalid_srp_raises_error[COFFEEG] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_invalid_srp_raises_error[COFFEEG] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_srp_custom_auth_flow LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_valid_srp_login LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_valid_srp_login HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_access_token_expiration_validity[500-seconds-500] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[500-seconds-500] HTTP Status Code: 200 AWS validated
    • test_admin_create_user_should_trigger_custom_message_lambda LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_create_user_should_trigger_custom_message_lambda HTTP Status Code: 200 AWS validated
    • test_api_gateway_cognito_pool_authorizer LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer HTTP Status Code: 200 AWS validated
    • test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_force_alias_creation LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation HTTP Status Code: 200
    • test_restore_forgotten_password LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_restore_forgotten_password HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_signup_case_insensitive_and_auth_using_srp LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_token_endpoint[client_credentials-query_params] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-query_params] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_update_user_mfa_preferences LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_user_groups LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_groups HTTP Status Code: 200
    • test_cognito_identity_get_id_region_matches LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_cognito_identity_get_id_region_matches HTTP Status Code: 200
    • test_create_identity_get_id LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_create_identity_get_id HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_auth_trigger_group_overrides LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_auth_trigger_group_overrides HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cognito_admin_create_signup_triggers LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_admin_create_signup_triggers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cognito_triggers LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_triggers HTTP Status Code: 200 AWS validated
    • test_custom_auth_triggers LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_custom_auth_triggers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_user_migration_lambda[None] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[None] HTTP Status Code: 200
    • test_user_migration_lambda[aliases1] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases1] HTTP Status Code: 200
    • test_user_migration_lambda[aliases2] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases2] HTTP Status Code: 200
    • test_create_user_with_email_uses_sub_as_username[False-False-None] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[False-False-email] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-email] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[False-True-None] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[False-True-email] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-email] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[True-False-None] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[True-False-email] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-email] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[True-True-None] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-None] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_user_with_email_uses_sub_as_username[True-True-email] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-email] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_query_db LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db HTTP Status Code: 200
    • test_create_query_db_with_port LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db_with_port HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_backups LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups HTTP Status Code: 200
    • test_table_regions LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_regions HTTP Status Code: 200
    • test_associate_and_disassociate_vpc_cidr_block LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_associate_and_disassociate_vpc_cidr_block HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_connect_to_localstack LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_connect_to_localstack HTTP Status Code: 200
    • test_create_instance_with_ebs_create_fs LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_create_instance_with_ebs_create_fs HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images HTTP Status Code: 200
    • test_describe_images_with_podman_localhost_prefix LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images_with_podman_localhost_prefix HTTP Status Code: 200
    • test_describe_instances LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_instances HTTP Status Code: 200
    • test_ssh_key_pairs LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_ssh_key_pairs HTTP Status Code: 200
    • test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances] LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances] HTTP Status Code: 200
    • test_stop_start_terminate_instances_for_invalid_instance_id_raises[stop_instances] LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[stop_instances] HTTP Status Code: 200
    • test_user_data LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_user_data HTTP Status Code: 200
    • test_auth_token_in_different_regions LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_delete_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest HTTP Status Code: 200
    • test_batch_get_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image HTTP Status Code: 200
    • test_batch_get_images_tag_and_digest LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest HTTP Status Code: 200
    • test_create_delete_image LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image HTTP Status Code: 200
    • test_delete_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images HTTP Status Code: 200
    • test_describe_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images HTTP Status Code: 200
    • test_ecr_tagging LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging HTTP Status Code: 200
    • test_get_authorization_token LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token HTTP Status Code: 200
    • test_lifecycle_policy LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy HTTP Status Code: 200
    • test_list_images LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images HTTP Status Code: 200
    • test_put_image[application/vnd.docker.distribution.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.docker.distribution.manifest.v2+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_image[application/vnd.oci.image.manifest.v1+json] LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_repository_deletion_in_registry LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry HTTP Status Code: 200
    • test_repository_lifecycle LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle HTTP Status Code: 200
    • test_repository_uri_hostname LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_uri_hostname HTTP Status Code: 200
    • test_two_different_repositories LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories HTTP Status Code: 200
    • test_create_delete_service LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_service_run_task LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task HTTP Status Code: 200
    • test_create_task_with_secrets[False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False] HTTP Status Code: 200 AWS validated
    • test_create_task_with_secrets[True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[True] HTTP Status Code: 200 AWS validated
    • test_describe_service_with_task_definition LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition HTTP Status Code: 200
    • test_ecs_task_multiple LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_multiple HTTP Status Code: 200
    • test_ecs_task_overrides LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_overrides HTTP Status Code: 200
    • test_start_and_stop_task[run_task] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[run_task] HTTP Status Code: 200
    • test_start_and_stop_task[start_task] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[start_task] HTTP Status Code: 200
    • test_start_task_definition_multiple_times LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_multiple_times HTTP Status Code: 200
    • test_start_task_definition_with_cap_drop LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_with_cap_drop HTTP Status Code: 200 AWS validated
    • test_start_task_docker_flags LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_docker_flags HTTP Status Code: 200
    • test_start_task_state_stopped LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_state_stopped HTTP Status Code: 200 AWS validated
    • test_subscribe_ecs_events LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_subscribe_ecs_events HTTP Status Code: 200
    • test_task_connect_to_localstack LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_connect_to_localstack HTTP Status Code: 200
    • test_task_mount_host_volume LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_mount_host_volume HTTP Status Code: 200
    • test_task_produces_logs LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_produces_logs HTTP Status Code: 200
    • test_update_service_creates_new_deployment LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_update_service_creates_new_deployment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_err[valid_name-invalid image] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[valid_name-invalid image] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[@test-container-alpine-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[@test-container-alpine-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-@library/alpine:latest-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-@library/alpine:latest-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine 3.12.0-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine 3.12.0-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine:3.12-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:3.12-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine:latest-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine@3.12.0-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@3.12.0-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-docker.io/nginx-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-docker.io/nginx-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-library/alpine-True] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-library/alpine@latest-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine@latest-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test-container-library/image@name:latest-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_task_definition_validation[test@container-alpine-False] LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test@container-alpine-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_describe_tasks_list_tasks LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_tasks_list_tasks HTTP Status Code: 200
    • test_tag_task_definition LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition HTTP Status Code: 200 AWS validated
    • test_access_point LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_access_point HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_filesystem LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_create_filesystem HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lifecycle_configuration LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_lifecycle_configuration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_mount_target LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_mount_target HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_additional_amis_present LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_additional_amis_present HTTP Status Code: 200
    • test_get_parameters_eks_amis[1.19] LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19] HTTP Status Code: 200 AWS validated
    • test_get_parameters_eks_amis[1.20] LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.20] HTTP Status Code: 200 AWS validated
    • test_get_parameters_eks_amis[1.21] LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.21] HTTP Status Code: 200 AWS validated
    • test_get_parameters_eks_amis[1.22] LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.22] HTTP Status Code: 200 AWS validated
    • test_get_parameters_eks_amis[1.23] LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.23] HTTP Status Code: 200 AWS validated
    • test_mocked_responses LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_mocked_responses HTTP Status Code: 200
    • test_cluster_default_version LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_app_in_k3s_cluster LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster HTTP Status Code: 200
    • test_ecr_eks_integration LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration HTTP Status Code: 200
    • test_eks_pod_exec LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_eks_pod_exec HTTP Status Code: 200
    • test_localstack_communication_from_pod LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_localstack_communication_from_pod HTTP Status Code: 200
    • test_volume_mount LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_volume_mount HTTP Status Code: 200
    • test_cache_cluster_custom_port LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port HTTP Status Code: 200
    • test_cluster_no_cache_type LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_cache_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cluster_no_engine LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cluster_redis_num_nodes_greater_than_one LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_redis_num_nodes_greater_than_one HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_delete_multiple_clusters LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters HTTP Status Code: 200
    • test_redis_cluster_mode[0-1] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1] HTTP Status Code: 200
    • test_redis_cluster_mode[0-2] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2] HTTP Status Code: 200
    • test_redis_cluster_mode[0-4] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4] HTTP Status Code: 200
    • test_redis_cluster_mode[1-1] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1] HTTP Status Code: 200
    • test_redis_cluster_mode[1-2] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2] HTTP Status Code: 200
    • test_redis_cluster_mode[1-4] LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4] HTTP Status Code: 200
    • test_redis_standalone LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone HTTP Status Code: 200
    • test_replication_group LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group HTTP Status Code: 200
    • test_manage_applications LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_applications HTTP Status Code: 200
    • test_manage_environments LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_environments HTTP Status Code: 200
    • test_alb_modify_attributes LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_alb_set_ip_address_type LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_load_balancing LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_load_balancer LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_loadbalancer_rule LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_describe_load_balancers LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_failing_create_load_balancer LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_create_load_balancer HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_failing_describe_load_balancers LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_auto_termination_policies LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_auto_termination_policies HTTP Status Code: 200
    • test_instance_fleets LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_instance_fleets HTTP Status Code: 200
    • test_action_rds_reboot_db_instances LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_action_rds_reboot_db_instances HTTP Status Code: 200
    • test_api_injection_fault_action LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_fault_action HTTP Status Code: 200
    • test_api_injection_parametrized_exception LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_exception HTTP Status Code: 200
    • test_api_injection_parametrized_region LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_region HTTP Status Code: 200
    • test_api_injection_parametrized_service LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_service HTTP Status Code: 200
    • test_create_experiment_template LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_create_experiment_template HTTP Status Code: 200
    • test_idempotency_of_create_experiment_template LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_idempotency_of_create_experiment_template HTTP Status Code: 200
    • test_idempotency_of_start_experiment LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_idempotency_of_start_experiment HTTP Status Code: 200
    • test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_rule_triggers_dynamodb_v2_put_item LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200

TagResource

Parameters: ResourceArn, Tags
  • LocalStack Community
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested

TransactGetItems

Parameters: TransactItems
  • LocalStack Community
    • test_transact_get_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items HTTP Status Code: 200 AWS validated Snapshot Tested

TransactWriteItems

Parameters: ClientRequestToken, TransactItems
  • LocalStack Community
    • test_dynamodb_idempotent_writing LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_binary_data LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transaction_write_items LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_batch_write_not_existing_table LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_transaction_write_canceled LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled HTTP Status Code: 400 (TransactionCanceledException) AWS validated Snapshot Tested
  • LocalStack Pro
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200

UntagResource

Parameters: ResourceArn, TagKeys
  • LocalStack Community
    • test_list_tags_of_resource LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource HTTP Status Code: 200 AWS validated Snapshot Tested

UpdateContinuousBackups

Parameters: PointInTimeRecoverySpecification, TableName
  • LocalStack Community
    • test_continuous_backup_update LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update HTTP Status Code: 200 AWS validated Snapshot Tested

UpdateGlobalTable

Parameters: GlobalTableName, ReplicaUpdates
  • LocalStack Community
    • test_global_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables HTTP Status Code: 200 AWS validated Snapshot Tested

UpdateItem

Parameters: AttributeUpdates, Expected, Key, TableName
  • LocalStack Community
    • test_firehose_stack_with_kinesis_as_source LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_stream_with_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_elasticsearch_s3_backup LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[domain] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[path] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path] HTTP Status Code: 200
    • test_kinesis_firehose_opensearch_s3_backup[port] LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port] HTTP Status Code: 200
    • test_run_kcl LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_default_batch_size LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter0-item_matching0-item_not_matching0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter1-item_matching1-item_not_matching1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter2-item_matching2-item_not_matching2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter3-item_matching3-item_not_matching3] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter4-item_matching4-this is a test string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter5-item_matching5-item_not_matching5] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter6-item_matching6-item_not_matching6] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_filter[filter7-item_matching7-item_not_matching7] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_invalid_event_filter[invalid_filter2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_invalid_event_filter[invalid_filter3] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter3] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_invalid_event_filter[simple string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[simple string] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_failing_lambda_retries_after_visibility_timeout LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_message_body_and_attributes_passed_correctly LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_message_body_and_attributes_passed_correctly HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_redrive_policy_with_failing_lambda LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures_empty_json_batch_succeeds LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_empty_json_batch_succeeds HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures_invalid_result_json_batch_fails LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_report_batch_item_failures_on_lambda_error LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_on_lambda_error HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_queue_as_lambda_dead_letter_queue LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_sqs_queue_as_lambda_dead_letter_queue HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_firehose_kinesis_to_s3 LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3 HTTP Status Code: 200
    • test_lambda_streams_batch_and_transactions LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions HTTP Status Code: 200
    • test_setup LocalStack Community: tests/aws/scenario/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
  • LocalStack Pro
    • test_application_with_output_and_reference LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_layer_python LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python HTTP Status Code: 200
    • test_lambda_layer_python LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python HTTP Status Code: 200
    • test_create_cluster LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster HTTP Status Code: 200
    • test_create_ledgers LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers HTTP Status Code: 200
    • test_db_cluster_deployment LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_db_instance_deployment LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_db_proxy LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy HTTP Status Code: 200
    • test_hostedzone_optionaltrailingdot[with_trailing_dot] LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[with_trailing_dot] HTTP Status Code: 200
    • test_hostedzone_optionaltrailingdot[without_trailing_dot] LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[without_trailing_dot] HTTP Status Code: 200
    • test_hostedzone_with_comment LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_secretsmanager_target_attachment_maridab LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_receiptrules LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules HTTP Status Code: 200
    • test_create_db_tables LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables HTTP Status Code: 200
    • test_custom_errors[True] LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[True] HTTP Status Code: 200
    • test_lambda_redirect LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect HTTP Status Code: 200 AWS validated
    • test_cdk_trail_cw_logs LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs HTTP Status Code: 200 AWS validated
    • test_get_trail_status_of_not_started LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started HTTP Status Code: 200
    • test_get_trail_status_of_started_and_stopped LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped HTTP Status Code: 200
    • test_record_events LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_trails LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_branch LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_branch HTTP Status Code: 200
    • test_get_file LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_file HTTP Status Code: 200
    • test_get_repository_matches_created_repository LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_repository_matches_created_repository HTTP Status Code: 200
    • test_tagging LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_tagging HTTP Status Code: 200
    • test_admin_change_password LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_change_password HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_admin_set_permanent_invalid_password LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_set_permanent_invalid_password HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_api_gateway_cognito_pool_authorizer LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer HTTP Status Code: 200 AWS validated
    • test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_auth_not_authorized_user LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_auth_not_authorized_user HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_change_password[user-{short_uid}@example.com] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}@example.com] HTTP Status Code: 200
    • test_change_password[user-{short_uid}] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}] HTTP Status Code: 200
    • test_custom_scopes LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes HTTP Status Code: 200 AWS validated
    • test_force_alias_creation LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation HTTP Status Code: 200
    • test_invalid_pool_client_parameters LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_pool_client_parameters HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_login_via_web_form LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_via_web_form HTTP Status Code: 200
    • test_login_with_preferred_username_attr_change LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username_attr_change HTTP Status Code: 200 AWS validated
    • test_password_policy LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_restore_forgotten_password LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_restore_forgotten_password HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_signup_case_insensitive_and_auth_using_srp LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_signup_with_email_phone_aliases LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_with_email_phone_aliases HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_srp_login LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_srp_login_after_password_update LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login_after_password_update HTTP Status Code: 200
    • test_token_endpoint[client_credentials-query_params] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-query_params] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_token_endpoint[code-body] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-body] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_token_endpoint[code-query_params] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_user_pool_attributes[False] LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_attributes[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_user_pool_error_messages LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_application_output LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output HTTP Status Code: 200
    • test_input_processing_configuration LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration HTTP Status Code: 200
    • test_list_and_update_applications LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications HTTP Status Code: 200
    • test_tag_list_tag_untag_resource LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource HTTP Status Code: 200
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
    • test_update_user_mfa_preferences LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, Key, ReturnValues, TableName, UpdateExpression
  • LocalStack Community
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200
    • test_dynamodb_stream_stream_view_type LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_with_kinesis_stream LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, Key, TableName, UpdateExpression
  • LocalStack Community
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_data_encoding_consistency LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_dynamodb_resolvers LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers HTTP Status Code: 200

UpdateTable

Parameters: AttributeDefinitions, GlobalSecondaryIndexUpdates, TableName
  • LocalStack Community
    • test_multiple_update_expressions LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_multiple_update_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ReplicaUpdates, TableName
  • LocalStack Community
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_tables_version_2019 LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019 HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
Parameters: StreamSpecification, TableName
  • LocalStack Community
    • test_dynamodb_streams_shard_iterator_format LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_shard_iterator_format HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_event_source_validation LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_event_source_mapping_lifecycle LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put10-None-filter0-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_event_source_mapping_with_on_failure_destination_config LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{"eventName": ["INSERT"=123}]] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_invalid_event_filter[single-string] LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string] HTTP Status Code: 200 AWS validated Snapshot Tested
  • LocalStack Pro
    • test_dynamodb_event_source_mapping LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping HTTP Status Code: 200 AWS validated
Parameters: TableClass, TableName
  • LocalStack Community
    • test_dynamodb_create_table_with_class LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_create_table_with_class HTTP Status Code: 200 AWS validated Snapshot Tested

UpdateTimeToLive

Parameters: TableName, TimeToLiveSpecification
  • LocalStack Community
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested


Last modified March 20, 2023: improve Coverage Docs (#505) (46f2fb0c0)