botocore
botocore copied to clipboard
The low-level, core functionality of boto3 and the AWS CLI.
The link to the SSM docs from CloudFormation.create_stack.Parameters.ResolvedValue is failing to render correctly[1]. It looks like the `` block[2] might be breaking the Sphinx render? [1] ``` Read-only. The value...
HTTP responses without a status phrase are valid and should be accepted. #1931
Some proxies may return a custom response in the HTTP body when encountering an error response such as an HTTP/503. Currently we assume that any error response with a body...
This would allow users to provide their own instances of RefreshableCredentials instead of having to set the internal directly, which generally is a bad practice. Recently I've run into an...
I've recently come across a situation where I was unable to work with a publicly writable SQS queue with boto3, it would be great for this to be possible without...
This adds support for the keyring module to the config credential provider. This allows users to store just the access key in a config file while keeping the secret key...
When calling stubber.add_response with certain boto3 s3 client methods I have encountered "botocore.model.OperationNotFoundError". ``` python import unittest import boto3 from botocore.stub import Stubber def setup_s3_client(): return boto3.client('s3') MOCK_BUCKET_NAME = 'test-bucket'...
This fixes some incorrect type signatures and makes botocore easier to use in CLIs and other libraries that deal with non-Python input. Fixes https://github.com/boto/botocore/issues/2442
**Is your feature request related to a problem? Please describe.** Currently there are no fixed releases from v2. That mean, that aws/aws-cli needs to reference just v2 branch, which happens...
## Problem When Multi-factor-authentication (MFA) credentials expire, boto makes no attempt to refresh them, but immediately throws the error: `RefreshWithMFAUnsupportedError: Cannot refresh credentials: MFA token required.` ## Relevant code This...