MCPcopy Create free account

hub / github.com/boto/boto3 / types & classes

Types & classes79 in github.com/boto/boto3

↓ 22 callersClassResourceModel
A model representing a resource, defined via a JSON description format. A resource has identifiers, attributes, actions, sub-resources, r
boto3/resources/model.py:237
↓ 20 callersClassSession
A session stores configuration state and allows you to create service clients and resources. :type aws_access_key_id: string :param
boto3/session.py:25
↓ 19 callersClassResourceMeta
An object containing metadata about a resource.
boto3/resources/base.py:22
↓ 18 callersClassInMemoryOSLayer
tests/unit/s3/test_transfer.py:35
↓ 13 callersClassS3Transfer
boto3/s3/transfer.py:540
↓ 11 callersClassTransferConfig
boto3/s3/transfer.py:526
↓ 10 callersClassRequest
A service operation action request. :type definition: dict :param definition: The JSON definition
boto3/resources/model.py:134
↓ 8 callersClassParameter
An auto-filled parameter which has a source and target. For example, the ``QueueUrl`` may be auto-filled from a resource's ``url`` identifier
boto3/resources/model.py:103
↓ 7 callersClassMultipartDownloader
boto3/s3/transfer.py:419
↓ 7 callersClassOSUtils
boto3/s3/transfer.py:288
↓ 6 callersClassAction
A service operation action. :type name: string :param name: The name of the action :type definition: dict :param definition: The
boto3/resources/model.py:46
↓ 5 callersClassBatchAction
An action which operates on a batch of items in a collection, typically a single page of results from the collection's underlying service
boto3/resources/action.py:84
↓ 5 callersClassResourceFactory
A factory to create new :py:class:`~boto3.resources.base.ServiceResource` classes from a :py:class:`~boto3.resources.model.ResourceModel`. Th
boto3/resources/factory.py:29
↓ 5 callersClassServiceAction
A class representing a callable action on a resource, for example ``sqs.get_queue_by_name(...)`` or ``s3.Bucket('foo').delete()``. The ac
boto3/resources/action.py:25
↓ 4 callersClassCollection
A group of resources. See :py:class:`Action`. :type name: string :param name: The name of the collection :type definition: dict
boto3/resources/model.py:214
↓ 4 callersClassMultipartUploader
boto3/s3/transfer.py:312
↓ 4 callersClassResourceHandler
Creates a new resource or list of new resources from the low-level response based on the given response resource definition. :type searc
boto3/resources/response.py:159
↓ 4 callersClassStreamReaderProgress
Wrapper for a read only stream that adds progress callbacks.
boto3/s3/transfer.py:275
↓ 3 callersClassRawHandler
A raw action response handler. This passed through the response dictionary, optionally after performing a JMESPath search if one has been
boto3/resources/response.py:129
↓ 3 callersClassShutdownQueue
A queue implementation that can be shutdown. Shutting down a queue means that this class adds a trigger_shutdown method that will trigger all
boto3/s3/transfer.py:387
↓ 3 callersClassWaiterAction
A class representing a callable waiter action on a resource, for example ``s3.Bucket('foo').wait_until_bucket_exists()``. The waiter acti
boto3/resources/action.py:154
↓ 2 callersClassCollectionFactory
A factory to create new :py:class:`CollectionManager` and :py:class:`ResourceCollection` subclasses from a :py:class:`~boto3.resources.mo
boto3/resources/collection.py:361
↓ 2 callersClassResourceLoadException
boto3/exceptions.py:14
↓ 2 callersClassResponseResource
A resource response to create after performing an action. :type definition: dict :param definition: The JSON definition :type resour
boto3/resources/model.py:169
↓ 2 callersClassRetriesExceededError
boto3/exceptions.py:22
↓ 2 callersClassWaiter
An event waiter specification. :type name: string :param name: Name of the waiter :type definition: dict :param definition: The
boto3/resources/model.py:148
↓ 1 callersClassCollectionManager
A collection manager provides access to resource collection instances, which can be iterated and filtered. The manager exposes some conve
boto3/resources/collection.py:264
↓ 1 callersClassFileCreator
tests/integration/test_s3.py:51
↓ 1 callersClassIdentifier
A resource identifier, given by its name. :type name: string :param name: The name of the identifier
boto3/resources/model.py:34
↓ 1 callersClassNoVersionFound
boto3/exceptions.py:18
↓ 1 callersClassNullHandler
boto3/__init__.py:91
↓ 1 callersClassQueueShutdownError
boto3/s3/transfer.py:155
↓ 1 callersClassS3UploadFailedError
boto3/exceptions.py:32
ClassBaseTestCase
A base test case which mocks out the low-level session to prevent any actual calls to Botocore.
tests/__init__.py:46
ClassBaseTestResourceFactory
tests/unit/resources/test_factory.py:23
ClassDefinitionWithParams
An item which has parameters exposed via the ``params`` property. A request has an operation and parameters, while a waiter has a name, a
boto3/resources/model.py:76
ClassFailedDownloadParts
tests/unit/s3/test_transfer.py:439
ClassFakeModule
tests/unit/test_utils.py:20
ClassReadFileChunk
boto3/s3/transfer.py:159
ClassResourceCollection
Represents a collection of resources, which can be iterated through, optionally with filtering. Collections automatically handle pagination
boto3/resources/collection.py:27
ClassS3TransferFailedError
boto3/exceptions.py:28
ClassSequentialExecutor
tests/unit/s3/test_transfer.py:63
ClassServiceResource
A base class for resources. :type client: botocore.client :param client: A low-level Botocore client instance
boto3/resources/base.py:61
ClassTestBatchActionCall
tests/unit/resources/test_action.py:160
ClassTestBoto3
tests/unit/test_boto3.py:19
ClassTestBuildEmptyResponse
tests/unit/resources/test_response.py:135
ClassTestBuildIdentifiers
tests/unit/resources/test_response.py:22
ClassTestCollectionFactory
tests/unit/resources/test_collection.py:23
ClassTestDocumentService
End-to-end tests of the documentation functionality that uses a dummy service and resource JSON description. The tests check for specific
tests/unit/test_docs.py:91
ClassTestDocumentStructure
tests/unit/test_docs.py:226
ClassTestInject
tests/unit/s3/test_inject.py:19
ClassTestModels
tests/unit/resources/test_model.py:20
ClassTestMultipartDownloader
tests/unit/s3/test_transfer.py:321
ClassTestMultipartUploader
tests/unit/s3/test_transfer.py:241
ClassTestOSUtils
tests/unit/s3/test_transfer.py:87
ClassTestPythonTypeName
tests/unit/test_docs.py:56
ClassTestRandomFileExtension
tests/unit/s3/test_transfer.py:639
ClassTestRawHandler
tests/unit/resources/test_response.py:263
ClassTestReadFileChunk
tests/unit/s3/test_transfer.py:125
ClassTestRenaming
tests/unit/resources/test_model.py:239
ClassTestResourceCollection
tests/unit/resources/test_collection.py:114
ClassTestResourceFactory
tests/unit/resources/test_factory.py:30
ClassTestResourceFactoryDanglingResource
tests/unit/resources/test_factory.py:592
ClassTestResourceHandler
tests/unit/resources/test_response.py:296
ClassTestS3Resource
tests/integration/test_s3.py:108
ClassTestS3Transfer
tests/unit/s3/test_transfer.py:464
ClassTestS3TransferMethodInjection
tests/integration/test_s3.py:457
ClassTestS3Transfers
Tests for the high level boto3.s3.transfer module.
tests/integration/test_s3.py:214
ClassTestSQSResource
tests/integration/test_sqs.py:19
ClassTestServiceActionCall
tests/unit/resources/test_action.py:20
ClassTestServiceActionParams
tests/unit/resources/test_params.py:21
ClassTestServiceResourceSubresources
tests/unit/resources/test_factory.py:751
ClassTestSession
tests/unit/test_session.py:38
ClassTestShutdownQueue
tests/unit/s3/test_transfer.py:626
ClassTestStreamReaderProgress
tests/unit/s3/test_transfer.py:222
ClassTestStructBuilder
tests/unit/resources/test_params.py:229
ClassTestUtils
tests/integration/test_utils.py:22
ClassTestUtils
tests/unit/test_utils.py:26
ClassTestWaiterActionCall
tests/unit/resources/test_action.py:115