DynamoDB

Implementation details for API dynamodb

Coverage Overview

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

AvailabilityTesting*
OperationImplementedImageInternal 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
DeleteResourcePolicy
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
GetResourcePolicy
ImportTable
ListBackups✔️pro✔️
ListContributorInsights
ListExports
ListGlobalTables✔️community✔️✔️
ListImports
ListTables✔️community✔️✔️✔️✔️✔️Show Tests
ListTagsOfResource✔️community✔️✔️✔️✔️✔️Show Tests
PutItem✔️community✔️✔️✔️✔️✔️Show Tests
PutResourcePolicy
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
UpdateKinesisStreamingDestination
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
  • LocalStack Pro
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 400 (AccessDeniedException) AWS validated Snapshot Tested

BatchWriteItem

Parameters: RequestItems
  • LocalStack Community
    • test_setup LocalStack Community: tests/aws/scenario/bookstore/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_batch_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 400 (AccessDeniedException) AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_item HTTP Status Code: 400 (AccessDeniedException) AWS validated Snapshot Tested

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, SSESpecification, TableName
  • LocalStack Community
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
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_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_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement HTTP Status Code: 200
    • 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_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings 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_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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_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_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan 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_dynamodb_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe 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_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 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_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_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_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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 200
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200 AWS validated
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags 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_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/loan_broker/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/bookstore/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
  • LocalStack Community
    • test_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
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_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 200 AWS validated
    • test_lambda_w_dynamodb_event_filter_update LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update HTTP Status Code: 200 AWS validated
    • 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_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming 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_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_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_validate_infra_setup LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup 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_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_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_item HTTP Status Code: 200 AWS validated Snapshot Tested
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: ConditionExpression, ExpressionAttributeValues, Key, ReturnValuesOnConditionCheckFailure, TableName
  • LocalStack Community
    • test_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
Parameters: Key, TableName
  • LocalStack Community
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/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/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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_s3_get_response_header_overrides[s3] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_get_response_header_overrides[s3] HTTP Status Code: 200 AWS validated
    • test_s3_get_response_header_overrides[s3v4] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_get_response_header_overrides[s3v4] HTTP Status Code: 200 AWS validated
    • test_dynamodb_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested

DeleteTable

Parameters: TableName
  • LocalStack Community
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input4-FAILED] LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse 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_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 200 AWS validated
    • test_lambda_w_dynamodb_event_filter_update LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update HTTP Status Code: 200 AWS validated
    • 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_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming 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_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_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement HTTP Status Code: 200
    • 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_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings 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_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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_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_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan 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_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] 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_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_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: 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_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe 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
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records HTTP Status Code: 200 AWS validated Snapshot Tested

DescribeTable

Parameters: TableName
  • LocalStack Community
    • test_lambda_dynamodb LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_opensearch_crud LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_search_books LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_search_books HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_setup LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_validate_infra_setup LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_validate_infra_setup LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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[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_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_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_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse 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_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_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_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_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_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 200 AWS validated
    • test_lambda_w_dynamodb_event_filter_update LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update HTTP Status Code: 200 AWS validated
    • 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_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_batch_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming 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_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_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_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_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_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_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_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_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: 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_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_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_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_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement HTTP Status Code: 200
    • test_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement 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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_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_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_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_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings 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_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_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_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_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_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_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_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 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_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[[{"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_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_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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_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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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_opensearch_crud LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input4-FAILED] LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED] HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • 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: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 400 (ResourceNotFoundException)
    • 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: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException) AWS validated
    • test_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse HTTP Status Code: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException) AWS validated
    • test_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk HTTP Status Code: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException) 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: 400 (ResourceNotFoundException)
    • test_cfn_lambda_dynamodb_source LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • test_lambda_w_dynamodb_event_filter_update LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update HTTP Status Code: 400 (ResourceNotFoundException) AWS validated
    • test_cfn_with_exports LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports HTTP Status Code: 400 (ResourceNotFoundException)
    • 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_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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 400 (ResourceNotFoundException)
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • 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_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: 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)
    • test_s3_bucket_deployed LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed HTTP Status Code: 400 (ResourceNotFoundException)
  • LocalStack Pro
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan 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_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200 AWS validated
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_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: 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_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_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_dynamodb_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_servicediscovery_ecs_integration LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration HTTP Status Code: 400 (ResourceNotFoundException)
    • test_websocket_subscriptions_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • 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_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target 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_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_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records 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_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED] LocalStack Community: tests/aws/scenario/loan_broker/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/loan_broker/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_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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_presigned_url_signature_authentication_expired[s3-False] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_signature_authentication_expired[s3-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_get_response_header_overrides[s3] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_get_response_header_overrides[s3] HTTP Status Code: 200 AWS validated
    • 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_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • 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_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/bookstore/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_setup LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/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/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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_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_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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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_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)

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_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/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_validate_infra_setup LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_global_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse 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_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_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_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 200 AWS validated
    • test_lambda_w_dynamodb_event_filter_update LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_w_dynamodb_event_filter_update HTTP Status Code: 200 AWS validated
    • 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_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming 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_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_stream_spec_and_region_replacement LocalStack Community: tests/aws/services/dynamodbstreams/test_dynamodb_streams.py::TestDynamoDBStreams::test_stream_spec_and_region_replacement 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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings 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_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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
  • LocalStack Pro
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan 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_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_resolver_with_cache LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache HTTP Status Code: 200
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_customresource_lambda_backed LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed HTTP Status Code: 200 AWS validated
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_batch_write_item LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_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: 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_dynamodb_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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: ConditionExpression, Item, TableName
  • LocalStack Pro
    • test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query VTLDynamoResolver {\n vtl {\n dynamoResult\n }\n }\n ] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query Full {\n vtl {\n dynamoResult\n }\n js {\n result\n }\n }\n ] HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
    • test_deploy_scenario[\n query JSPipelineResolver {\n js {\n result\n }\n }\n ] LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::TestExpandedScenario::test_deploy_scenario[\n query JSPipelineResolver {\n js {\n result\n }\n }\n ] HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
Parameters: Expected, Item, TableName
  • LocalStack Community
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 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_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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • 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_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/loan_broker/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/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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[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_lambda_dynamodb_event_filter LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_lambda_dynamodb_event_filter HTTP Status Code: 200 AWS validated
    • 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_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming 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_return_values_on_conditions_check_failure LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_return_values_on_conditions_check_failure HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stream_destination_records LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming 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_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_delete_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_delete_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item 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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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_put_item_no_such_table LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_aws_sdk.py::TestAwsSdk::test_dynamodb_put_item_no_such_table HTTP Status Code: 400 (ResourceNotFoundException) AWS validated Snapshot Tested
    • test_put_item_invalid_table_name LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_dynamodb.py::TestTaskServiceDynamoDB::test_put_item_invalid_table_name HTTP Status Code: 400 (ValidationException) AWS validated Snapshot Tested
    • test_put_item_no_such_table LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_dynamodb.py::TestTaskServiceDynamoDB::test_put_item_no_such_table HTTP Status Code: 400 (ResourceNotFoundException) 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: 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_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan 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_relay_sample LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions_relay_sample HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags 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: 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_pipe LocalStack Pro: tests/aws/services/pipes/test_pipes.py::TestPipes::test_dynamodb_pipe HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dynamodb_leading_keys_tags LocalStack Pro: tests/aws/services/iam/test_iam_abac.py::TestIAMABAC::test_dynamodb_leading_keys_tags HTTP Status Code: 400 (AccessDeniedException) 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

Query

Parameters: ExpressionAttributeNames, ExpressionAttributeValues, FilterExpression, KeyConditionExpression, Select, TableName
  • LocalStack Pro
    • test_filter_expressions LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions HTTP Status Code: 200 AWS validated Snapshot Tested
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/bookstore/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: ExpressionAttributeNames, ExpressionAttributeValues, FilterExpression, TableName
  • LocalStack Pro
    • test_dynamodb_resolver_scan LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, FilterExpression, TableName
  • LocalStack Community
    • test_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: Limit, TableName
  • LocalStack Community
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 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_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_update_queue_no_change LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_update_queue_no_change HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_retries LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_retries HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_subscription_filter_kinesis LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_kinesis HTTP Status Code: 200 AWS validated
    • test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_step_functions_calling_api_gateway LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway 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_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_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
  • LocalStack Pro
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • 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_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/bookstore/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/bookstore/test_bookstore.py::TestBookstoreApplication::test_lambda_dynamodb HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_destination_sns LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_infra LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input0-SUCCEEDED] LocalStack Community: tests/aws/scenario/loan_broker/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/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input1-SUCCEEDED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input2-FAILED] LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input2-FAILED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input3-FAILED] LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input3-FAILED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_stepfunctions_input_recipient_list[step_function_input4-FAILED] LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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_create_certificate_for_multiple_alternative_domains LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_create_certificate_for_multiple_alternative_domains HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_domain_validation LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_domain_validation 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 AWS validated Snapshot Tested
    • test_error_aws_proxy_not_supported LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_error_aws_proxy_not_supported HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_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_PETSTORE_SWAGGER] LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER] 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_api_keys LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_get_api_keys HTTP Status Code: 200 AWS validated
    • test_get_domain_name LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_name HTTP Status Code: 200
    • 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_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_import_with_global_api_key_authorizer LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_global_api_key_authorizer HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_with_http_method_integration LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_http_method_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_import_with_stage_variables LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_with_stage_variables 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_api_gateway_sqs_integration LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_api_gateway_sqs_integration HTTP Status Code: 200
    • test_sqs_aws_integration LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_request_and_response_xml_templates_integration LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_request_and_response_xml_templates_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_module_usage LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_duplicate_resources LocalStack Community: tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_cfn_acm_certificate LocalStack Community: tests/aws/services/cloudformation/resources/test_acm.py::test_cfn_acm_certificate HTTP Status Code: 200
    • test_cdk_bootstrap[10] LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10] HTTP Status Code: 200
    • test_cdk_bootstrap[11] LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11] HTTP Status Code: 200
    • test_cdk_bootstrap[12] LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12] HTTP Status Code: 200
    • test_cdk_bootstrap_redeploy LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy HTTP Status Code: 200
    • test_cdk_template LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template HTTP Status Code: 200
    • test_cdk_sample LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkSampleApp::test_cdk_sample 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_cfn_with_multiple_route_table_associations LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations HTTP Status Code: 200
    • test_cfn_with_multiple_route_tables LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables HTTP Status Code: 200 AWS validated
    • test_dhcp_options LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_internet_gateway_ref_and_attr LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_simple_route_table_creation LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_simple_route_table_creation HTTP Status Code: 200
    • test_simple_route_table_creation_without_vpc LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_simple_route_table_creation_without_vpc HTTP Status Code: 200
    • test_transit_gateway_attachment LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_transit_gateway_attachment HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_vpc_creates_default_sg LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg HTTP Status Code: 200 AWS validated
    • 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_rule_properties LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_rule_properties 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_sam_policies LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sam_template LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template HTTP Status Code: 200
    • test_cfn_handle_sqs_resource LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_cfn_handle_sqs_resource HTTP Status Code: 200
    • test_sqs_fifo_queue_generates_valid_name LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name HTTP Status Code: 200 AWS validated
    • test_sqs_non_fifo_queue_generates_valid_name LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_non_fifo_queue_generates_valid_name HTTP Status Code: 200
    • test_sqs_queue_policy LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_queue_policy HTTP Status Code: 200
    • test_update_queue_no_change LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_update_queue_no_change HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_update_sqs_queuepolicy LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_update_sqs_queuepolicy HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_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_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_put_event_with_content_base_rule_in_pattern LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_event_with_content_base_rule_in_pattern HTTP Status Code: 200
    • test_put_events_with_rule_anything_but_to_sqs LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_anything_but_to_sqs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_events_with_rule_exists_false_to_sqs LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_exists_false_to_sqs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_events_with_rule_exists_true_to_sqs LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_events_with_rule_exists_true_to_sqs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_rule LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_rule HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_rule_invalid_rate_schedule_expression[rate()] LocalStack Community: tests/aws/services/events/test_events_rules.py::test_put_rule_invalid_rate_schedule_expression[rate()] HTTP Status Code: 200 AWS validated
    • 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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_create_user_with_permission_boundary LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_with_permission_boundary HTTP Status Code: 200 AWS validated
    • test_get_user_without_username_as_role LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_role HTTP Status Code: 200 AWS validated
    • test_get_user_without_username_as_root LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_root HTTP Status Code: 200
    • test_get_user_without_username_as_user LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user HTTP Status Code: 200 AWS validated
    • test_attach_detach_role_policy LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_detach_role_policy HTTP Status Code: 200 AWS validated
    • test_create_describe_role LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_describe_role HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_role_with_assume_role_policy LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_role_with_assume_role_policy HTTP Status Code: 200 AWS validated
    • test_instance_profile_tags LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_instance_profile_tags HTTP Status Code: 200 AWS validated
    • test_list_roles_with_permission_boundary LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_list_roles_with_permission_boundary HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_recreate_iam_role LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_recreate_iam_role HTTP Status Code: 200 AWS validated
    • test_role_attach_policy LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_role_attach_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_update_assume_role_policy LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_update_assume_role_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_user_attach_policy LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_user_attach_policy 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_dead_letter_queue LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDLQ::test_dead_letter_queue HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invoke_lambda_eventbridge LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_assess_lambda_destination_invocation[payload0] LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_assess_lambda_destination_invocation[payload1] LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_lambda_destination_default_retries LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_maxeventage LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_maxeventage HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_retries LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_retries HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_and_delete_log_group LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_create_and_delete_log_group HTTP Status Code: 200
    • test_create_and_delete_log_stream LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_create_and_delete_log_stream HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_log_events_response_header LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_filter_log_events_response_header HTTP Status Code: 200
    • test_list_tags_log_group LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_list_tags_log_group HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_subscription_filter_firehose LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_firehose HTTP Status Code: 200 AWS validated
    • test_put_subscription_filter_kinesis LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_kinesis HTTP Status Code: 200 AWS validated
    • test_put_subscription_filter_lambda LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_clusters LocalStack Community: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_create_clusters HTTP Status Code: 200
    • test_empty_bucket_fixture LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_empty_bucket_fixture HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multipart_overwrite_key LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_multipart_overwrite_key HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_object_checksum[SHA256] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_object_checksum[SHA256] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_checksum_with_content_encoding LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_checksum_with_content_encoding HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_get_object_preconditions[head_object] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_get_object_preconditions[head_object] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_lambda_integration LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_put_more_than_1000_items LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_put_more_than_1000_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_replication_config_without_filter LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3BucketReplication::test_replication_config_without_filter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_presigned_url_signature_authentication_expired[s3-False] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_signature_authentication_expired[s3-False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_presigned_url_v4_signed_headers_in_qs LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_signed_headers_in_qs HTTP Status Code: 200 AWS validated
    • test_s3_get_response_header_overrides[s3] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_get_response_header_overrides[s3] HTTP Status Code: 200 AWS validated
    • test_bucket_acceleration_configuration_crud LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketAccelerateConfiguration::test_bucket_acceleration_configuration_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_bucket_with_objects LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_bucket_with_objects HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_versioned_bucket_with_objects LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_versioned_bucket_with_objects HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_bucket_encryption_sse_kms LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketEncryption::test_s3_bucket_encryption_sse_kms HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_bucket_encryption_sse_kms_aws_managed_key LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketEncryption::test_s3_bucket_encryption_sse_kms_aws_managed_key HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_default_bucket_encryption_exc LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketEncryption::test_s3_default_bucket_encryption_exc HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_tagging_crud LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_bucket_tagging_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_tagging_exc LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_bucket_tagging_exc HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_tagging_crud LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_object_tagging_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_tagging_versioned LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_object_tagging_versioned HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_tags_delete_or_overwrite_object LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_object_tags_delete_or_overwrite_object HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_tagging_validation LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_tagging_validation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_ownership_controls_exc LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketOwnershipControls::test_bucket_ownership_controls_exc HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_crud_bucket_ownership_controls LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketOwnershipControls::test_crud_bucket_ownership_controls HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_policy_exc LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketPolicy::test_bucket_policy_exc HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_versioning_crud LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketVersioning::test_bucket_versioning_crud HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_upload_part_copy_no_copy_source_range LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3Multipart::test_upload_part_copy_no_copy_source_range HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_upload_part_copy_range LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3Multipart::test_upload_part_copy_range HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_object_on_suspended_bucket LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_delete_object_on_suspended_bucket HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_object_versioned LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_delete_object_versioned HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_objects LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_delete_objects HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_objects_versioned LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_delete_objects_versioned HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_object_range LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_get_object_range HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_object_with_version_unversioned_bucket LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_get_object_with_version_unversioned_bucket HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_object_versions_order_unversioned LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_list_object_versions_order_unversioned HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_object_on_suspended_bucket LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_put_object_on_suspended_bucket HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delete_object_with_no_locking LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectLock::test_delete_object_with_no_locking HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_crud_public_access_block LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3PublicAccessBlock::test_crud_public_access_block HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_put LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_put_in_different_region LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_put_acl LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_restore_object LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_restore_object 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_not_exist LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_bucket_not_exist HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_bucket_notifications_with_filter LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_bucket_notifications_with_filter HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_object_created_put LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_object_created_put HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_exists_filter_policy LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_exists_filter_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_exists_filter_policy_attributes_array LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_exists_filter_policy_attributes_array HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy_for_batch LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_for_batch HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy_on_message_body[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy_on_message_body[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy_on_message_body_array_attributes LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_array_attributes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_filter_policy_on_message_body_dot_attribute LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sub_filter_policy_nested_property LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_sub_filter_policy_nested_property HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_to_platform_endpoint_is_dispatched LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPlatformEndpoint::test_publish_to_platform_endpoint_is_dispatched HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_by_path_parameters LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_by_path_parameters HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_non_existent_target LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_non_existent_target HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_too_long_message LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_too_long_message HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_delivery_lambda LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_to_platform_endpoint_can_retrospect LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSRetrospectionEndpoints::test_publish_to_platform_endpoint_can_retrospect HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscription_tokens_can_retrospect LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSRetrospectionEndpoints::test_subscription_tokens_can_retrospect HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_list_subscriptions LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_list_subscriptions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_not_found_error_on_set_subscription_attributes LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_not_found_error_on_set_subscription_attributes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_unsubscribe_idempotency LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_unsubscribe_idempotency HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_validate_set_sub_attributes LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_validate_set_sub_attributes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_to_firehose_with_s3 LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionFirehose::test_publish_to_firehose_with_s3 HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dlq_external_http_endpoint[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_dlq_external_http_endpoint[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_multiple_subscriptions_http_endpoint LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_multiple_subscriptions_http_endpoint HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_redrive_policy_http_subscription LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_redrive_policy_http_subscription HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_external_http_endpoint[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_subscribe_external_http_endpoint[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_external_http_endpoint[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_subscribe_external_http_endpoint[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_lambda_verify_signature[1] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_publish_lambda_verify_signature[1] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_lambda_verify_signature[2] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_publish_lambda_verify_signature[2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_python_lambda_subscribe_sns_topic LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_redrive_policy_lambda_subscription LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_redrive_policy_lambda_subscription HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sns_topic_as_lambda_dead_letter_queue LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_sns_topic_as_lambda_dead_letter_queue HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_topic_email_subscription_confirmation LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSES::test_topic_email_subscription_confirmation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_message_attributes_not_missing LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_not_missing HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_message_attributes_prefixes LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_prefixes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_batch_messages_from_sns_to_sqs LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_batch_messages_from_sns_to_sqs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_sqs_from_sns LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_sqs_verify_signature[2] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_verify_signature[2] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_redrive_policy_sqs_queue_subscription[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_redrive_policy_sqs_queue_subscription[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_sqs_topic_subscription_confirmation LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_sqs_topic_subscription_confirmation HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_sqs_queue LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscribe_sqs_queue HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscribe_to_sqs_with_queue_url LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscribe_to_sqs_with_queue_url HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_subscription_after_failure_to_deliver LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscription_after_failure_to_deliver HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_fifo_topic_to_regular_sqs[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_fifo_topic_to_regular_sqs[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_message_to_fifo_sqs[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_message_to_fifo_sqs[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_fifo_messages_to_dlq[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_fifo_messages_to_dlq[True] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_to_fifo_topic_deduplication_on_topic_level LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_deduplication_on_topic_level HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False] LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_validations_for_fifo LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_validations_for_fifo HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_duplicate_topic_with_more_tags LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSTopicCrud::test_create_duplicate_topic_with_more_tags HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_create_topic_with_attributes LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSTopicCrud::test_create_topic_with_attributes HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_greater_than LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_greater_than HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_greater_than_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_greater_than_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_greater_than_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_greater_than_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_greater_than_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_greater_than_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_less_than LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_less_than HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_less_than_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_less_than_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_less_than_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_less_than_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_less_than_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_string_operators.py::TestStrings::test_string_less_than_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_greater_than LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_greater_than HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_greater_than_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_greater_than_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_greater_than_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_greater_than_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_greater_than_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_greater_than_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_less_than LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_less_than HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_less_than_equals LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_less_than_equals HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_less_than_equals_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_less_than_equals_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_timestamp_less_than_path LocalStack Community: tests/aws/services/stepfunctions/v2/choice_operators/test_timestamp_operators.py::TestTimestamps::test_timestamp_less_than_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_comment_in_parameters LocalStack Community: tests/aws/services/stepfunctions/v2/comments/test_comments.py::TestComments::test_comment_in_parameters HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_comments_as_per_docs LocalStack Community: tests/aws/services/stepfunctions/v2/comments/test_comments.py::TestComments::test_comments_as_per_docs HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invalid_param LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_dynamodb.py::TestTaskServiceDynamoDB::test_invalid_param HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_item_invalid_table_name LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_dynamodb.py::TestTaskServiceDynamoDB::test_put_item_invalid_table_name HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_item_no_such_table LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_dynamodb.py::TestTaskServiceDynamoDB::test_put_item_no_such_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_invoke_timeout LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_lambda.py::TestTaskServiceLambda::test_invoke_timeout HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_no_such_function LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_lambda.py::TestTaskServiceLambda::test_no_such_function HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_no_such_function_catch LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_lambda.py::TestTaskServiceLambda::test_no_such_function_catch HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_raise_exception LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_lambda.py::TestTaskServiceLambda::test_raise_exception HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_raise_exception_catch LocalStack Community: tests/aws/services/stepfunctions/v2/error_handling/test_task_service_lambda.py::TestTaskServiceLambda::test_raise_exception_catch HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_json_merge LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_json_manipulation.py::TestJsonManipulation::test_json_merge HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_json_to_string LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_json_manipulation.py::TestJsonManipulation::test_json_to_string HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_to_json LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_json_manipulation.py::TestJsonManipulation::test_string_to_json HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_split LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_string_operations.py::TestStringOperations::test_string_split HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_string_split_context_object LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_string_operations.py::TestStringOperations::test_string_split_context_object HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_path_based_on_data LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_path_based_on_data HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_step_functions_calling_api_gateway LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_wait_for_callback LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_events_base LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_events_task_service.py::TestTaskServiceEvents::test_put_events_base HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_fixed_timeout_lambda LocalStack Community: tests/aws/services/stepfunctions/v2/timeouts/test_timeouts.py::TestTimeouts::test_fixed_timeout_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_fixed_timeout_service_lambda LocalStack Community: tests/aws/services/stepfunctions/v2/timeouts/test_timeouts.py::TestTimeouts::test_fixed_timeout_service_lambda HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_fixed_timeout_service_lambda_with_path LocalStack Community: tests/aws/services/stepfunctions/v2/timeouts/test_timeouts.py::TestTimeouts::test_fixed_timeout_service_lambda_with_path HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_timeout LocalStack Community: tests/aws/services/stepfunctions/v2/timeouts/test_timeouts.py::TestTimeouts::test_global_timeout HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.amr-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.flac-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.flac-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.mp3-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp3-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.mp4-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp4-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.ogg-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.ogg-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-gb.webm-hello my name is] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.webm-hello my name is] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-us_video.mkv-one of the most vital] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-us_video.mkv-one of the most vital] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transcribe_supported_media_formats[../../files/en-us_video.mp4-one of the most vital] LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-us_video.mp4-one of the most vital] 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.12] LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.12] 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_call_with_es_creates_state_correctly LocalStack Community: tests/aws/test_moto.py::test_call_with_es_creates_state_correctly 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_build_image[SdkDockerClient-True-True] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_build_image[SdkDockerClient-True-True] 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_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_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_with_existing_target[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_into_container_with_existing_target[SdkDockerClient] HTTP Status Code: 200
    • test_copy_into_container_without_target_filename[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_into_container_without_target_filename[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_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_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_start_container_with_stdin_to_stdout[SdkDockerClient-True] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_start_container_with_stdin_to_stdout[SdkDockerClient-True] 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_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_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_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_ip_for_network_non_existent_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_ip_for_network_non_existent_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_container_name_not_existing[CmdDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_name_not_existing[CmdDockerClient] 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_get_system_info[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_system_info[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_inspect_container_volumes_with_no_volumes[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_inspect_container_volumes_with_no_volumes[SdkDockerClient] HTTP Status Code: 200
    • test_inspect_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_inspect_image[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_with_podman_image_ref_format[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_list_containers_with_podman_image_ref_format[SdkDockerClient] HTTP Status Code: 200
    • test_pull_docker_image[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_pull_docker_image[SdkDockerClient] HTTP Status Code: 200
    • test_pull_docker_image_with_hash[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_pull_docker_image_with_hash[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_error[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_run_container_error[SdkDockerClient] HTTP Status Code: 200
    • test_run_detached_with_logs[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_run_detached_with_logs[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_commit_creates_image_from_running_container[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerImages::test_commit_creates_image_from_running_container[SdkDockerClient] HTTP Status Code: 200
    • test_create_container_with_labels[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerLabels::test_create_container_with_labels[SdkDockerClient] HTTP Status Code: 200
    • test_run_container_with_labels[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerLabels::test_run_container_with_labels[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_disconnect_container_from_nonexistent_network[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_disconnect_container_from_nonexistent_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_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_sec_opt[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPermissions::test_container_with_sec_opt[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_host[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestRunWithAdditionalArgs::test_run_with_additional_arguments_add_host[SdkDockerClient] HTTP Status Code: 200
    • test_run_with_additional_arguments_random_port[SdkDockerClient] LocalStack Community: tests/integration/docker_utils/test_docker.py::TestRunWithAdditionalArgs::test_run_with_additional_arguments_random_port[SdkDockerClient] HTTP Status Code: 200
    • test_additional_allowed_origins LocalStack Community: tests/integration/test_security.py::TestCSRF::test_additional_allowed_origins HTTP Status Code: 200
    • test_disable_cors_headers LocalStack Community: tests/integration/test_security.py::TestCSRF::test_disable_cors_headers HTTP Status Code: 200
  • LocalStack Pro
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target 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_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_transact_write_items_streaming LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_transact_write_items_streaming_for_different_tables LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_write_items_streaming_for_different_tables 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_kinesis_firehose_s3 LocalStack Community: tests/aws/scenario/kinesis_firehose/test_kinesis_firehose.py::TestKinesisFirehoseScenario::test_kinesis_firehose_s3 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_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_kinesis_as_source LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source HTTP Status Code: 200
    • test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_kinesis_as_source_multiple_delivery_streams HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_bucket_does_not_exist LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_bucket_does_not_exist HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_copy_object_special_character LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_copy_object_special_character HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_bucket_versioning_order LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_get_bucket_versioning_order HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_object_content_length_with_virtual_host[False] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_get_object_content_length_with_virtual_host[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_object_part LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_get_object_part HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_and_get_object_with_content_language_disposition LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_and_get_object_with_content_language_disposition HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_and_get_object_with_hash_prefix LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_and_get_object_with_hash_prefix HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_get_object_special_character[test%123] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_get_object_special_character[test%123] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_object_acl_on_delete_marker LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_object_acl_on_delete_marker HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_object_storage_class[ONEZONE_IA-True] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_put_object_storage_class[ONEZONE_IA-True] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_range_header_body_length LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_range_header_body_length HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_region_header_exists LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_region_header_exists HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_batch_delete_public_objects_using_requests LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_batch_delete_public_objects_using_requests HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_copy_metadata_directive_copy LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_copy_metadata_directive_copy HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_copy_object_in_place_versioned LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_copy_object_in_place_versioned HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_copy_object_in_place_website_redirect_location LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_copy_object_in_place_website_redirect_location HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_copy_object_preconditions LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_copy_object_preconditions HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_copy_object_with_checksum[SHA256] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_copy_object_with_checksum[SHA256] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_download_object_with_lambda LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_download_object_with_lambda HTTP Status Code: 200 AWS validated
    • test_s3_get_object_preconditions[get_object] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_get_object_preconditions[get_object] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_get_object_preconditions[head_object] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_get_object_preconditions[head_object] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_lambda_integration LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_object_expiry LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_object_expiry HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_put_more_than_1000_items LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_put_more_than_1000_items HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_get_request_expires_ignored_if_validation_disabled LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_get_request_expires_ignored_if_validation_disabled HTTP Status Code: 200
    • test_put_url_metadata_with_sig_s3v4[False] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_put_url_metadata_with_sig_s3v4[False] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_presigned_url_expired[s3] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_presigned_url_expired[s3] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_presigned_url_expired[s3v4] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_presigned_url_expired[s3v4] HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_s3_put_presigned_url_with_different_headers[s3] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_s3_put_presigned_url_with_different_headers[s3] 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_presigned_url_signature_authentication_expired[s3-False] LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_signature_authentication_expired[s3-False] HTTP Status Code: 400 (ConditionalCheckFailedException) AWS validated Snapshot Tested
  • LocalStack Pro
    • test_kinesis_firehose_redshift LocalStack Pro: tests/aws/scenario/kinesis_firehose_redshift/test_kinesis_firehose_redshift.py::TestKinesisFirehoseScenario::test_kinesis_firehose_redshift HTTP Status Code: 200 AWS validated Snapshot Tested
    • 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_firehose_redshift_as_target LocalStack Pro: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_firehose_redshift_as_target HTTP Status Code: 200
    • 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_stream_journal LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal HTTP Status Code: 200
Parameters: ExpressionAttributeValues, Key, ReturnValues, TableName, UpdateExpression
  • LocalStack Community
    • test_notes_rest_api LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api HTTP Status Code: 200 AWS validated
    • 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_dynamodb_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_aws_sdk_task_service.py::TestTaskServiceAwsSdk::test_dynamodb_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_put_update_get_item LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_dynamodb_task_service.py::TestTaskServiceDynamoDB::test_put_update_get_item HTTP Status Code: 200 AWS validated Snapshot Tested
Parameters: ExpressionAttributeValues, Key, TableName, UpdateExpression
  • LocalStack Community
    • test_prefill_dynamodb_table LocalStack Community: tests/aws/scenario/loan_broker/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_table LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table HTTP Status Code: 200 AWS validated Snapshot Tested
    • test_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • 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: SSESpecification, TableName
  • 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
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_duplicate_event_source_mappings LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_duplicate_event_source_mappings 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_global_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_global_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_table_with_ttl_and_sse LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_table_with_ttl_and_sse HTTP Status Code: 200 AWS validated
    • test_ttl_cdk LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_ttl_cdk 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_time_to_live_deletion LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live_deletion 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)