├── .circleci └── config.yml ├── .dockerignore ├── .env-exporter ├── .git-blame-ignore-revs ├── .github ├── CLA.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── enhancement-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── bot_templates │ └── ASF_UPGRADE_PR.md ├── dependabot.yml ├── release.yml └── workflows │ ├── asf-updates.yml │ ├── dockerhub-description.yml │ ├── pr-cla.yml │ ├── pr-enforce-no-major-master.yml │ ├── pr-enforce-pr-labels.yml │ ├── pr-welcome-first-time-contributors.yml │ ├── rebase-release-prs.yml │ ├── rebase-release-targeting-prs.yml │ ├── stale-bot.yml │ ├── sync-project.yml │ ├── tests-cli.yml │ ├── tests-podman.yml │ └── tests-pro-integration.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── bin ├── docker-entrypoint.sh ├── hosts ├── localstack ├── localstack-start-docker-dev.sh ├── localstack-supervisor ├── localstack.bat ├── release-dev.sh └── release-helper.sh ├── doc ├── end_user_license_agreement │ └── README.md ├── external_services_integration │ └── kafka_self_managed_cluster │ │ ├── HOWTO.md │ │ └── docker-compose.yml ├── interaction │ └── README.md ├── localstack-readme-banner.svg ├── third-party-software-tools │ └── README.md └── troubleshoot │ └── README.md ├── docker-compose-pro.yml ├── docker-compose.yml ├── localstack ├── __init__.py ├── aws │ ├── __init__.py │ ├── accounts.py │ ├── api │ │ ├── __init__.py │ │ ├── acm │ │ │ └── __init__.py │ │ ├── apigateway │ │ │ └── __init__.py │ │ ├── cloudcontrol │ │ │ └── __init__.py │ │ ├── cloudformation │ │ │ └── __init__.py │ │ ├── cloudwatch │ │ │ └── __init__.py │ │ ├── config │ │ │ └── __init__.py │ │ ├── core.py │ │ ├── dynamodb │ │ │ └── __init__.py │ │ ├── dynamodbstreams │ │ │ └── __init__.py │ │ ├── ec2 │ │ │ └── __init__.py │ │ ├── es │ │ │ └── __init__.py │ │ ├── events │ │ │ └── __init__.py │ │ ├── firehose │ │ │ └── __init__.py │ │ ├── iam │ │ │ └── __init__.py │ │ ├── kinesis │ │ │ └── __init__.py │ │ ├── kms │ │ │ └── __init__.py │ │ ├── lambda_ │ │ │ └── __init__.py │ │ ├── logs │ │ │ └── __init__.py │ │ ├── opensearch │ │ │ └── __init__.py │ │ ├── redshift │ │ │ └── __init__.py │ │ ├── resource_groups │ │ │ └── __init__.py │ │ ├── resourcegroupstaggingapi │ │ │ └── __init__.py │ │ ├── route53 │ │ │ └── __init__.py │ │ ├── route53resolver │ │ │ └── __init__.py │ │ ├── s3 │ │ │ └── __init__.py │ │ ├── s3control │ │ │ └── __init__.py │ │ ├── secretsmanager │ │ │ └── __init__.py │ │ ├── ses │ │ │ └── __init__.py │ │ ├── sns │ │ │ └── __init__.py │ │ ├── sqs │ │ │ └── __init__.py │ │ ├── ssm │ │ │ └── __init__.py │ │ ├── stepfunctions │ │ │ └── __init__.py │ │ ├── sts │ │ │ └── __init__.py │ │ ├── support │ │ │ └── __init__.py │ │ ├── swf │ │ │ └── __init__.py │ │ └── transcribe │ │ │ └── __init__.py │ ├── app.py │ ├── chain.py │ ├── client.py │ ├── connect.py │ ├── forwarder.py │ ├── gateway.py │ ├── handlers │ │ ├── __init__.py │ │ ├── analytics.py │ │ ├── auth.py │ │ ├── codec.py │ │ ├── cors.py │ │ ├── fallback.py │ │ ├── internal.py │ │ ├── internal_requests.py │ │ ├── legacy.py │ │ ├── logging.py │ │ ├── metric_handler.py │ │ ├── partition_rewriter.py │ │ ├── proxy.py │ │ ├── region.py │ │ ├── routes.py │ │ ├── service.py │ │ └── service_plugin.py │ ├── mocking.py │ ├── protocol │ │ ├── __init__.py │ │ ├── op_router.py │ │ ├── parser.py │ │ ├── serializer.py │ │ ├── service_router.py │ │ └── validate.py │ ├── proxy.py │ ├── scaffold.py │ ├── serving │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── edge.py │ │ ├── hypercorn.py │ │ ├── werkzeug.py │ │ └── wsgi.py │ ├── skeleton.py │ ├── spec-patches.json │ ├── spec.py │ └── trace.py ├── cli │ ├── __init__.py │ ├── console.py │ ├── localstack.py │ ├── lpm.py │ ├── main.py │ ├── plugin.py │ ├── plugins.py │ └── profiles.py ├── config.py ├── constants.py ├── contrib │ └── __init__.py ├── deprecations.py ├── extensions │ ├── __init__.py │ └── api │ │ ├── __init__.py │ │ ├── aws.py │ │ ├── extension.py │ │ ├── http.py │ │ ├── runtime.py │ │ └── services.py ├── http │ ├── __init__.py │ ├── adapters.py │ ├── asgi.py │ ├── client.py │ ├── dispatcher.py │ ├── hypercorn.py │ ├── proxy.py │ ├── request.py │ ├── resource.py │ ├── response.py │ └── router.py ├── logging │ ├── __init__.py │ ├── format.py │ └── setup.py ├── packages │ ├── __init__.py │ ├── api.py │ ├── core.py │ ├── debugpy.py │ ├── ffmpeg.py │ ├── plugins.py │ └── terraform.py ├── plugins.py ├── runtime │ ├── __init__.py │ ├── analytics.py │ ├── events.py │ ├── exceptions.py │ ├── hooks.py │ ├── init.py │ ├── main.py │ └── shutdown.py ├── services │ ├── __init__.py │ ├── acm │ │ ├── __init__.py │ │ └── provider.py │ ├── apigateway │ │ ├── __init__.py │ │ ├── context.py │ │ ├── helpers.py │ │ ├── integration.py │ │ ├── invocations.py │ │ ├── models.py │ │ ├── patches.py │ │ ├── provider.py │ │ ├── router_asf.py │ │ └── templates.py │ ├── awslambda │ │ ├── __init__.py │ │ ├── api_utils.py │ │ ├── event_source_listeners │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── dynamodb_event_source_listener.py │ │ │ ├── event_source_listener.py │ │ │ ├── kinesis_event_source_listener.py │ │ │ ├── sqs_event_source_listener.py │ │ │ └── stream_event_source_listener.py │ │ ├── hooks.py │ │ ├── invocation │ │ │ ├── __init__.py │ │ │ ├── docker_runtime_executor.py │ │ │ ├── executor_endpoint.py │ │ │ ├── lambda_models.py │ │ │ ├── lambda_service.py │ │ │ ├── models.py │ │ │ ├── plugins.py │ │ │ ├── runtime_environment.py │ │ │ ├── runtime_executor.py │ │ │ └── version_manager.py │ │ ├── lambda_api.py │ │ ├── lambda_executors.py │ │ ├── lambda_models.py │ │ ├── lambda_starter.py │ │ ├── lambda_utils.py │ │ ├── layerfetcher │ │ │ ├── __init__.py │ │ │ └── layer_fetcher.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ ├── urlrouter.py │ │ └── usage.py │ ├── cloudformation │ │ ├── __init__.py │ │ ├── api_utils.py │ │ ├── cfn_utils.py │ │ ├── deploy.html │ │ ├── deployment_utils.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── entities.py │ │ │ ├── parameters.py │ │ │ ├── policy_loader.py │ │ │ ├── quirks.py │ │ │ ├── schema.py │ │ │ ├── template_deployer.py │ │ │ ├── template_preparer.py │ │ │ ├── transformers.py │ │ │ ├── types.py │ │ │ └── yaml_parser.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── apigateway.py │ │ │ ├── awslambda.py │ │ │ ├── cdk.py │ │ │ ├── certificatemanager.py │ │ │ ├── cloudformation.py │ │ │ ├── cloudwatch.py │ │ │ ├── dynamodb.py │ │ │ ├── ec2.py │ │ │ ├── ecr.py │ │ │ ├── elasticsearch.py │ │ │ ├── events.py │ │ │ ├── iam.py │ │ │ ├── kinesis.py │ │ │ ├── kinesisfirehose.py │ │ │ ├── kms.py │ │ │ ├── logs.py │ │ │ ├── opensearch.py │ │ │ ├── redshift.py │ │ │ ├── resourcegroups.py │ │ │ ├── route53.py │ │ │ ├── s3.py │ │ │ ├── secretsmanager.py │ │ │ ├── sns.py │ │ │ ├── sqs.py │ │ │ ├── ssm.py │ │ │ └── stepfunctions.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ ├── provider_utils.py │ │ ├── resource_provider.py │ │ ├── scaffolding │ │ │ ├── CloudformationSchema.zip │ │ │ ├── __main__.py │ │ │ ├── propgen.py │ │ │ └── templates │ │ │ │ ├── provider_template.py.j2 │ │ │ │ ├── test_getatt_template.py.j2 │ │ │ │ ├── test_integration_template.py.j2 │ │ │ │ └── test_parity_template.py.j2 │ │ ├── service_models.py │ │ ├── stores.py │ │ └── usage.py │ ├── cloudwatch │ │ ├── __init__.py │ │ ├── alarm_scheduler.py │ │ └── provider.py │ ├── configservice │ │ ├── __init__.py │ │ └── provider.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ ├── server.py │ │ └── utils.py │ ├── dynamodbstreams │ │ ├── __init__.py │ │ ├── dynamodbstreams_api.py │ │ ├── models.py │ │ └── provider.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── models.py │ │ └── provider.py │ ├── edge.py │ ├── es │ │ ├── __init__.py │ │ ├── plugins.py │ │ └── provider.py │ ├── events │ │ ├── __init__.py │ │ ├── models.py │ │ ├── provider.py │ │ └── scheduler.py │ ├── firehose │ │ ├── __init__.py │ │ ├── mappers.py │ │ ├── models.py │ │ └── provider.py │ ├── generic_proxy.py │ ├── iam │ │ ├── __init__.py │ │ ├── provider.py │ │ └── resource_providers │ │ │ ├── __init__.py │ │ │ ├── aws_iam_user.py │ │ │ └── aws_iam_user.schema.json │ ├── infra.py │ ├── internal.py │ ├── kinesis │ │ ├── __init__.py │ │ ├── kinesis_mock_server.py │ │ ├── kinesis_starter.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── plugins.py │ │ └── provider.py │ ├── kms │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── local_kms_provider.py │ │ ├── local_kms_server.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ └── utils.py │ ├── logs │ │ ├── __init__.py │ │ ├── models.py │ │ └── provider.py │ ├── messages.py │ ├── moto.py │ ├── motoserver.py │ ├── opensearch │ │ ├── __init__.py │ │ ├── cluster.py │ │ ├── cluster_manager.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ ├── resource_providers │ │ │ ├── __init__.py │ │ │ └── aws_opensearchservice_domain.py │ │ └── versions.py │ ├── plugins.py │ ├── providers.py │ ├── redshift │ │ ├── __init__.py │ │ └── provider.py │ ├── resourcegroups │ │ ├── __init__.py │ │ └── provider.py │ ├── resourcegroupstaggingapi │ │ ├── __init__.py │ │ └── provider.py │ ├── route53 │ │ ├── __init__.py │ │ ├── models.py │ │ └── provider.py │ ├── route53resolver │ │ ├── __init__.py │ │ ├── models.py │ │ ├── provider.py │ │ └── utils.py │ ├── s3 │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── cors.py │ │ ├── models.py │ │ ├── multipart_content.py │ │ ├── notifications.py │ │ ├── presigned_url.py │ │ ├── provider.py │ │ ├── s3_listener.py │ │ ├── s3_starter.py │ │ ├── s3_utils.py │ │ ├── utils.py │ │ ├── virtual_host.py │ │ └── website_hosting.py │ ├── s3control │ │ ├── __init__.py │ │ └── provider.py │ ├── secretsmanager │ │ ├── __init__.py │ │ └── provider.py │ ├── ses │ │ ├── __init__.py │ │ ├── models.py │ │ └── provider.py │ ├── sns │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── models.py │ │ ├── provider.py │ │ └── publisher.py │ ├── sqs │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── models.py │ │ ├── provider.py │ │ ├── query_api.py │ │ └── utils.py │ ├── ssm │ │ ├── __init__.py │ │ ├── provider.py │ │ └── resource_providers │ │ │ ├── __init__.py │ │ │ ├── aws_ssm_parameter.py │ │ │ └── aws_ssm_parameter.schema.json │ ├── stepfunctions │ │ ├── __init__.py │ │ ├── asl │ │ │ ├── __init__.py │ │ │ ├── antlr │ │ │ │ ├── ASLIntrinsicLexer.g4 │ │ │ │ ├── ASLIntrinsicParser.g4 │ │ │ │ ├── ASLLexer.g4 │ │ │ │ ├── ASLParser.g4 │ │ │ │ └── runtime │ │ │ │ │ ├── ASLIntrinsicLexer.interp │ │ │ │ │ ├── ASLIntrinsicLexer.py │ │ │ │ │ ├── ASLIntrinsicLexer.tokens │ │ │ │ │ ├── ASLIntrinsicParser.interp │ │ │ │ │ ├── ASLIntrinsicParser.py │ │ │ │ │ ├── ASLIntrinsicParser.tokens │ │ │ │ │ ├── ASLIntrinsicParserListener.py │ │ │ │ │ ├── ASLIntrinsicParserVisitor.py │ │ │ │ │ ├── ASLLexer.interp │ │ │ │ │ ├── ASLLexer.py │ │ │ │ │ ├── ASLLexer.tokens │ │ │ │ │ ├── ASLParser.interp │ │ │ │ │ ├── ASLParser.py │ │ │ │ │ ├── ASLParser.tokens │ │ │ │ │ ├── ASLParserListener.py │ │ │ │ │ └── ASLParserVisitor.py │ │ │ ├── antlt4utils │ │ │ │ ├── __init__.py │ │ │ │ └── antlr4utils.py │ │ │ ├── component │ │ │ │ ├── __init__.py │ │ │ │ ├── common │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── catch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── catch_decl.py │ │ │ │ │ │ ├── catch_outcome.py │ │ │ │ │ │ ├── catcher_decl.py │ │ │ │ │ │ ├── catcher_outcome.py │ │ │ │ │ │ └── catcher_props.py │ │ │ │ │ ├── cause_decl.py │ │ │ │ │ ├── comment.py │ │ │ │ │ ├── error_decl.py │ │ │ │ │ ├── error_name │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── custom_error_name.py │ │ │ │ │ │ ├── error_equals_decl.py │ │ │ │ │ │ ├── error_name.py │ │ │ │ │ │ ├── failure_event.py │ │ │ │ │ │ ├── states_error_name.py │ │ │ │ │ │ └── states_error_name_type.py │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── end.py │ │ │ │ │ │ ├── next.py │ │ │ │ │ │ └── start_at.py │ │ │ │ │ ├── parameters.py │ │ │ │ │ ├── path │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── input_path.py │ │ │ │ │ │ ├── items_path.py │ │ │ │ │ │ ├── output_path.py │ │ │ │ │ │ └── result_path.py │ │ │ │ │ ├── payload │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── payloadvalue │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── payload_value.py │ │ │ │ │ │ │ ├── payloadarr │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── payload_arr.py │ │ │ │ │ │ │ ├── payloadbinding │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── payload_binding.py │ │ │ │ │ │ │ ├── payload_binding_intrinsic_func.py │ │ │ │ │ │ │ ├── payload_binding_path.py │ │ │ │ │ │ │ ├── payload_binding_path_context_obj.py │ │ │ │ │ │ │ └── payload_binding_value.py │ │ │ │ │ │ │ ├── payloadtmpl │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── payload_tmpl.py │ │ │ │ │ │ │ └── payloadvaluelit │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── payload_value_bool.py │ │ │ │ │ │ │ ├── payload_value_float.py │ │ │ │ │ │ │ ├── payload_value_int.py │ │ │ │ │ │ │ ├── payload_value_lit.py │ │ │ │ │ │ │ ├── payload_value_null.py │ │ │ │ │ │ │ └── payload_value_str.py │ │ │ │ │ ├── result_selector.py │ │ │ │ │ ├── retry │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backoff_rate_decl.py │ │ │ │ │ │ ├── interval_seconds_decl.py │ │ │ │ │ │ ├── max_attempts_decl.py │ │ │ │ │ │ ├── retrier_decl.py │ │ │ │ │ │ ├── retrier_outcome.py │ │ │ │ │ │ ├── retrier_props.py │ │ │ │ │ │ ├── retry_decl.py │ │ │ │ │ │ └── retry_outcome.py │ │ │ │ │ └── timeouts │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── timeout.py │ │ │ │ ├── component.py │ │ │ │ ├── eval_component.py │ │ │ │ ├── intrinsic │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── argument │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── function_argument.py │ │ │ │ │ │ ├── function_argument_bool.py │ │ │ │ │ │ ├── function_argument_float.py │ │ │ │ │ │ ├── function_argument_function.py │ │ │ │ │ │ ├── function_argument_int.py │ │ │ │ │ │ ├── function_argument_json_path.py │ │ │ │ │ │ ├── function_argument_list.py │ │ │ │ │ │ └── function_argument_string.py │ │ │ │ │ ├── component.py │ │ │ │ │ ├── function │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── function.py │ │ │ │ │ │ └── statesfunction │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── array │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── array.py │ │ │ │ │ │ │ ├── array_contains.py │ │ │ │ │ │ │ ├── array_get_item.py │ │ │ │ │ │ │ ├── array_length.py │ │ │ │ │ │ │ ├── array_partition.py │ │ │ │ │ │ │ ├── array_range.py │ │ │ │ │ │ │ └── array_unique.py │ │ │ │ │ │ │ ├── encoding_decoding │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── base_64_decode.py │ │ │ │ │ │ │ └── base_64_encode.py │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── string_format.py │ │ │ │ │ │ │ ├── hash_calculations │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── hash_algorithm.py │ │ │ │ │ │ │ └── hash_func.py │ │ │ │ │ │ │ ├── json_manipulation │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── json_merge.py │ │ │ │ │ │ │ ├── json_to_string.py │ │ │ │ │ │ │ └── string_to_json.py │ │ │ │ │ │ │ ├── math_operations │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── math_add.py │ │ │ │ │ │ │ └── math_random.py │ │ │ │ │ │ │ ├── states_function.py │ │ │ │ │ │ │ ├── states_function_array.py │ │ │ │ │ │ │ ├── states_function_format.py │ │ │ │ │ │ │ ├── states_function_json_to_string.py │ │ │ │ │ │ │ ├── states_function_string_to_json.py │ │ │ │ │ │ │ ├── states_function_uuid.py │ │ │ │ │ │ │ ├── string_operations │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── string_split.py │ │ │ │ │ │ │ └── unique_id_generation │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── uuid.py │ │ │ │ │ ├── functionname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── custom_function_name.py │ │ │ │ │ │ ├── function_name.py │ │ │ │ │ │ ├── state_fuinction_name_types.py │ │ │ │ │ │ ├── state_function_name_types.py │ │ │ │ │ │ └── states_function_name.py │ │ │ │ │ ├── member.py │ │ │ │ │ ├── member_access.py │ │ │ │ │ └── program.py │ │ │ │ ├── program │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── program.py │ │ │ │ ├── state │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── state.py │ │ │ │ │ ├── state_choice │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── choice_rule.py │ │ │ │ │ │ ├── choice_rule_stmt.py │ │ │ │ │ │ ├── choices_decl.py │ │ │ │ │ │ ├── comparison │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── comparison.py │ │ │ │ │ │ │ ├── comparison_composite.py │ │ │ │ │ │ │ ├── comparison_func.py │ │ │ │ │ │ │ ├── comparison_operator_type.py │ │ │ │ │ │ │ ├── comparison_props.py │ │ │ │ │ │ │ ├── comparison_stmt.py │ │ │ │ │ │ │ └── operator │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ │ │ ├── implementations │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── boolean_equals.py │ │ │ │ │ │ │ │ ├── is_operator.py │ │ │ │ │ │ │ │ ├── numeric.py │ │ │ │ │ │ │ │ ├── string_operators.py │ │ │ │ │ │ │ │ └── timestamp_operators.py │ │ │ │ │ │ │ │ └── operator.py │ │ │ │ │ │ ├── default_decl.py │ │ │ │ │ │ └── state_choice.py │ │ │ │ │ ├── state_continue_with.py │ │ │ │ │ ├── state_execution │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── execute_state.py │ │ │ │ │ │ ├── state_map │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── itemprocessor │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── item_processor.py │ │ │ │ │ │ │ │ ├── item_processor_props.py │ │ │ │ │ │ │ │ └── processor_config.py │ │ │ │ │ │ │ ├── max_concurrency.py │ │ │ │ │ │ │ ├── mode.py │ │ │ │ │ │ │ └── state_map.py │ │ │ │ │ │ ├── state_parallel │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── branches_decl.py │ │ │ │ │ │ │ └── state_parallel.py │ │ │ │ │ │ └── state_task │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── lambda_eval_utils.py │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── resource.py │ │ │ │ │ │ │ ├── state_task_service.py │ │ │ │ │ │ │ ├── state_task_service_aws_sdk.py │ │ │ │ │ │ │ ├── state_task_service_callback.py │ │ │ │ │ │ │ ├── state_task_service_lambda.py │ │ │ │ │ │ │ └── state_task_service_sqs.py │ │ │ │ │ │ │ ├── state_task.py │ │ │ │ │ │ │ └── state_task_lambda.py │ │ │ │ │ ├── state_fail │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── state_fail.py │ │ │ │ │ ├── state_pass │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── result.py │ │ │ │ │ │ └── state_pass.py │ │ │ │ │ ├── state_props.py │ │ │ │ │ ├── state_succeed │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── state_succeed.py │ │ │ │ │ ├── state_type.py │ │ │ │ │ └── state_wait │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── state_wait.py │ │ │ │ │ │ ├── variable.py │ │ │ │ │ │ └── wait_function │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── seconds.py │ │ │ │ │ │ ├── seconds_path.py │ │ │ │ │ │ ├── timestamp.py │ │ │ │ │ │ ├── timestamp_path.py │ │ │ │ │ │ └── wait_function.py │ │ │ │ └── states.py │ │ │ ├── eval │ │ │ │ ├── __init__.py │ │ │ │ ├── callback │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── callback.py │ │ │ │ ├── contextobject │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── contex_object.py │ │ │ │ ├── count_down_latch.py │ │ │ │ ├── environment.py │ │ │ │ ├── event │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── event_detail.py │ │ │ │ │ └── event_history.py │ │ │ │ ├── program_worker.py │ │ │ │ └── programstate │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── program_ended.py │ │ │ │ │ ├── program_error.py │ │ │ │ │ ├── program_running.py │ │ │ │ │ ├── program_state.py │ │ │ │ │ └── program_stopped.py │ │ │ ├── parse │ │ │ │ ├── __init__.py │ │ │ │ ├── asl_parser.py │ │ │ │ ├── intrinsic │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── intrinsic_parser.py │ │ │ │ │ └── preprocessor.py │ │ │ │ ├── preprocessor.py │ │ │ │ └── typed_props.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── encoding.py │ │ │ │ └── json_path.py │ │ ├── backend │ │ │ ├── __init__.py │ │ │ ├── execution.py │ │ │ ├── execution_worker.py │ │ │ ├── execution_worker_comm.py │ │ │ ├── state_machine.py │ │ │ └── store.py │ │ ├── packages.py │ │ ├── plugins.py │ │ ├── provider.py │ │ ├── provider_v2.py │ │ ├── stepfunctions_starter.py │ │ └── stepfunctions_utils.py │ ├── stores.py │ ├── sts │ │ ├── __init__.py │ │ └── provider.py │ ├── support │ │ ├── __init__.py │ │ └── provider.py │ ├── swf │ │ ├── __init__.py │ │ └── provider.py │ └── transcribe │ │ ├── __init__.py │ │ ├── models.py │ │ └── provider.py ├── state │ ├── __init__.py │ ├── core.py │ ├── inspect.py │ ├── pickle.py │ └── snapshot.py ├── testing │ ├── __init__.py │ ├── aws │ │ ├── __init__.py │ │ ├── asf_utils.py │ │ ├── cloudformation_utils.py │ │ ├── lambda_utils.py │ │ └── util.py │ ├── pytest │ │ ├── __init__.py │ │ ├── cloudtrail_tracking.py │ │ ├── cloudtrail_tracking │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── cdk.json │ │ │ ├── cloudtrail_tracking │ │ │ │ ├── __init__.py │ │ │ │ ├── cloudtrail_tracking_stack.py │ │ │ │ └── handler │ │ │ │ │ └── index.py │ │ │ ├── requirements-dev.txt │ │ │ ├── requirements.txt │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_cloudtrail_tracking_handler.py │ │ ├── detect_thread_leakage.py │ │ ├── filters.py │ │ ├── find_orphaned_snapshots.py │ │ ├── fixture_conflicts.py │ │ ├── fixtures.py │ │ ├── metric_collection.py │ │ ├── snapshot.py │ │ └── util.py │ └── snapshots │ │ ├── __init__.py │ │ ├── prototype.py │ │ ├── report.py │ │ ├── transformer.py │ │ └── transformer_utility.py └── utils │ ├── __init__.py │ ├── analytics │ ├── __init__.py │ ├── cli.py │ ├── client.py │ ├── events.py │ ├── logger.py │ ├── metadata.py │ ├── publisher.py │ ├── service_request_aggregator.py │ └── usage.py │ ├── archives.py │ ├── async_utils.py │ ├── asyncio.py │ ├── auth.py │ ├── aws │ ├── __init__.py │ ├── arns.py │ ├── aws_models.py │ ├── aws_responses.py │ ├── aws_stack.py │ ├── client.py │ ├── client_types.py │ ├── dead_letter_queue.py │ ├── message_forwarding.py │ ├── queries.py │ ├── request_context.py │ ├── resources.py │ └── templating.py │ ├── bootstrap.py │ ├── cloudwatch │ ├── __init__.py │ └── cloudwatch_util.py │ ├── collections.py │ ├── common.py │ ├── config_listener.py │ ├── container_networking.py │ ├── container_utils │ ├── __init__.py │ ├── container_client.py │ ├── docker_cmd_client.py │ └── docker_sdk_client.py │ ├── coverage_docs.py │ ├── crypto.py │ ├── diagnose.py │ ├── docker_utils.py │ ├── files.py │ ├── functions.py │ ├── http.py │ ├── json.py │ ├── kinesis │ ├── __init__.py │ ├── java │ │ └── logging.properties │ ├── kclipy_helper.py │ ├── kinesis_connector.py │ └── kinesis_util.py │ ├── net.py │ ├── no_exit_argument_parser.py │ ├── numbers.py │ ├── objects.py │ ├── patch.py │ ├── platform.py │ ├── run.py │ ├── scheduler.py │ ├── server │ ├── __init__.py │ ├── http2_server.py │ ├── multiserver.py │ └── proxy_server.py │ ├── serving.py │ ├── ssl.py │ ├── strings.py │ ├── sync.py │ ├── tagging.py │ ├── tail.py │ ├── testutil.py │ ├── threads.py │ ├── time.py │ ├── urls.py │ ├── venv.py │ └── xml.py ├── mypy.ini ├── pyproject.toml ├── scripts ├── .gitignore ├── build_common_test_functions.sh ├── capture_notimplemented_responses.py ├── gather_outdated_snapshots.py ├── generate_minimal_boto3stubs_install.py └── tinybird │ ├── retrieve_legacy_data_from_circleci.py │ └── upload_raw_test_metrics_and_coverage.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── bootstrap ├── __init__.py ├── conftest.py ├── test_cli.py └── test_localstack_container.py ├── conftest.py ├── integration ├── __init__.py ├── apigateway │ ├── __init__.py │ ├── apigateway_fixtures.py │ ├── conftest.py │ ├── test_apigateway_api.py │ ├── test_apigateway_api.snapshot.json │ ├── test_apigateway_basic.py │ ├── test_apigateway_common.py │ ├── test_apigateway_common.snapshot.json │ ├── test_apigateway_dynamodb.py │ ├── test_apigateway_dynamodb.snapshot.json │ ├── test_apigateway_extended.py │ ├── test_apigateway_import.py │ ├── test_apigateway_import.snapshot.json │ ├── test_apigateway_integrations.py │ ├── test_apigateway_integrations.snapshot.json │ ├── test_apigateway_kinesis.py │ ├── test_apigateway_kinesis.snapshot.json │ ├── test_apigateway_lambda.py │ └── test_apigateway_lambda.snapshot.json ├── aws │ ├── __init__.py │ └── test_app.py ├── awslambda │ ├── __init__.py │ ├── conftest.py │ ├── functions │ │ ├── __init__.py │ │ ├── apigw_502.js │ │ ├── apigw_integration.js │ │ ├── common │ │ │ ├── .gitignore │ │ │ ├── echo │ │ │ │ ├── dotnet6 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── Function.cs │ │ │ │ │ │ └── dotnet6.csproj │ │ │ │ ├── go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── go.sum │ │ │ │ │ │ └── main.go │ │ │ │ ├── java │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ └── echo │ │ │ │ │ │ └── Handler.java │ │ │ │ ├── nodejs │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ ├── provided │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ └── function.sh │ │ │ │ ├── python │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── handler.py │ │ │ │ └── ruby │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ └── function.rb │ │ │ ├── endpointinjection │ │ │ │ ├── dotnet6 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── Function.cs │ │ │ │ │ │ └── dotnet6.csproj │ │ │ │ ├── go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── go.sum │ │ │ │ │ │ └── main.go │ │ │ │ ├── java │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ └── echo │ │ │ │ │ │ └── Handler.java │ │ │ │ ├── nodejs │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ ├── nodejs18.x │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── index.mjs │ │ │ │ ├── provided │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Cargo.lock │ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main.rs │ │ │ │ ├── python │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── handler.py │ │ │ │ └── ruby │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ └── function.rb │ │ │ ├── introspection │ │ │ │ ├── dotnet6 │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── Function.cs │ │ │ │ │ │ └── dotnet6.csproj │ │ │ │ ├── go │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── go.mod │ │ │ │ │ │ ├── go.sum │ │ │ │ │ │ └── main.go │ │ │ │ ├── java │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ └── echo │ │ │ │ │ │ └── Handler.java │ │ │ │ ├── nodejs │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── index.js │ │ │ │ ├── provided │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Cargo.lock │ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main.rs │ │ │ │ ├── python │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ │ └── handler.py │ │ │ │ └── ruby │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src │ │ │ │ │ └── function.rb │ │ │ └── uncaughtexception │ │ │ │ ├── dotnet6 │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── Function.cs │ │ │ │ │ └── dotnet6.csproj │ │ │ │ ├── go │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── go.mod │ │ │ │ │ ├── go.sum │ │ │ │ │ └── main.go │ │ │ │ ├── java │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── echo │ │ │ │ │ └── Handler.java │ │ │ │ ├── nodejs │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ └── index.js │ │ │ │ ├── provided │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Cargo.lock │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ │ ├── python │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ └── handler.py │ │ │ │ └── ruby │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ └── function.rb │ │ ├── custom-runtime │ │ │ ├── bootstrap │ │ │ └── function.sh │ │ ├── dotnet6 │ │ │ ├── dotnet6.sln │ │ │ ├── dotnet6.zip │ │ │ └── src │ │ │ │ └── dotnet6 │ │ │ │ ├── Function.cs │ │ │ │ ├── Readme.md │ │ │ │ └── dotnet6.csproj │ │ ├── dotnetcore31 │ │ │ ├── dotnetcore31.sln │ │ │ ├── dotnetcore31.zip │ │ │ └── src │ │ │ │ └── dotnetcore31 │ │ │ │ ├── Function.cs │ │ │ │ ├── Readme.md │ │ │ │ └── dotnetcore31.csproj │ │ ├── echo.zip │ │ ├── golang │ │ │ ├── go.mod │ │ │ └── handler.go │ │ ├── hot-reloading │ │ │ ├── nodejs │ │ │ │ └── handler.mjs │ │ │ └── python │ │ │ │ └── handler.py │ │ ├── index.py │ │ ├── java │ │ │ ├── lambda_echo │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build.gradle │ │ │ │ ├── build │ │ │ │ │ └── distributions │ │ │ │ │ │ └── lambda-function-built-by-gradle.zip │ │ │ │ ├── lambda-function-with-lib-0.0.1.jar │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── cloud │ │ │ │ │ └── localstack │ │ │ │ │ └── sample │ │ │ │ │ └── LambdaHandlerWithLib.java │ │ │ └── lambda_multiple_handlers │ │ │ │ ├── build.gradle │ │ │ │ ├── build │ │ │ │ └── distributions │ │ │ │ │ └── lambda-function-with-multiple-handlers.zip │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── cloud │ │ │ │ └── localstack │ │ │ │ └── sample │ │ │ │ └── LambdaHandlerWithInterfaceAndCustom.java │ │ ├── lambda_aws_proxy.py │ │ ├── lambda_cache.js │ │ ├── lambda_cache.py │ │ ├── lambda_context.py │ │ ├── lambda_echo.js │ │ ├── lambda_echo.py │ │ ├── lambda_echofail.py │ │ ├── lambda_environment.py │ │ ├── lambda_handler.js │ │ ├── lambda_handler_es6.mjs │ │ ├── lambda_hello_world.py │ │ ├── lambda_integration.js │ │ ├── lambda_integration.py │ │ ├── lambda_integration.rb │ │ ├── lambda_introspect.py │ │ ├── lambda_invocation_type.py │ │ ├── lambda_logging.py │ │ ├── lambda_parallel.py │ │ ├── lambda_print.py │ │ ├── lambda_put_item.py │ │ ├── lambda_python_apigwhandler.py │ │ ├── lambda_python_version.py │ │ ├── lambda_s3_integration.js │ │ ├── lambda_s3_integration_presign.js │ │ ├── lambda_s3_integration_sdk_v2.js │ │ ├── lambda_send_message.py │ │ ├── lambda_sleep_environment.py │ │ ├── lambda_sqs_batch_item_failure.py │ │ ├── lambda_sqs_integration.py │ │ ├── lambda_start_execution.py │ │ ├── lambda_timeout.py │ │ ├── lambda_timeout_env.py │ │ ├── lambda_triggered_by_s3.py │ │ ├── lambda_triggered_by_sqs_download_s3_file.py │ │ ├── lambda_ulimits.py │ │ ├── lambda_unhandled_error.py │ │ ├── lambda_url.js │ │ ├── lambda_version.py │ │ ├── python3 │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── lambda1 │ │ │ │ ├── __init__.py │ │ │ │ ├── handler1.py │ │ │ │ ├── lambda1.zip │ │ │ │ └── settings.py │ │ │ └── lambda2 │ │ │ │ ├── __init__.py │ │ │ │ ├── handler2.py │ │ │ │ ├── lambda2.zip │ │ │ │ └── settings.py │ │ ├── rust-lambda │ │ │ ├── .gitignore │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── Makefile │ │ │ ├── function.zip │ │ │ └── src │ │ │ │ └── main.rs │ │ └── xray_tracing_traceid.py │ ├── layers │ │ └── testlayer.zip │ ├── test_lambda.py │ ├── test_lambda.snapshot.json │ ├── test_lambda_api.py │ ├── test_lambda_api.snapshot.json │ ├── test_lambda_common.py │ ├── test_lambda_common.snapshot.json │ ├── test_lambda_destinations.py │ ├── test_lambda_destinations.snapshot.json │ ├── test_lambda_developer_tools.py │ ├── test_lambda_integration_dynamodbstreams.py │ ├── test_lambda_integration_dynamodbstreams.snapshot.json │ ├── test_lambda_integration_kinesis.py │ ├── test_lambda_integration_kinesis.snapshot.json │ ├── test_lambda_integration_sqs.py │ ├── test_lambda_integration_sqs.snapshot.json │ ├── test_lambda_integration_xray.py │ ├── test_lambda_legacy.py │ ├── test_lambda_legacy.snapshot.json │ ├── test_lambda_performance.py │ ├── test_lambda_runtimes.py │ ├── test_lambda_runtimes.snapshot.json │ └── test_lambda_whitebox.py ├── cloudcontrol │ ├── __init__.py │ ├── test_cloudcontrol_api.py │ └── test_cloudcontrol_api.snapshot.json ├── cloudformation │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── test_changesets.py │ │ ├── test_changesets.snapshot.json │ │ ├── test_drift_detection.py │ │ ├── test_drift_detection.snapshot.json │ │ ├── test_extensions_api.py │ │ ├── test_extensions_api.snapshot.json │ │ ├── test_extensions_hooks.py │ │ ├── test_extensions_hooks.snapshot.json │ │ ├── test_extensions_modules.py │ │ ├── test_extensions_modules.snapshot.json │ │ ├── test_extensions_resourcetypes.py │ │ ├── test_extensions_resourcetypes.snapshot.json │ │ ├── test_get_template_summary.py │ │ ├── test_get_template_summary.snapshot.json │ │ ├── test_nested_stacks.py │ │ ├── test_nested_stacks.snapshot.json │ │ ├── test_reference_resolving.py │ │ ├── test_reference_resolving.snapshot.json │ │ ├── test_stack_policies.py │ │ ├── test_stack_policies.snapshot.json │ │ ├── test_stacks.py │ │ ├── test_stacks.snapshot.json │ │ ├── test_transformers.py │ │ ├── test_transformers.snapshot.json │ │ ├── test_update_stack.py │ │ └── test_update_stack.snapshot.json │ ├── artifacts │ │ └── extensions │ │ │ ├── hooks │ │ │ ├── localstack-testing-deployablehook.zip │ │ │ └── localstack-testing-testhook.zip │ │ │ ├── modules │ │ │ └── localstack-testing-testmodule-module.zip │ │ │ └── resourcetypes │ │ │ ├── localstack-testing-deployableresource.zip │ │ │ └── localstack-testing-testresource.zip │ ├── engine │ │ ├── __init__.py │ │ ├── test_conditions.py │ │ ├── test_conditions.snapshot.json │ │ ├── test_mappings.py │ │ └── test_mappings.snapshot.json │ ├── resource_providers │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── iam │ │ │ ├── __init__.py │ │ │ ├── templates │ │ │ │ ├── user_basic.yaml │ │ │ │ ├── user_basic_autogenerated.yaml │ │ │ │ ├── user_full.yaml │ │ │ │ ├── user_getatt_exploration.yaml │ │ │ │ └── user_update.yaml │ │ │ ├── test_aws_iam_user_basic.py │ │ │ ├── test_aws_iam_user_basic.snapshot.json │ │ │ ├── test_aws_iam_user_exploration.py │ │ │ ├── test_aws_iam_user_parity.py │ │ │ └── test_aws_iam_user_parity.snapshot.json │ │ ├── opensearch │ │ │ ├── templates │ │ │ │ └── domain.yaml │ │ │ └── test_domain.py │ │ └── ssm │ │ │ ├── templates │ │ │ ├── aws_ssm_parameter_getatt_exploration.yaml │ │ │ ├── aws_ssm_parameter_minimal.yaml │ │ │ ├── aws_ssm_parameter_update_without_replacement.yaml │ │ │ └── parameter.yaml │ │ │ ├── test_parameter.py │ │ │ ├── test_parameter.snapshot.json │ │ │ └── test_parameter_getatt_exploration.py │ ├── resources │ │ ├── __init__.py │ │ ├── test_acm.py │ │ ├── test_apigateway.py │ │ ├── test_apigateway.snapshot.json │ │ ├── test_cdk.py │ │ ├── test_cdk.snapshot.json │ │ ├── test_cloudformation.py │ │ ├── test_cloudformation.snapshot.json │ │ ├── test_cloudwatch.py │ │ ├── test_cloudwatch.snapshot.json │ │ ├── test_dynamodb.py │ │ ├── test_dynamodb.snapshot.json │ │ ├── test_ec2.py │ │ ├── test_ec2.snapshot.json │ │ ├── test_elasticsearch.py │ │ ├── test_events.py │ │ ├── test_firehose.py │ │ ├── test_firehose.snapshot.json │ │ ├── test_iam.py │ │ ├── test_iam.snapshot.json │ │ ├── test_integration.py │ │ ├── test_kinesis.py │ │ ├── test_kinesis.snapshot.json │ │ ├── test_kms.py │ │ ├── test_kms.snapshot.json │ │ ├── test_lambda.py │ │ ├── test_lambda.snapshot.json │ │ ├── test_legacy.py │ │ ├── test_logs.py │ │ ├── test_logs.snapshot.json │ │ ├── test_opensearch.py │ │ ├── test_redshift.py │ │ ├── test_route53.py │ │ ├── test_s3.py │ │ ├── test_s3.snapshot.json │ │ ├── test_sam.py │ │ ├── test_sam.snapshot.json │ │ ├── test_secretsmanager.py │ │ ├── test_secretsmanager.snapshot.json │ │ ├── test_sns.py │ │ ├── test_sqs.py │ │ ├── test_ssm.py │ │ ├── test_stack_sets.py │ │ ├── test_stack_sets.snapshot.json │ │ └── test_stepfunctions.py │ ├── test_cloudformation_ui.py │ ├── test_cloudtrail_trace.py │ ├── test_template_engine.py │ ├── test_template_engine.snapshot.json │ └── test_unsupported.py ├── conftest.py ├── docker_utils │ ├── __init__.py │ ├── conftest.py │ └── test_docker.py ├── files │ ├── api_definition.yaml │ ├── cdk-bootstrap-requests.json │ ├── en-gb.amr │ ├── en-gb.flac │ ├── en-gb.mp3 │ ├── en-gb.mp4 │ ├── en-gb.ogg │ ├── en-gb.wav │ ├── en-gb.webm │ ├── lambda_simple.js │ ├── openapi-basepath-server-variable.yaml │ ├── openapi-basepath-url.yaml │ ├── openapi-mock.json │ ├── openapi.spec.circular-ref-with-request-body.json │ ├── openapi.spec.circular-ref.json │ ├── openapi.spec.global-auth.json │ ├── openapi.spec.json │ ├── openapi.spec.pulumi.json │ ├── openapi.spec.tf.json │ ├── pets.json │ ├── petstore-authorizer.swagger.json │ ├── petstore-swagger.json │ ├── s3.requests.txt │ ├── swagger-mock-cors.json │ └── swagger.json ├── s3 │ ├── __init__.py │ ├── test_s3.py │ ├── test_s3.snapshot.json │ ├── test_s3_cors.py │ ├── test_s3_cors.snapshot.json │ ├── test_s3_notifications_eventbridge.py │ ├── test_s3_notifications_eventbridge.snapshot.json │ ├── test_s3_notifications_lambda.py │ ├── test_s3_notifications_lambda.snapshot.json │ ├── test_s3_notifications_sns.py │ ├── test_s3_notifications_sns.snapshot.json │ ├── test_s3_notifications_sqs.py │ └── test_s3_notifications_sqs.snapshot.json ├── secretsmanager │ ├── __init__.py │ ├── functions │ │ ├── __init__.py │ │ └── lambda_rotate_secret.py │ ├── test_secretsmanager.py │ └── test_secretsmanager.snapshot.json ├── serverless │ ├── handler.js │ ├── handler.py │ ├── package.json │ └── serverless.yml ├── services │ ├── __init__.py │ └── test_internal.py ├── stepfunctions │ ├── __init__.py │ ├── conftest.py │ ├── lambda_functions │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── echo_function.py │ │ │ └── id_function.py │ │ └── lambda_functions.py │ ├── legacy │ │ ├── __init__.py │ │ └── test_stepfunctions_legacy.py │ ├── templates │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── base_templates.py │ │ │ └── statemachines │ │ │ │ ├── invalid_der.json5 │ │ │ │ ├── pass_result.json5 │ │ │ │ ├── task_seq_2.json5 │ │ │ │ └── wait_1_min.json5 │ │ ├── callbacks │ │ │ ├── __init__.py │ │ │ ├── callback_templates.py │ │ │ └── statemachines │ │ │ │ ├── sqs_failure_on_task_token.json5 │ │ │ │ ├── sqs_success_on_task_token.json5 │ │ │ │ ├── sqs_wait_for_task_token.json5 │ │ │ │ └── sqs_wait_for_task_token_with_timeout.json5 │ │ ├── choiceoperators │ │ │ ├── __init__.py │ │ │ ├── choice_operators_templates.py │ │ │ └── statemachines │ │ │ │ └── template.json5 │ │ ├── errorhandling │ │ │ ├── __init__.py │ │ │ ├── error_handling_templates.py │ │ │ ├── lambdafunctions │ │ │ │ └── raise_exception.py │ │ │ └── statemachines │ │ │ │ ├── aws_sdk_task_error_s3_list_objects.json5 │ │ │ │ ├── aws_sdk_task_error_secretsmanager_crate_secret.json5 │ │ │ │ ├── aws_service_sqs_send_msg_catch_token_failure.json5 │ │ │ │ ├── task_lambda_invoke_catch_relevant.json5 │ │ │ │ ├── task_lambda_invoke_catch_unknown.json5 │ │ │ │ ├── task_service_lambda_invoke_catch_relevant.json5 │ │ │ │ ├── task_service_lambda_invoke_catch_timeout.json5 │ │ │ │ ├── task_service_lambda_invoke_catch_unknown.json5 │ │ │ │ └── task_service_sqs_send_msg_catch.json5 │ │ ├── intrinsicfunctions │ │ │ ├── __init__.py │ │ │ ├── intrinsic_functions_templates.py │ │ │ └── statemachines │ │ │ │ ├── array │ │ │ │ ├── array_0.json5 │ │ │ │ ├── array_2.json5 │ │ │ │ ├── array_contains.json5 │ │ │ │ ├── array_get_item.json5 │ │ │ │ ├── array_length.json5 │ │ │ │ ├── array_partition.json5 │ │ │ │ ├── array_range.json5 │ │ │ │ └── array_unique.json5 │ │ │ │ ├── encode_decode │ │ │ │ ├── base64decode.json5 │ │ │ │ └── base64encode.json5 │ │ │ │ ├── generic │ │ │ │ ├── format_1.json5 │ │ │ │ └── format_2.json5 │ │ │ │ ├── hash_calculations │ │ │ │ └── hash.json5 │ │ │ │ ├── json_manipulation │ │ │ │ ├── json_merge.json5 │ │ │ │ ├── json_to_string.json5 │ │ │ │ └── string_to_json.json5 │ │ │ │ ├── math_operations │ │ │ │ ├── math_add.json5 │ │ │ │ ├── math_random.json5 │ │ │ │ └── math_random_seeded.json5 │ │ │ │ ├── string_operations │ │ │ │ └── string_split.json5 │ │ │ │ └── unique_id_generation │ │ │ │ └── uuid.json5 │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── lambdafunctions │ │ │ │ └── id_function.py │ │ │ ├── services_templates.py │ │ │ └── statemachines │ │ │ │ ├── aws_sdk_secrestsmaager_list_secrets.json5 │ │ │ │ ├── lambda_invoke.json5 │ │ │ │ ├── lambda_invoke_log_type.json5 │ │ │ │ ├── lambda_invoke_pipe.json5 │ │ │ │ ├── lambda_list_functions.json5 │ │ │ │ └── sqs_send_msg.json5 │ │ ├── template_loader.py │ │ └── timeouts │ │ │ ├── __init__.py │ │ │ ├── lambdafunctions │ │ │ └── wait_60_seconds.py │ │ │ ├── statemachines │ │ │ ├── lambda_wait_with_timeout_seconds.json5 │ │ │ ├── service_lambda_map_function_invoke_with_timeout_seconds.json5 │ │ │ ├── service_lambda_wait_with_timeout_seconds.json5 │ │ │ └── service_lambda_wait_with_timeout_seconds_path.json5 │ │ │ └── timeout_templates.py │ ├── utils.py │ └── v2 │ │ ├── __init__.py │ │ ├── callback │ │ ├── __init__.py │ │ ├── test_callback.py │ │ └── test_callback.snapshot.json │ │ ├── choice_operators │ │ ├── __init__.py │ │ ├── test_boolean_equals.py │ │ ├── test_boolean_equals.snapshot.json │ │ ├── test_is_operators.py │ │ ├── test_is_operators.snapshot.json │ │ ├── test_numeric.py │ │ ├── test_numeric.snapshot.json │ │ ├── test_string_operators.py │ │ ├── test_string_operators.snapshot.json │ │ ├── test_timestamp_operators.py │ │ ├── test_timestamp_operators.snapshot.json │ │ └── utils.py │ │ ├── error_handling │ │ ├── __init__.py │ │ ├── test_aws_sdk.py │ │ ├── test_aws_sdk.snapshot.json │ │ ├── test_task_lambda.py │ │ ├── test_task_lambda.snapshot.json │ │ ├── test_task_service_lambda.py │ │ ├── test_task_service_lambda.snapshot.json │ │ ├── test_task_service_sqs.py │ │ ├── test_task_service_sqs.snapshot.json │ │ └── utils.py │ │ ├── intrinsic_functions │ │ ├── __init__.py │ │ ├── test_array.py │ │ ├── test_array.snapshot.json │ │ ├── test_encode_decode.py │ │ ├── test_encode_decode.snapshot.json │ │ ├── test_generic.py │ │ ├── test_generic.snapshot.json │ │ ├── test_hash_calculations.py │ │ ├── test_hash_calculations.snapshot.json │ │ ├── test_json_manipulation.py │ │ ├── test_json_manipulation.snapshot.json │ │ ├── test_math_operations.py │ │ ├── test_math_operations.snapshot.json │ │ ├── test_string_operations.py │ │ ├── test_string_operations.snapshot.json │ │ ├── test_unique_id_generation.py │ │ ├── test_unique_id_generation.snapshot.json │ │ └── utils.py │ │ ├── scenarios │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── path-based-on-data.yaml │ │ │ ├── step-functions-calling-api-gateway.yaml │ │ │ └── wait-for-callback.yaml │ │ ├── test_sfn_scenarios.py │ │ └── test_sfn_scenarios.snapshot.json │ │ ├── services │ │ ├── __init__.py │ │ ├── test_aws_sdk_task_service.py │ │ ├── test_aws_sdk_task_service.snapshot.json │ │ ├── test_lambda_task.py │ │ ├── test_lambda_task.snapshot.json │ │ ├── test_lambda_task_service.py │ │ ├── test_lambda_task_service.snapshot.json │ │ ├── test_sqs_task_service.py │ │ └── test_sqs_task_service.snapshot.json │ │ ├── test_sfn_api.py │ │ ├── test_sfn_api.snapshot.json │ │ ├── test_stepfunctions_v2.py │ │ └── timeouts │ │ ├── __init__.py │ │ ├── test_timeouts.py │ │ └── test_timeouts.snapshot.json ├── templates │ ├── apigateway-url-output.yaml │ ├── apigateway.json │ ├── apigateway_account.yml │ ├── apigateway_integration.yml │ ├── apigateway_integration_from_s3.yml │ ├── apigateway_integration_no_authorizer.yml │ ├── apigateway_usage_plan.yml │ ├── apigw-awsintegration-request-parameters.yaml │ ├── asset │ │ └── index.js │ ├── cdk_bootstrap_v10.yaml │ ├── cdk_bootstrap_v11.yaml │ ├── cdk_bootstrap_v12.yaml │ ├── cdk_init_template.yaml │ ├── cdk_template_with_kms.json │ ├── cdkmetadata.yaml │ ├── cdktemplate.json │ ├── cfn_cdk_sample_app.yaml │ ├── cfn_function_export.yml │ ├── cfn_function_import.yml │ ├── cfn_getatt_ref.yaml │ ├── cfn_intrinsic_functions.yaml │ ├── cfn_kinesis_stream.yaml │ ├── cfn_lambda_alias.yml │ ├── cfn_lambda_code_signing_config.yml │ ├── cfn_lambda_destinations.yaml │ ├── cfn_lambda_dynamodb_source.yaml │ ├── cfn_lambda_event_invoke_config.yml │ ├── cfn_lambda_kinesis_source.yaml │ ├── cfn_lambda_permission.yml │ ├── cfn_lambda_permission_multiple.yaml │ ├── cfn_lambda_simple.yaml │ ├── cfn_lambda_sns_permissions.yaml │ ├── cfn_lambda_sqs_source.yaml │ ├── cfn_lambda_version.yaml │ ├── cfn_lambda_vpc.yaml │ ├── cfn_macro_languageextensions.yaml │ ├── cfn_parameter_list_type.yaml │ ├── cfn_redshift.yaml │ ├── cfn_reuse_param.yaml │ ├── cfn_sub_resovling.yaml │ ├── cfn_unsupported.yaml │ ├── cfn_waitcondition.yaml │ ├── code_artifact_remove_template.yaml │ ├── code_artifact_template.yaml │ ├── conditions │ │ ├── nested-conditions.yaml │ │ ├── ref-condition-intrinsic-condition.yaml │ │ ├── ref-condition-macro-def.yaml │ │ ├── ref-condition-macro.yaml │ │ ├── ref-condition-output.yaml │ │ ├── ref-condition.yaml │ │ ├── simple-condition.yaml │ │ ├── simple-intrinsic-condition-name-conflict.yaml │ │ └── simple-intrinsic-condition.yaml │ ├── deploy_template_1.yaml │ ├── deploy_template_2.yaml │ ├── deploy_template_3.yaml │ ├── deploy_template_4.yaml │ ├── dynamicparameter_ssm_string.yaml │ ├── dynamodb_billing_conditional.yml │ ├── dynamodb_iam.yaml │ ├── dynamodb_table_defaults.yml │ ├── ec2_vpc_default_sg.yaml │ ├── empty_policy.json │ ├── eventbridge_policy.yaml │ ├── eventbridge_policy_singlepolicy.yaml │ ├── eventbridge_policy_statement.yaml │ ├── events_loggroup.yaml │ ├── events_rule_without_targets.yaml │ ├── fifo_queue.json │ ├── firehose_kinesis_as_source.yaml │ ├── for_removal_remove.yaml │ ├── for_removal_setup.yaml │ ├── function_find_in_map.yml │ ├── function_to_json_string.yml │ ├── functions_cidr.yml │ ├── functions_get_azs.yml │ ├── functions_getatt_sub_base64.yml │ ├── functions_select_split_join.yml │ ├── iam_access_key.yaml │ ├── iam_policy.yml │ ├── iam_policy_attachments.yaml │ ├── iam_policy_role.yaml │ ├── iam_policy_role_updated.yaml │ ├── iam_role_policy.yaml │ ├── iam_role_policy_2.yaml │ ├── integration_events_sns_sqs_lambda.yaml │ ├── internet_gateway.yml │ ├── invalid_stack_policy.json │ ├── kinesis_default.yaml │ ├── kms_key_disabled.yaml │ ├── lambda_dynamodb_filtering.yaml │ ├── lambda_simple.yml │ ├── lambda_url.yaml │ ├── logs_group_and_stream.yaml │ ├── macro_resource.yml │ ├── macros │ │ ├── add_role.py │ │ ├── add_standard_attributes.py │ │ ├── format_template.py │ │ ├── print_internals.py │ │ ├── print_references.py │ │ ├── raise_error.py │ │ ├── replace_string.py │ │ ├── return_invalid_template.py │ │ ├── return_unsuccessful_with_message.py │ │ └── return_unsuccessful_without_message.py │ ├── mappings │ │ ├── simple-mapping-invalid-ref.yaml │ │ ├── simple-mapping-nesting-depth.yaml │ │ ├── simple-mapping-single-level.yaml │ │ └── simple-mapping.yaml │ ├── multiple_bucket.yaml │ ├── multiple_kms_keys.yaml │ ├── multiple_parameters.yaml │ ├── nested-stack-output-refs.nested.yaml │ ├── nested-stack-output-refs.yaml │ ├── nested-stack-outputref │ │ ├── root.yaml │ │ ├── sub1.yaml │ │ └── sub2.yaml │ ├── nested_child.yml │ ├── nested_grand_parent.yml │ ├── nested_parent.yml │ ├── opensearch_domain.yaml │ ├── opensearch_domain.yml │ ├── registry │ │ ├── module.yml │ │ ├── resource-provider.yml │ │ ├── resource-role.yml │ │ └── upload-infra.yml │ ├── resolve_secretsmanager.yaml │ ├── resolve_secretsmanager_full.yaml │ ├── resolve_secretsmanager_partial.yaml │ ├── resolve_ssm.yaml │ ├── resolve_ssm_secure.yaml │ ├── route53_hostedzoneid_template.yaml │ ├── route53_hostedzonename_template.yaml │ ├── route53_recordset_without_resource_records.yaml │ ├── s3_bucket_autoname.yaml │ ├── s3_bucket_name.yml │ ├── s3_bucket_website_config.yaml │ ├── s3_bucketpolicy.yaml │ ├── s3_cors_bucket.yaml │ ├── s3_versioned_bucket.yaml │ ├── sam_function-policies.yaml │ ├── sfn_apigateway.yaml │ ├── sfn_apigateway_two_integrations.yaml │ ├── sfn_nested_sync2.json │ ├── sfn_retry_catch.yaml │ ├── simple_api.update.yaml │ ├── simple_api.yaml │ ├── sns_topic_fifo_dedup.yaml │ ├── sns_topic_parameter.update.yml │ ├── sns_topic_parameter.yml │ ├── sns_topic_simple.yaml │ ├── sns_topic_subscription.yaml │ ├── sns_topic_template.json │ ├── sns_topic_template.yaml │ ├── sqs_fifo_autogenerate_name.yaml │ ├── sqs_with_queuepolicy.yaml │ ├── ssm_parameter_def.yaml │ ├── ssm_parameter_defaultname.yaml │ ├── ssm_parameter_defaultname_withtags.yaml │ ├── stack_policy.json │ ├── stack_policy_test.yaml │ ├── stack_update_1.yaml │ ├── stack_update_2.yaml │ ├── stack_update_3.yaml │ ├── statemachine_test.json │ ├── stepfunctions_statemachine_substitutions.yaml │ ├── template1.yaml │ ├── template2.yaml │ ├── template23.yaml │ ├── template24.yaml │ ├── template26.yaml │ ├── template27.yaml │ ├── template28.yaml │ ├── template30.yaml │ ├── template31.yaml │ ├── template32.yaml │ ├── template33.yaml │ ├── template34.yaml │ ├── template35.yaml │ ├── template36.yaml │ ├── template37.yaml │ ├── template4.yaml │ ├── template5.yaml │ ├── template6.yaml │ ├── template7.json │ ├── transformation_add_role.yml │ ├── transformation_global_parameter.yml │ ├── transformation_macro_as_reference.yml │ ├── transformation_macro_params_as_reference.yml │ ├── transformation_multiple_scope_parameter.yml │ ├── transformation_print_internals.yml │ ├── transformation_snippet_topic.json │ ├── transformation_snippet_topic.yml │ ├── transformation_unsuccessful.yml │ ├── update_lambda_template.json │ └── valid_template.json ├── terraform │ ├── .auto.tfvars │ ├── acm.tf │ ├── apigateway.tf │ ├── apigw.tf │ ├── dynamodb.tf │ ├── ec2.tf │ ├── event_source_mapping.tf │ ├── iam.tf │ ├── lambda.tf │ ├── provider.tf │ ├── route53.tf │ ├── s3.tf │ ├── sqs.tf │ └── versions.tf ├── test_acm.py ├── test_acm.snapshot.json ├── test_cloudwatch.py ├── test_cloudwatch.snapshot.json ├── test_config_endpoint.py ├── test_config_service.py ├── test_dynamodb.py ├── test_dynamodb.snapshot.json ├── test_ec2.py ├── test_edge.py ├── test_error_injection.py ├── test_es.py ├── test_events.py ├── test_events.snapshot.json ├── test_firehose.py ├── test_forwarder.py ├── test_iam.py ├── test_iam.snapshot.json ├── test_integration.py ├── test_kinesis.py ├── test_kinesis.snapshot.json ├── test_kms.py ├── test_kms.snapshot.json ├── test_logs.py ├── test_logs.snapshot.json ├── test_moto.py ├── test_multi_accounts.py ├── test_multiregion.py ├── test_network_configuration.py ├── test_notifications.py ├── test_opensearch.py ├── test_redshift.py ├── test_resourcegroups.py ├── test_rgsa.py ├── test_route53.py ├── test_route53resolver.py ├── test_route53resolver.snapshot.json ├── test_s3control.py ├── test_security.py ├── test_serverless.py ├── test_ses.py ├── test_ses.snapshot.json ├── test_sns.py ├── test_sns.snapshot.json ├── test_sqs.py ├── test_sqs.snapshot.json ├── test_sqs_backdoor.py ├── test_ssm.py ├── test_stores.py ├── test_sts.py ├── test_support.py ├── test_swf.py ├── test_terraform.py ├── test_transcribe.py ├── test_transcribe.snapshot.json ├── test_validate.py └── utils │ ├── __init__.py │ └── test_diagnose.py ├── performance ├── test_dynamodb_performance.py └── test_sqs_performance.py └── unit ├── __init__.py ├── aws ├── __init__.py ├── api │ ├── __init__.py │ └── test_asf_providers.py ├── handlers │ ├── __init__.py │ ├── analytics.py │ └── service.py ├── protocol │ ├── __init__.py │ ├── test_op_router.py │ ├── test_parser.py │ ├── test_parser_validate.py │ └── test_serializer.py ├── test_chain.py ├── test_client.py ├── test_connect.py ├── test_gateway.py ├── test_mocking.py ├── test_proxy.py ├── test_scaffold.py ├── test_service_router.py ├── test_skeleton.py └── test_spec.py ├── cli ├── __init__.py ├── test_cli.py ├── test_lpm.py └── test_profiles.py ├── conftest.py ├── http_ ├── __init__.py ├── conftest.py ├── test_adapters.py ├── test_asgi.py ├── test_dispatcher.py ├── test_hypercorn.py ├── test_proxy.py ├── test_request.py ├── test_resource.py └── test_router.py ├── logging_ ├── __init__.py └── test_format.py ├── packages ├── test_api.py └── test_core.py ├── runtime ├── __init__.py └── test_init.py ├── services ├── __init__.py ├── awslambda │ ├── __init__.py │ ├── test_api_utils.py │ ├── test_image_resolver.py │ └── test_lambda_utils.py ├── opensearch │ ├── __init__.py │ └── test_cluster_manager.py ├── s3 │ ├── __init__.py │ └── test_virtual_host.py ├── test_internal.py └── test_plugins.py ├── state ├── __init__.py ├── test_inspect.py └── test_pickle.py ├── test_apigateway.py ├── test_cloudformation.py ├── test_cloudwatch.py ├── test_common.py ├── test_config.py ├── test_cors.py ├── test_docker_utils.py ├── test_dockerclient.py ├── test_dynamodb.py ├── test_edge.py ├── test_kms.py ├── test_lambda.py ├── test_logs.py ├── test_misc.py ├── test_moto.py ├── test_motoserver.py ├── test_partition_rewriter.py ├── test_proxy.py ├── test_s3.py ├── test_sns.py ├── test_sqs.py ├── test_stores.py ├── test_tagging.py ├── test_templating.py └── utils ├── __init__.py ├── analytics ├── __init__.py ├── conftest.py ├── test_client.py ├── test_logger.py ├── test_metadata.py ├── test_publisher.py └── test_service_call_aggregator.py ├── aws ├── __init__.py ├── test_aws_responses.py └── test_aws_stack.py ├── generic ├── __init__.py ├── test_dict_utils.py └── test_file_utils.py ├── test_archives.py ├── test_bootstrap.py ├── test_collections.py ├── test_common.py ├── test_coverage_docs.py ├── test_http2_server.py ├── test_http_utils.py ├── test_net_utils.py ├── test_objects.py ├── test_patch.py ├── test_scheduler.py ├── test_ssl.py ├── test_sync.py └── testing ├── __init__.py ├── test_snapshots.py └── test_transformer.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-exporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.env-exporter -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/CLA.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/bot_templates/ASF_UPGRADE_PR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/bot_templates/ASF_UPGRADE_PR.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/asf-updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/asf-updates.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub-description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/dockerhub-description.yml -------------------------------------------------------------------------------- /.github/workflows/pr-cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/pr-cla.yml -------------------------------------------------------------------------------- /.github/workflows/pr-enforce-no-major-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/pr-enforce-no-major-master.yml -------------------------------------------------------------------------------- /.github/workflows/pr-enforce-pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/pr-enforce-pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/rebase-release-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/rebase-release-prs.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.github/workflows/sync-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/sync-project.yml -------------------------------------------------------------------------------- /.github/workflows/tests-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/tests-cli.yml -------------------------------------------------------------------------------- /.github/workflows/tests-podman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/tests-podman.yml -------------------------------------------------------------------------------- /.github/workflows/tests-pro-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.github/workflows/tests-pro-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/README.md -------------------------------------------------------------------------------- /bin/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/docker-entrypoint.sh -------------------------------------------------------------------------------- /bin/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/hosts -------------------------------------------------------------------------------- /bin/localstack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/localstack -------------------------------------------------------------------------------- /bin/localstack-start-docker-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/localstack-start-docker-dev.sh -------------------------------------------------------------------------------- /bin/localstack-supervisor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/localstack-supervisor -------------------------------------------------------------------------------- /bin/localstack.bat: -------------------------------------------------------------------------------- 1 | python "%~dp0\localstack" %* 2 | -------------------------------------------------------------------------------- /bin/release-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/release-dev.sh -------------------------------------------------------------------------------- /bin/release-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/bin/release-helper.sh -------------------------------------------------------------------------------- /doc/end_user_license_agreement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/doc/end_user_license_agreement/README.md -------------------------------------------------------------------------------- /doc/interaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/doc/interaction/README.md -------------------------------------------------------------------------------- /doc/localstack-readme-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/doc/localstack-readme-banner.svg -------------------------------------------------------------------------------- /doc/third-party-software-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/doc/third-party-software-tools/README.md -------------------------------------------------------------------------------- /doc/troubleshoot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/doc/troubleshoot/README.md -------------------------------------------------------------------------------- /docker-compose-pro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/docker-compose-pro.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /localstack/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.1.1.dev" 2 | -------------------------------------------------------------------------------- /localstack/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/aws/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/accounts.py -------------------------------------------------------------------------------- /localstack/aws/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/acm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/acm/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/apigateway/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/apigateway/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/cloudcontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/cloudcontrol/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/cloudformation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/cloudformation/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/cloudwatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/cloudwatch/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/config/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/core.py -------------------------------------------------------------------------------- /localstack/aws/api/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/dynamodb/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/dynamodbstreams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/dynamodbstreams/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/ec2/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/es/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/events/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/firehose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/firehose/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/iam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/iam/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/kinesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/kinesis/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/kms/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/lambda_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/lambda_/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/logs/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/opensearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/opensearch/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/redshift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/redshift/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/resource_groups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/resource_groups/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/route53/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/route53/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/route53resolver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/route53resolver/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/s3/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/s3control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/s3control/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/secretsmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/secretsmanager/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/ses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/ses/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/sns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/sns/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/sqs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/sqs/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/ssm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/ssm/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/stepfunctions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/stepfunctions/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/sts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/sts/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/support/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/swf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/swf/__init__.py -------------------------------------------------------------------------------- /localstack/aws/api/transcribe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/api/transcribe/__init__.py -------------------------------------------------------------------------------- /localstack/aws/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/app.py -------------------------------------------------------------------------------- /localstack/aws/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/chain.py -------------------------------------------------------------------------------- /localstack/aws/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/client.py -------------------------------------------------------------------------------- /localstack/aws/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/connect.py -------------------------------------------------------------------------------- /localstack/aws/forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/forwarder.py -------------------------------------------------------------------------------- /localstack/aws/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/gateway.py -------------------------------------------------------------------------------- /localstack/aws/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/__init__.py -------------------------------------------------------------------------------- /localstack/aws/handlers/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/analytics.py -------------------------------------------------------------------------------- /localstack/aws/handlers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/auth.py -------------------------------------------------------------------------------- /localstack/aws/handlers/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/codec.py -------------------------------------------------------------------------------- /localstack/aws/handlers/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/cors.py -------------------------------------------------------------------------------- /localstack/aws/handlers/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/fallback.py -------------------------------------------------------------------------------- /localstack/aws/handlers/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/internal.py -------------------------------------------------------------------------------- /localstack/aws/handlers/internal_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/internal_requests.py -------------------------------------------------------------------------------- /localstack/aws/handlers/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/legacy.py -------------------------------------------------------------------------------- /localstack/aws/handlers/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/logging.py -------------------------------------------------------------------------------- /localstack/aws/handlers/metric_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/metric_handler.py -------------------------------------------------------------------------------- /localstack/aws/handlers/partition_rewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/partition_rewriter.py -------------------------------------------------------------------------------- /localstack/aws/handlers/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/proxy.py -------------------------------------------------------------------------------- /localstack/aws/handlers/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/region.py -------------------------------------------------------------------------------- /localstack/aws/handlers/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/routes.py -------------------------------------------------------------------------------- /localstack/aws/handlers/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/service.py -------------------------------------------------------------------------------- /localstack/aws/handlers/service_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/handlers/service_plugin.py -------------------------------------------------------------------------------- /localstack/aws/mocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/mocking.py -------------------------------------------------------------------------------- /localstack/aws/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/aws/protocol/op_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/protocol/op_router.py -------------------------------------------------------------------------------- /localstack/aws/protocol/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/protocol/parser.py -------------------------------------------------------------------------------- /localstack/aws/protocol/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/protocol/serializer.py -------------------------------------------------------------------------------- /localstack/aws/protocol/service_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/protocol/service_router.py -------------------------------------------------------------------------------- /localstack/aws/protocol/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/protocol/validate.py -------------------------------------------------------------------------------- /localstack/aws/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/proxy.py -------------------------------------------------------------------------------- /localstack/aws/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/scaffold.py -------------------------------------------------------------------------------- /localstack/aws/serving/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/aws/serving/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/serving/asgi.py -------------------------------------------------------------------------------- /localstack/aws/serving/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/serving/edge.py -------------------------------------------------------------------------------- /localstack/aws/serving/hypercorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/serving/hypercorn.py -------------------------------------------------------------------------------- /localstack/aws/serving/werkzeug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/serving/werkzeug.py -------------------------------------------------------------------------------- /localstack/aws/serving/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/serving/wsgi.py -------------------------------------------------------------------------------- /localstack/aws/skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/skeleton.py -------------------------------------------------------------------------------- /localstack/aws/spec-patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/spec-patches.json -------------------------------------------------------------------------------- /localstack/aws/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/spec.py -------------------------------------------------------------------------------- /localstack/aws/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/aws/trace.py -------------------------------------------------------------------------------- /localstack/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/__init__.py -------------------------------------------------------------------------------- /localstack/cli/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/console.py -------------------------------------------------------------------------------- /localstack/cli/localstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/localstack.py -------------------------------------------------------------------------------- /localstack/cli/lpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/lpm.py -------------------------------------------------------------------------------- /localstack/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/main.py -------------------------------------------------------------------------------- /localstack/cli/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/plugin.py -------------------------------------------------------------------------------- /localstack/cli/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/plugins.py -------------------------------------------------------------------------------- /localstack/cli/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/cli/profiles.py -------------------------------------------------------------------------------- /localstack/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/config.py -------------------------------------------------------------------------------- /localstack/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/constants.py -------------------------------------------------------------------------------- /localstack/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/contrib/__init__.py -------------------------------------------------------------------------------- /localstack/deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/deprecations.py -------------------------------------------------------------------------------- /localstack/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/__init__.py -------------------------------------------------------------------------------- /localstack/extensions/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/__init__.py -------------------------------------------------------------------------------- /localstack/extensions/api/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/aws.py -------------------------------------------------------------------------------- /localstack/extensions/api/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/extension.py -------------------------------------------------------------------------------- /localstack/extensions/api/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/http.py -------------------------------------------------------------------------------- /localstack/extensions/api/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/runtime.py -------------------------------------------------------------------------------- /localstack/extensions/api/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/extensions/api/services.py -------------------------------------------------------------------------------- /localstack/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/__init__.py -------------------------------------------------------------------------------- /localstack/http/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/adapters.py -------------------------------------------------------------------------------- /localstack/http/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/asgi.py -------------------------------------------------------------------------------- /localstack/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/client.py -------------------------------------------------------------------------------- /localstack/http/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/dispatcher.py -------------------------------------------------------------------------------- /localstack/http/hypercorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/hypercorn.py -------------------------------------------------------------------------------- /localstack/http/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/proxy.py -------------------------------------------------------------------------------- /localstack/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/request.py -------------------------------------------------------------------------------- /localstack/http/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/resource.py -------------------------------------------------------------------------------- /localstack/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/response.py -------------------------------------------------------------------------------- /localstack/http/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/http/router.py -------------------------------------------------------------------------------- /localstack/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/logging/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/logging/format.py -------------------------------------------------------------------------------- /localstack/logging/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/logging/setup.py -------------------------------------------------------------------------------- /localstack/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/__init__.py -------------------------------------------------------------------------------- /localstack/packages/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/api.py -------------------------------------------------------------------------------- /localstack/packages/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/core.py -------------------------------------------------------------------------------- /localstack/packages/debugpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/debugpy.py -------------------------------------------------------------------------------- /localstack/packages/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/ffmpeg.py -------------------------------------------------------------------------------- /localstack/packages/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/plugins.py -------------------------------------------------------------------------------- /localstack/packages/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/packages/terraform.py -------------------------------------------------------------------------------- /localstack/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/plugins.py -------------------------------------------------------------------------------- /localstack/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/runtime/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/analytics.py -------------------------------------------------------------------------------- /localstack/runtime/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/events.py -------------------------------------------------------------------------------- /localstack/runtime/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/exceptions.py -------------------------------------------------------------------------------- /localstack/runtime/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/hooks.py -------------------------------------------------------------------------------- /localstack/runtime/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/init.py -------------------------------------------------------------------------------- /localstack/runtime/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/main.py -------------------------------------------------------------------------------- /localstack/runtime/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/runtime/shutdown.py -------------------------------------------------------------------------------- /localstack/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/acm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/acm/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/acm/provider.py -------------------------------------------------------------------------------- /localstack/services/apigateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/apigateway/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/context.py -------------------------------------------------------------------------------- /localstack/services/apigateway/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/helpers.py -------------------------------------------------------------------------------- /localstack/services/apigateway/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/integration.py -------------------------------------------------------------------------------- /localstack/services/apigateway/invocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/invocations.py -------------------------------------------------------------------------------- /localstack/services/apigateway/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/models.py -------------------------------------------------------------------------------- /localstack/services/apigateway/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/patches.py -------------------------------------------------------------------------------- /localstack/services/apigateway/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/provider.py -------------------------------------------------------------------------------- /localstack/services/apigateway/router_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/router_asf.py -------------------------------------------------------------------------------- /localstack/services/apigateway/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/apigateway/templates.py -------------------------------------------------------------------------------- /localstack/services/awslambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/awslambda/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/api_utils.py -------------------------------------------------------------------------------- /localstack/services/awslambda/event_source_listeners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/awslambda/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/hooks.py -------------------------------------------------------------------------------- /localstack/services/awslambda/lambda_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/lambda_api.py -------------------------------------------------------------------------------- /localstack/services/awslambda/lambda_executors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/lambda_executors.py -------------------------------------------------------------------------------- /localstack/services/awslambda/lambda_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/lambda_models.py -------------------------------------------------------------------------------- /localstack/services/awslambda/lambda_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/lambda_starter.py -------------------------------------------------------------------------------- /localstack/services/awslambda/lambda_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/lambda_utils.py -------------------------------------------------------------------------------- /localstack/services/awslambda/layerfetcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/awslambda/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/packages.py -------------------------------------------------------------------------------- /localstack/services/awslambda/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/plugins.py -------------------------------------------------------------------------------- /localstack/services/awslambda/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/provider.py -------------------------------------------------------------------------------- /localstack/services/awslambda/urlrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/urlrouter.py -------------------------------------------------------------------------------- /localstack/services/awslambda/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/awslambda/usage.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/cloudformation/api_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/api_utils.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/cfn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/cfn_utils.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/deploy.html -------------------------------------------------------------------------------- /localstack/services/cloudformation/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/cdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/cdk.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/ec2.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/ecr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/ecr.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/iam.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/kms.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/logs.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/s3.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/sns.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/sqs.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/models/ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/models/ssm.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/packages.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/plugins.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/provider.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/stores.py -------------------------------------------------------------------------------- /localstack/services/cloudformation/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudformation/usage.py -------------------------------------------------------------------------------- /localstack/services/cloudwatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/cloudwatch/alarm_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudwatch/alarm_scheduler.py -------------------------------------------------------------------------------- /localstack/services/cloudwatch/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/cloudwatch/provider.py -------------------------------------------------------------------------------- /localstack/services/configservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/configservice/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/configservice/provider.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/dynamodb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/models.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/packages.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/plugins.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/provider.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/server.py -------------------------------------------------------------------------------- /localstack/services/dynamodb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodb/utils.py -------------------------------------------------------------------------------- /localstack/services/dynamodbstreams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/dynamodbstreams/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodbstreams/models.py -------------------------------------------------------------------------------- /localstack/services/dynamodbstreams/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/dynamodbstreams/provider.py -------------------------------------------------------------------------------- /localstack/services/ec2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/ec2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ec2/exceptions.py -------------------------------------------------------------------------------- /localstack/services/ec2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ec2/models.py -------------------------------------------------------------------------------- /localstack/services/ec2/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ec2/provider.py -------------------------------------------------------------------------------- /localstack/services/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/edge.py -------------------------------------------------------------------------------- /localstack/services/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/es/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/es/plugins.py -------------------------------------------------------------------------------- /localstack/services/es/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/es/provider.py -------------------------------------------------------------------------------- /localstack/services/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/events/models.py -------------------------------------------------------------------------------- /localstack/services/events/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/events/provider.py -------------------------------------------------------------------------------- /localstack/services/events/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/events/scheduler.py -------------------------------------------------------------------------------- /localstack/services/firehose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/firehose/mappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/firehose/mappers.py -------------------------------------------------------------------------------- /localstack/services/firehose/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/firehose/models.py -------------------------------------------------------------------------------- /localstack/services/firehose/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/firehose/provider.py -------------------------------------------------------------------------------- /localstack/services/generic_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/generic_proxy.py -------------------------------------------------------------------------------- /localstack/services/iam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/iam/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/iam/provider.py -------------------------------------------------------------------------------- /localstack/services/iam/resource_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/infra.py -------------------------------------------------------------------------------- /localstack/services/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/internal.py -------------------------------------------------------------------------------- /localstack/services/kinesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/kinesis/kinesis_starter.py: -------------------------------------------------------------------------------- 1 | # FIXME: remove once ext is refactored to no longer use this 2 | _SERVERS = {} 3 | -------------------------------------------------------------------------------- /localstack/services/kinesis/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kinesis/models.py -------------------------------------------------------------------------------- /localstack/services/kinesis/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kinesis/packages.py -------------------------------------------------------------------------------- /localstack/services/kinesis/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kinesis/plugins.py -------------------------------------------------------------------------------- /localstack/services/kinesis/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kinesis/provider.py -------------------------------------------------------------------------------- /localstack/services/kms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/kms/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/exceptions.py -------------------------------------------------------------------------------- /localstack/services/kms/local_kms_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/local_kms_provider.py -------------------------------------------------------------------------------- /localstack/services/kms/local_kms_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/local_kms_server.py -------------------------------------------------------------------------------- /localstack/services/kms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/models.py -------------------------------------------------------------------------------- /localstack/services/kms/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/packages.py -------------------------------------------------------------------------------- /localstack/services/kms/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/plugins.py -------------------------------------------------------------------------------- /localstack/services/kms/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/provider.py -------------------------------------------------------------------------------- /localstack/services/kms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/kms/utils.py -------------------------------------------------------------------------------- /localstack/services/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/logs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/logs/models.py -------------------------------------------------------------------------------- /localstack/services/logs/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/logs/provider.py -------------------------------------------------------------------------------- /localstack/services/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/messages.py -------------------------------------------------------------------------------- /localstack/services/moto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/moto.py -------------------------------------------------------------------------------- /localstack/services/motoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/motoserver.py -------------------------------------------------------------------------------- /localstack/services/opensearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/opensearch/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/cluster.py -------------------------------------------------------------------------------- /localstack/services/opensearch/cluster_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/cluster_manager.py -------------------------------------------------------------------------------- /localstack/services/opensearch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/models.py -------------------------------------------------------------------------------- /localstack/services/opensearch/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/packages.py -------------------------------------------------------------------------------- /localstack/services/opensearch/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/plugins.py -------------------------------------------------------------------------------- /localstack/services/opensearch/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/provider.py -------------------------------------------------------------------------------- /localstack/services/opensearch/resource_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/opensearch/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/opensearch/versions.py -------------------------------------------------------------------------------- /localstack/services/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/plugins.py -------------------------------------------------------------------------------- /localstack/services/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/providers.py -------------------------------------------------------------------------------- /localstack/services/redshift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/redshift/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/redshift/provider.py -------------------------------------------------------------------------------- /localstack/services/resourcegroups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/resourcegroups/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/resourcegroups/provider.py -------------------------------------------------------------------------------- /localstack/services/resourcegroupstaggingapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/route53/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/route53/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/route53/models.py -------------------------------------------------------------------------------- /localstack/services/route53/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/route53/provider.py -------------------------------------------------------------------------------- /localstack/services/route53resolver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/route53resolver/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/route53resolver/models.py -------------------------------------------------------------------------------- /localstack/services/route53resolver/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/route53resolver/provider.py -------------------------------------------------------------------------------- /localstack/services/route53resolver/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/route53resolver/utils.py -------------------------------------------------------------------------------- /localstack/services/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/s3/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/constants.py -------------------------------------------------------------------------------- /localstack/services/s3/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/cors.py -------------------------------------------------------------------------------- /localstack/services/s3/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/models.py -------------------------------------------------------------------------------- /localstack/services/s3/multipart_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/multipart_content.py -------------------------------------------------------------------------------- /localstack/services/s3/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/notifications.py -------------------------------------------------------------------------------- /localstack/services/s3/presigned_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/presigned_url.py -------------------------------------------------------------------------------- /localstack/services/s3/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/provider.py -------------------------------------------------------------------------------- /localstack/services/s3/s3_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/s3_listener.py -------------------------------------------------------------------------------- /localstack/services/s3/s3_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/s3_starter.py -------------------------------------------------------------------------------- /localstack/services/s3/s3_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/s3_utils.py -------------------------------------------------------------------------------- /localstack/services/s3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/utils.py -------------------------------------------------------------------------------- /localstack/services/s3/virtual_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/virtual_host.py -------------------------------------------------------------------------------- /localstack/services/s3/website_hosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3/website_hosting.py -------------------------------------------------------------------------------- /localstack/services/s3control/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/s3control/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/s3control/provider.py -------------------------------------------------------------------------------- /localstack/services/secretsmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/secretsmanager/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/secretsmanager/provider.py -------------------------------------------------------------------------------- /localstack/services/ses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/ses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ses/models.py -------------------------------------------------------------------------------- /localstack/services/ses/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ses/provider.py -------------------------------------------------------------------------------- /localstack/services/sns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/sns/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sns/constants.py -------------------------------------------------------------------------------- /localstack/services/sns/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sns/models.py -------------------------------------------------------------------------------- /localstack/services/sns/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sns/provider.py -------------------------------------------------------------------------------- /localstack/services/sns/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sns/publisher.py -------------------------------------------------------------------------------- /localstack/services/sqs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/sqs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/constants.py -------------------------------------------------------------------------------- /localstack/services/sqs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/exceptions.py -------------------------------------------------------------------------------- /localstack/services/sqs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/models.py -------------------------------------------------------------------------------- /localstack/services/sqs/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/provider.py -------------------------------------------------------------------------------- /localstack/services/sqs/query_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/query_api.py -------------------------------------------------------------------------------- /localstack/services/sqs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sqs/utils.py -------------------------------------------------------------------------------- /localstack/services/ssm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/ssm/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/ssm/provider.py -------------------------------------------------------------------------------- /localstack/services/ssm/resource_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/antlt4utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/catch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/error_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/path/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/payloadvalue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/payloadvalue/payloadarr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/payloadvalue/payloadbinding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/payloadvalue/payloadtmpl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/payload/payloadvalue/payloadvaluelit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/retry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/common/timeouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/argument/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/array/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/encoding_decoding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/hash_calculations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/json_manipulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/math_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/string_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/function/statesfunction/unique_id_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/intrinsic/functionname/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/program/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_choice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_choice/comparison/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_choice/comparison/operator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_choice/comparison/operator/implementations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/state_map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/state_map/itemprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/state_parallel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/state_task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_fail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_pass/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_succeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_wait/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/component/state/state_wait/wait_function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/eval/callback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/eval/contextobject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/eval/event/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/eval/programstate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/parse/intrinsic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/asl/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/stepfunctions/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/stepfunctions/packages.py -------------------------------------------------------------------------------- /localstack/services/stepfunctions/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/stepfunctions/plugins.py -------------------------------------------------------------------------------- /localstack/services/stepfunctions/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/stepfunctions/provider.py -------------------------------------------------------------------------------- /localstack/services/stepfunctions/provider_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/stepfunctions/provider_v2.py -------------------------------------------------------------------------------- /localstack/services/stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/stores.py -------------------------------------------------------------------------------- /localstack/services/sts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/sts/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/sts/provider.py -------------------------------------------------------------------------------- /localstack/services/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/support/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/support/provider.py -------------------------------------------------------------------------------- /localstack/services/swf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/swf/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/swf/provider.py -------------------------------------------------------------------------------- /localstack/services/transcribe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/services/transcribe/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/transcribe/models.py -------------------------------------------------------------------------------- /localstack/services/transcribe/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/services/transcribe/provider.py -------------------------------------------------------------------------------- /localstack/state/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/state/__init__.py -------------------------------------------------------------------------------- /localstack/state/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/state/core.py -------------------------------------------------------------------------------- /localstack/state/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/state/inspect.py -------------------------------------------------------------------------------- /localstack/state/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/state/pickle.py -------------------------------------------------------------------------------- /localstack/state/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/state/snapshot.py -------------------------------------------------------------------------------- /localstack/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/testing/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/testing/aws/asf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/aws/asf_utils.py -------------------------------------------------------------------------------- /localstack/testing/aws/cloudformation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/aws/cloudformation_utils.py -------------------------------------------------------------------------------- /localstack/testing/aws/lambda_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/aws/lambda_utils.py -------------------------------------------------------------------------------- /localstack/testing/aws/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/aws/util.py -------------------------------------------------------------------------------- /localstack/testing/pytest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/testing/pytest/cloudtrail_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/cloudtrail_tracking.py -------------------------------------------------------------------------------- /localstack/testing/pytest/cloudtrail_tracking/cloudtrail_tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/testing/pytest/cloudtrail_tracking/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/testing/pytest/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/filters.py -------------------------------------------------------------------------------- /localstack/testing/pytest/fixture_conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/fixture_conflicts.py -------------------------------------------------------------------------------- /localstack/testing/pytest/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/fixtures.py -------------------------------------------------------------------------------- /localstack/testing/pytest/metric_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/metric_collection.py -------------------------------------------------------------------------------- /localstack/testing/pytest/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/snapshot.py -------------------------------------------------------------------------------- /localstack/testing/pytest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/pytest/util.py -------------------------------------------------------------------------------- /localstack/testing/snapshots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/snapshots/__init__.py -------------------------------------------------------------------------------- /localstack/testing/snapshots/prototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/snapshots/prototype.py -------------------------------------------------------------------------------- /localstack/testing/snapshots/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/snapshots/report.py -------------------------------------------------------------------------------- /localstack/testing/snapshots/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/testing/snapshots/transformer.py -------------------------------------------------------------------------------- /localstack/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/__init__.py -------------------------------------------------------------------------------- /localstack/utils/analytics/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/cli.py -------------------------------------------------------------------------------- /localstack/utils/analytics/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/client.py -------------------------------------------------------------------------------- /localstack/utils/analytics/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/events.py -------------------------------------------------------------------------------- /localstack/utils/analytics/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/logger.py -------------------------------------------------------------------------------- /localstack/utils/analytics/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/metadata.py -------------------------------------------------------------------------------- /localstack/utils/analytics/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/publisher.py -------------------------------------------------------------------------------- /localstack/utils/analytics/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/analytics/usage.py -------------------------------------------------------------------------------- /localstack/utils/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/archives.py -------------------------------------------------------------------------------- /localstack/utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/async_utils.py -------------------------------------------------------------------------------- /localstack/utils/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/asyncio.py -------------------------------------------------------------------------------- /localstack/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/auth.py -------------------------------------------------------------------------------- /localstack/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/aws/arns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/arns.py -------------------------------------------------------------------------------- /localstack/utils/aws/aws_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/aws_models.py -------------------------------------------------------------------------------- /localstack/utils/aws/aws_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/aws_responses.py -------------------------------------------------------------------------------- /localstack/utils/aws/aws_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/aws_stack.py -------------------------------------------------------------------------------- /localstack/utils/aws/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/client.py -------------------------------------------------------------------------------- /localstack/utils/aws/client_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/client_types.py -------------------------------------------------------------------------------- /localstack/utils/aws/dead_letter_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/dead_letter_queue.py -------------------------------------------------------------------------------- /localstack/utils/aws/message_forwarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/message_forwarding.py -------------------------------------------------------------------------------- /localstack/utils/aws/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/queries.py -------------------------------------------------------------------------------- /localstack/utils/aws/request_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/request_context.py -------------------------------------------------------------------------------- /localstack/utils/aws/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/resources.py -------------------------------------------------------------------------------- /localstack/utils/aws/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/aws/templating.py -------------------------------------------------------------------------------- /localstack/utils/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/bootstrap.py -------------------------------------------------------------------------------- /localstack/utils/cloudwatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/cloudwatch/cloudwatch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/cloudwatch/cloudwatch_util.py -------------------------------------------------------------------------------- /localstack/utils/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/collections.py -------------------------------------------------------------------------------- /localstack/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/common.py -------------------------------------------------------------------------------- /localstack/utils/config_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/config_listener.py -------------------------------------------------------------------------------- /localstack/utils/container_networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/container_networking.py -------------------------------------------------------------------------------- /localstack/utils/container_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/coverage_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/coverage_docs.py -------------------------------------------------------------------------------- /localstack/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/crypto.py -------------------------------------------------------------------------------- /localstack/utils/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/diagnose.py -------------------------------------------------------------------------------- /localstack/utils/docker_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/docker_utils.py -------------------------------------------------------------------------------- /localstack/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/files.py -------------------------------------------------------------------------------- /localstack/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/functions.py -------------------------------------------------------------------------------- /localstack/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/http.py -------------------------------------------------------------------------------- /localstack/utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/json.py -------------------------------------------------------------------------------- /localstack/utils/kinesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/kinesis/java/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/kinesis/java/logging.properties -------------------------------------------------------------------------------- /localstack/utils/kinesis/kclipy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/kinesis/kclipy_helper.py -------------------------------------------------------------------------------- /localstack/utils/kinesis/kinesis_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/kinesis/kinesis_connector.py -------------------------------------------------------------------------------- /localstack/utils/kinesis/kinesis_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/kinesis/kinesis_util.py -------------------------------------------------------------------------------- /localstack/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/net.py -------------------------------------------------------------------------------- /localstack/utils/no_exit_argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/no_exit_argument_parser.py -------------------------------------------------------------------------------- /localstack/utils/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/numbers.py -------------------------------------------------------------------------------- /localstack/utils/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/objects.py -------------------------------------------------------------------------------- /localstack/utils/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/patch.py -------------------------------------------------------------------------------- /localstack/utils/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/platform.py -------------------------------------------------------------------------------- /localstack/utils/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/run.py -------------------------------------------------------------------------------- /localstack/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/scheduler.py -------------------------------------------------------------------------------- /localstack/utils/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localstack/utils/server/http2_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/server/http2_server.py -------------------------------------------------------------------------------- /localstack/utils/server/multiserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/server/multiserver.py -------------------------------------------------------------------------------- /localstack/utils/server/proxy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/server/proxy_server.py -------------------------------------------------------------------------------- /localstack/utils/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/serving.py -------------------------------------------------------------------------------- /localstack/utils/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/ssl.py -------------------------------------------------------------------------------- /localstack/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/strings.py -------------------------------------------------------------------------------- /localstack/utils/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/sync.py -------------------------------------------------------------------------------- /localstack/utils/tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/tagging.py -------------------------------------------------------------------------------- /localstack/utils/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/tail.py -------------------------------------------------------------------------------- /localstack/utils/testutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/testutil.py -------------------------------------------------------------------------------- /localstack/utils/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/threads.py -------------------------------------------------------------------------------- /localstack/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/time.py -------------------------------------------------------------------------------- /localstack/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/urls.py -------------------------------------------------------------------------------- /localstack/utils/venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/venv.py -------------------------------------------------------------------------------- /localstack/utils/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/localstack/utils/xml.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.json 3 | -------------------------------------------------------------------------------- /scripts/build_common_test_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/scripts/build_common_test_functions.sh -------------------------------------------------------------------------------- /scripts/capture_notimplemented_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/scripts/capture_notimplemented_responses.py -------------------------------------------------------------------------------- /scripts/gather_outdated_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/scripts/gather_outdated_snapshots.py -------------------------------------------------------------------------------- /scripts/generate_minimal_boto3stubs_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/scripts/generate_minimal_boto3stubs_install.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | name = "tests" 2 | -------------------------------------------------------------------------------- /tests/bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/bootstrap/__init__.py -------------------------------------------------------------------------------- /tests/bootstrap/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/bootstrap/conftest.py -------------------------------------------------------------------------------- /tests/bootstrap/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/bootstrap/test_cli.py -------------------------------------------------------------------------------- /tests/bootstrap/test_localstack_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/bootstrap/test_localstack_container.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | name = "integration" 2 | -------------------------------------------------------------------------------- /tests/integration/apigateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/apigateway/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/apigateway/conftest.py -------------------------------------------------------------------------------- /tests/integration/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/aws/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/aws/test_app.py -------------------------------------------------------------------------------- /tests/integration/awslambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/awslambda/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/conftest.py -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/common/endpointinjection/provided/src/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/common/introspection/provided/src/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/common/uncaughtexception/provided/src/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/echo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/functions/echo.zip -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/functions/index.py -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/java/lambda_echo/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/lambda_integration.rb: -------------------------------------------------------------------------------- 1 | def handler(event:, context:) 2 | {} 3 | end 4 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/python3/lambda1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/python3/lambda1/settings.py: -------------------------------------------------------------------------------- 1 | SETTING1 = "setting1" 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/python3/lambda2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/python3/lambda2/settings.py: -------------------------------------------------------------------------------- 1 | SETTING2 = "setting2" 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/functions/rust-lambda/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /tests/integration/awslambda/layers/testlayer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/layers/testlayer.zip -------------------------------------------------------------------------------- /tests/integration/awslambda/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/test_lambda.py -------------------------------------------------------------------------------- /tests/integration/awslambda/test_lambda_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/test_lambda_api.py -------------------------------------------------------------------------------- /tests/integration/awslambda/test_lambda_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/test_lambda_common.py -------------------------------------------------------------------------------- /tests/integration/awslambda/test_lambda_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/awslambda/test_lambda_legacy.py -------------------------------------------------------------------------------- /tests/integration/cloudcontrol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/resource_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/resource_providers/iam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/cloudformation/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/docker_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/docker_utils/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/docker_utils/conftest.py -------------------------------------------------------------------------------- /tests/integration/docker_utils/test_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/docker_utils/test_docker.py -------------------------------------------------------------------------------- /tests/integration/files/api_definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/api_definition.yaml -------------------------------------------------------------------------------- /tests/integration/files/en-gb.amr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.amr -------------------------------------------------------------------------------- /tests/integration/files/en-gb.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.flac -------------------------------------------------------------------------------- /tests/integration/files/en-gb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.mp3 -------------------------------------------------------------------------------- /tests/integration/files/en-gb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.mp4 -------------------------------------------------------------------------------- /tests/integration/files/en-gb.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.ogg -------------------------------------------------------------------------------- /tests/integration/files/en-gb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.wav -------------------------------------------------------------------------------- /tests/integration/files/en-gb.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/en-gb.webm -------------------------------------------------------------------------------- /tests/integration/files/lambda_simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/lambda_simple.js -------------------------------------------------------------------------------- /tests/integration/files/openapi-basepath-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/openapi-basepath-url.yaml -------------------------------------------------------------------------------- /tests/integration/files/openapi-mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/openapi-mock.json -------------------------------------------------------------------------------- /tests/integration/files/openapi.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/openapi.spec.json -------------------------------------------------------------------------------- /tests/integration/files/openapi.spec.pulumi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/openapi.spec.pulumi.json -------------------------------------------------------------------------------- /tests/integration/files/openapi.spec.tf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/openapi.spec.tf.json -------------------------------------------------------------------------------- /tests/integration/files/pets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/pets.json -------------------------------------------------------------------------------- /tests/integration/files/petstore-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/petstore-swagger.json -------------------------------------------------------------------------------- /tests/integration/files/s3.requests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/s3.requests.txt -------------------------------------------------------------------------------- /tests/integration/files/swagger-mock-cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/swagger-mock-cors.json -------------------------------------------------------------------------------- /tests/integration/files/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/files/swagger.json -------------------------------------------------------------------------------- /tests/integration/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/s3/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3.py -------------------------------------------------------------------------------- /tests/integration/s3/test_s3.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3.snapshot.json -------------------------------------------------------------------------------- /tests/integration/s3/test_s3_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3_cors.py -------------------------------------------------------------------------------- /tests/integration/s3/test_s3_cors.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3_cors.snapshot.json -------------------------------------------------------------------------------- /tests/integration/s3/test_s3_notifications_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3_notifications_sns.py -------------------------------------------------------------------------------- /tests/integration/s3/test_s3_notifications_sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/s3/test_s3_notifications_sqs.py -------------------------------------------------------------------------------- /tests/integration/secretsmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/secretsmanager/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/serverless/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/serverless/handler.js -------------------------------------------------------------------------------- /tests/integration/serverless/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/serverless/handler.py -------------------------------------------------------------------------------- /tests/integration/serverless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/serverless/package.json -------------------------------------------------------------------------------- /tests/integration/serverless/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/serverless/serverless.yml -------------------------------------------------------------------------------- /tests/integration/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/services/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/services/test_internal.py -------------------------------------------------------------------------------- /tests/integration/stepfunctions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/stepfunctions/conftest.py -------------------------------------------------------------------------------- /tests/integration/stepfunctions/lambda_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/lambda_functions/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/choiceoperators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/errorhandling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/intrinsicfunctions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/templates/timeouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/stepfunctions/utils.py -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/callback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/choice_operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/error_handling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/intrinsic_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/scenarios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/stepfunctions/v2/timeouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/templates/apigateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/apigateway.json -------------------------------------------------------------------------------- /tests/integration/templates/asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/asset/index.js -------------------------------------------------------------------------------- /tests/integration/templates/cdkmetadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cdkmetadata.yaml -------------------------------------------------------------------------------- /tests/integration/templates/cdktemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cdktemplate.json -------------------------------------------------------------------------------- /tests/integration/templates/cfn_getatt_ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_getatt_ref.yaml -------------------------------------------------------------------------------- /tests/integration/templates/cfn_lambda_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_lambda_alias.yml -------------------------------------------------------------------------------- /tests/integration/templates/cfn_lambda_vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_lambda_vpc.yaml -------------------------------------------------------------------------------- /tests/integration/templates/cfn_redshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_redshift.yaml -------------------------------------------------------------------------------- /tests/integration/templates/cfn_reuse_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_reuse_param.yaml -------------------------------------------------------------------------------- /tests/integration/templates/cfn_unsupported.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/cfn_unsupported.yaml -------------------------------------------------------------------------------- /tests/integration/templates/dynamodb_iam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/dynamodb_iam.yaml -------------------------------------------------------------------------------- /tests/integration/templates/empty_policy.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/integration/templates/events_loggroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/events_loggroup.yaml -------------------------------------------------------------------------------- /tests/integration/templates/fifo_queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/fifo_queue.json -------------------------------------------------------------------------------- /tests/integration/templates/functions_cidr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/functions_cidr.yml -------------------------------------------------------------------------------- /tests/integration/templates/functions_get_azs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/functions_get_azs.yml -------------------------------------------------------------------------------- /tests/integration/templates/iam_access_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/iam_access_key.yaml -------------------------------------------------------------------------------- /tests/integration/templates/iam_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/iam_policy.yml -------------------------------------------------------------------------------- /tests/integration/templates/iam_policy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/iam_policy_role.yaml -------------------------------------------------------------------------------- /tests/integration/templates/iam_role_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/iam_role_policy.yaml -------------------------------------------------------------------------------- /tests/integration/templates/internet_gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/internet_gateway.yml -------------------------------------------------------------------------------- /tests/integration/templates/kinesis_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/kinesis_default.yaml -------------------------------------------------------------------------------- /tests/integration/templates/kms_key_disabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/kms_key_disabled.yaml -------------------------------------------------------------------------------- /tests/integration/templates/lambda_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/lambda_simple.yml -------------------------------------------------------------------------------- /tests/integration/templates/lambda_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/lambda_url.yaml -------------------------------------------------------------------------------- /tests/integration/templates/macro_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/macro_resource.yml -------------------------------------------------------------------------------- /tests/integration/templates/macros/add_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/macros/add_role.py -------------------------------------------------------------------------------- /tests/integration/templates/macros/raise_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/macros/raise_error.py -------------------------------------------------------------------------------- /tests/integration/templates/multiple_bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/multiple_bucket.yaml -------------------------------------------------------------------------------- /tests/integration/templates/nested_child.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/nested_child.yml -------------------------------------------------------------------------------- /tests/integration/templates/nested_parent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/nested_parent.yml -------------------------------------------------------------------------------- /tests/integration/templates/opensearch_domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/opensearch_domain.yml -------------------------------------------------------------------------------- /tests/integration/templates/registry/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/registry/module.yml -------------------------------------------------------------------------------- /tests/integration/templates/resolve_ssm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/resolve_ssm.yaml -------------------------------------------------------------------------------- /tests/integration/templates/s3_bucket_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/s3_bucket_name.yml -------------------------------------------------------------------------------- /tests/integration/templates/s3_bucketpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/s3_bucketpolicy.yaml -------------------------------------------------------------------------------- /tests/integration/templates/s3_cors_bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/s3_cors_bucket.yaml -------------------------------------------------------------------------------- /tests/integration/templates/sfn_apigateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/sfn_apigateway.yaml -------------------------------------------------------------------------------- /tests/integration/templates/sfn_nested_sync2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/sfn_nested_sync2.json -------------------------------------------------------------------------------- /tests/integration/templates/sfn_retry_catch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/sfn_retry_catch.yaml -------------------------------------------------------------------------------- /tests/integration/templates/simple_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/simple_api.yaml -------------------------------------------------------------------------------- /tests/integration/templates/sns_topic_simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/sns_topic_simple.yaml -------------------------------------------------------------------------------- /tests/integration/templates/stack_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/stack_policy.json -------------------------------------------------------------------------------- /tests/integration/templates/template1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template1.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template2.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template23.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template24.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template26.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template27.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template28.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template30.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template31.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template32.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template33.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template33.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template34.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template35.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template36.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template37.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template37.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template4.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template5.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template6.yaml -------------------------------------------------------------------------------- /tests/integration/templates/template7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/templates/template7.json -------------------------------------------------------------------------------- /tests/integration/terraform/.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/.auto.tfvars -------------------------------------------------------------------------------- /tests/integration/terraform/acm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/acm.tf -------------------------------------------------------------------------------- /tests/integration/terraform/apigateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/apigateway.tf -------------------------------------------------------------------------------- /tests/integration/terraform/apigw.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/apigw.tf -------------------------------------------------------------------------------- /tests/integration/terraform/dynamodb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/dynamodb.tf -------------------------------------------------------------------------------- /tests/integration/terraform/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/ec2.tf -------------------------------------------------------------------------------- /tests/integration/terraform/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/iam.tf -------------------------------------------------------------------------------- /tests/integration/terraform/lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/lambda.tf -------------------------------------------------------------------------------- /tests/integration/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/provider.tf -------------------------------------------------------------------------------- /tests/integration/terraform/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/route53.tf -------------------------------------------------------------------------------- /tests/integration/terraform/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/s3.tf -------------------------------------------------------------------------------- /tests/integration/terraform/sqs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/sqs.tf -------------------------------------------------------------------------------- /tests/integration/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/terraform/versions.tf -------------------------------------------------------------------------------- /tests/integration/test_acm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_acm.py -------------------------------------------------------------------------------- /tests/integration/test_acm.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_acm.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_cloudwatch.py -------------------------------------------------------------------------------- /tests/integration/test_config_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_config_endpoint.py -------------------------------------------------------------------------------- /tests/integration/test_config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_config_service.py -------------------------------------------------------------------------------- /tests/integration/test_dynamodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_dynamodb.py -------------------------------------------------------------------------------- /tests/integration/test_dynamodb.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_dynamodb.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_ec2.py -------------------------------------------------------------------------------- /tests/integration/test_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_edge.py -------------------------------------------------------------------------------- /tests/integration/test_error_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_error_injection.py -------------------------------------------------------------------------------- /tests/integration/test_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_es.py -------------------------------------------------------------------------------- /tests/integration/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_events.py -------------------------------------------------------------------------------- /tests/integration/test_events.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_events.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_firehose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_firehose.py -------------------------------------------------------------------------------- /tests/integration/test_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_forwarder.py -------------------------------------------------------------------------------- /tests/integration/test_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_iam.py -------------------------------------------------------------------------------- /tests/integration/test_iam.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_iam.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_integration.py -------------------------------------------------------------------------------- /tests/integration/test_kinesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_kinesis.py -------------------------------------------------------------------------------- /tests/integration/test_kinesis.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_kinesis.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_kms.py -------------------------------------------------------------------------------- /tests/integration/test_kms.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_kms.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_logs.py -------------------------------------------------------------------------------- /tests/integration/test_logs.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_logs.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_moto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_moto.py -------------------------------------------------------------------------------- /tests/integration/test_multi_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_multi_accounts.py -------------------------------------------------------------------------------- /tests/integration/test_multiregion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_multiregion.py -------------------------------------------------------------------------------- /tests/integration/test_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_notifications.py -------------------------------------------------------------------------------- /tests/integration/test_opensearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_opensearch.py -------------------------------------------------------------------------------- /tests/integration/test_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_redshift.py -------------------------------------------------------------------------------- /tests/integration/test_resourcegroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_resourcegroups.py -------------------------------------------------------------------------------- /tests/integration/test_rgsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_rgsa.py -------------------------------------------------------------------------------- /tests/integration/test_route53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_route53.py -------------------------------------------------------------------------------- /tests/integration/test_route53resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_route53resolver.py -------------------------------------------------------------------------------- /tests/integration/test_s3control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_s3control.py -------------------------------------------------------------------------------- /tests/integration/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_security.py -------------------------------------------------------------------------------- /tests/integration/test_serverless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_serverless.py -------------------------------------------------------------------------------- /tests/integration/test_ses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_ses.py -------------------------------------------------------------------------------- /tests/integration/test_ses.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_ses.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sns.py -------------------------------------------------------------------------------- /tests/integration/test_sns.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sns.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sqs.py -------------------------------------------------------------------------------- /tests/integration/test_sqs.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sqs.snapshot.json -------------------------------------------------------------------------------- /tests/integration/test_sqs_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sqs_backdoor.py -------------------------------------------------------------------------------- /tests/integration/test_ssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_ssm.py -------------------------------------------------------------------------------- /tests/integration/test_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_stores.py -------------------------------------------------------------------------------- /tests/integration/test_sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_sts.py -------------------------------------------------------------------------------- /tests/integration/test_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_support.py -------------------------------------------------------------------------------- /tests/integration/test_swf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_swf.py -------------------------------------------------------------------------------- /tests/integration/test_terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_terraform.py -------------------------------------------------------------------------------- /tests/integration/test_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_transcribe.py -------------------------------------------------------------------------------- /tests/integration/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/test_validate.py -------------------------------------------------------------------------------- /tests/integration/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/utils/test_diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/integration/utils/test_diagnose.py -------------------------------------------------------------------------------- /tests/performance/test_dynamodb_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/performance/test_dynamodb_performance.py -------------------------------------------------------------------------------- /tests/performance/test_sqs_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/performance/test_sqs_performance.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | name = "unit" 2 | -------------------------------------------------------------------------------- /tests/unit/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/aws/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/aws/api/test_asf_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/api/test_asf_providers.py -------------------------------------------------------------------------------- /tests/unit/aws/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/aws/handlers/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/handlers/analytics.py -------------------------------------------------------------------------------- /tests/unit/aws/handlers/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/handlers/service.py -------------------------------------------------------------------------------- /tests/unit/aws/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/aws/protocol/test_op_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/protocol/test_op_router.py -------------------------------------------------------------------------------- /tests/unit/aws/protocol/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/protocol/test_parser.py -------------------------------------------------------------------------------- /tests/unit/aws/protocol/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/protocol/test_serializer.py -------------------------------------------------------------------------------- /tests/unit/aws/test_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_chain.py -------------------------------------------------------------------------------- /tests/unit/aws/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_client.py -------------------------------------------------------------------------------- /tests/unit/aws/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_connect.py -------------------------------------------------------------------------------- /tests/unit/aws/test_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_gateway.py -------------------------------------------------------------------------------- /tests/unit/aws/test_mocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_mocking.py -------------------------------------------------------------------------------- /tests/unit/aws/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_proxy.py -------------------------------------------------------------------------------- /tests/unit/aws/test_scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_scaffold.py -------------------------------------------------------------------------------- /tests/unit/aws/test_service_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_service_router.py -------------------------------------------------------------------------------- /tests/unit/aws/test_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_skeleton.py -------------------------------------------------------------------------------- /tests/unit/aws/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/aws/test_spec.py -------------------------------------------------------------------------------- /tests/unit/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/cli/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/cli/test_cli.py -------------------------------------------------------------------------------- /tests/unit/cli/test_lpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/cli/test_lpm.py -------------------------------------------------------------------------------- /tests/unit/cli/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/cli/test_profiles.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/http_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/__init__.py -------------------------------------------------------------------------------- /tests/unit/http_/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/conftest.py -------------------------------------------------------------------------------- /tests/unit/http_/test_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_adapters.py -------------------------------------------------------------------------------- /tests/unit/http_/test_asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_asgi.py -------------------------------------------------------------------------------- /tests/unit/http_/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_dispatcher.py -------------------------------------------------------------------------------- /tests/unit/http_/test_hypercorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_hypercorn.py -------------------------------------------------------------------------------- /tests/unit/http_/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_proxy.py -------------------------------------------------------------------------------- /tests/unit/http_/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_request.py -------------------------------------------------------------------------------- /tests/unit/http_/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_resource.py -------------------------------------------------------------------------------- /tests/unit/http_/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/http_/test_router.py -------------------------------------------------------------------------------- /tests/unit/logging_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/logging_/__init__.py -------------------------------------------------------------------------------- /tests/unit/logging_/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/logging_/test_format.py -------------------------------------------------------------------------------- /tests/unit/packages/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/packages/test_api.py -------------------------------------------------------------------------------- /tests/unit/packages/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/packages/test_core.py -------------------------------------------------------------------------------- /tests/unit/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/runtime/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/runtime/test_init.py -------------------------------------------------------------------------------- /tests/unit/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/awslambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/opensearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/s3/test_virtual_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/services/s3/test_virtual_host.py -------------------------------------------------------------------------------- /tests/unit/services/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/services/test_internal.py -------------------------------------------------------------------------------- /tests/unit/services/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/services/test_plugins.py -------------------------------------------------------------------------------- /tests/unit/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/state/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/state/test_inspect.py -------------------------------------------------------------------------------- /tests/unit/state/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/state/test_pickle.py -------------------------------------------------------------------------------- /tests/unit/test_apigateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_apigateway.py -------------------------------------------------------------------------------- /tests/unit/test_cloudformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_cloudformation.py -------------------------------------------------------------------------------- /tests/unit/test_cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_cloudwatch.py -------------------------------------------------------------------------------- /tests/unit/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_common.py -------------------------------------------------------------------------------- /tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_config.py -------------------------------------------------------------------------------- /tests/unit/test_cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_cors.py -------------------------------------------------------------------------------- /tests/unit/test_docker_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_docker_utils.py -------------------------------------------------------------------------------- /tests/unit/test_dockerclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_dockerclient.py -------------------------------------------------------------------------------- /tests/unit/test_dynamodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_dynamodb.py -------------------------------------------------------------------------------- /tests/unit/test_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_edge.py -------------------------------------------------------------------------------- /tests/unit/test_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_kms.py -------------------------------------------------------------------------------- /tests/unit/test_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_lambda.py -------------------------------------------------------------------------------- /tests/unit/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_logs.py -------------------------------------------------------------------------------- /tests/unit/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_misc.py -------------------------------------------------------------------------------- /tests/unit/test_moto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_moto.py -------------------------------------------------------------------------------- /tests/unit/test_motoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_motoserver.py -------------------------------------------------------------------------------- /tests/unit/test_partition_rewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_partition_rewriter.py -------------------------------------------------------------------------------- /tests/unit/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_proxy.py -------------------------------------------------------------------------------- /tests/unit/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_s3.py -------------------------------------------------------------------------------- /tests/unit/test_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_sns.py -------------------------------------------------------------------------------- /tests/unit/test_sqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_sqs.py -------------------------------------------------------------------------------- /tests/unit/test_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_stores.py -------------------------------------------------------------------------------- /tests/unit/test_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_tagging.py -------------------------------------------------------------------------------- /tests/unit/test_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/test_templating.py -------------------------------------------------------------------------------- /tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/analytics/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/analytics/conftest.py -------------------------------------------------------------------------------- /tests/unit/utils/analytics/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/analytics/test_client.py -------------------------------------------------------------------------------- /tests/unit/utils/analytics/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/analytics/test_logger.py -------------------------------------------------------------------------------- /tests/unit/utils/analytics/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/analytics/test_metadata.py -------------------------------------------------------------------------------- /tests/unit/utils/analytics/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/analytics/test_publisher.py -------------------------------------------------------------------------------- /tests/unit/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/aws/test_aws_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/aws/test_aws_responses.py -------------------------------------------------------------------------------- /tests/unit/utils/aws/test_aws_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/aws/test_aws_stack.py -------------------------------------------------------------------------------- /tests/unit/utils/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/generic/test_dict_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/generic/test_dict_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/generic/test_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/generic/test_file_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/test_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_archives.py -------------------------------------------------------------------------------- /tests/unit/utils/test_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_bootstrap.py -------------------------------------------------------------------------------- /tests/unit/utils/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_collections.py -------------------------------------------------------------------------------- /tests/unit/utils/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_common.py -------------------------------------------------------------------------------- /tests/unit/utils/test_coverage_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_coverage_docs.py -------------------------------------------------------------------------------- /tests/unit/utils/test_http2_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_http2_server.py -------------------------------------------------------------------------------- /tests/unit/utils/test_http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_http_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/test_net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_net_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_objects.py -------------------------------------------------------------------------------- /tests/unit/utils/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_patch.py -------------------------------------------------------------------------------- /tests/unit/utils/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_scheduler.py -------------------------------------------------------------------------------- /tests/unit/utils/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_ssl.py -------------------------------------------------------------------------------- /tests/unit/utils/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/test_sync.py -------------------------------------------------------------------------------- /tests/unit/utils/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/testing/test_snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/testing/test_snapshots.py -------------------------------------------------------------------------------- /tests/unit/utils/testing/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaohuadongdong/localstack-20/HEAD/tests/unit/utils/testing/test_transformer.py --------------------------------------------------------------------------------