ConfiguredStorage
This class provides a lazy-loaded interface for the storage backend defined by the static files storage alias. It defers the instantiation of the storage object until its attributes are accessed, ensuring that the storage configuration is only resolved when needed.
Attributes
| Attribute | Type | Description |
|---|---|---|
| _wrapped | [BaseStorage](../../messages/storage/base/basestorage.md?sid=django_contrib_messages_storage_base_basestorage) | The underlying storage instance retrieved from the static files storage alias, initialized lazily upon first access. |
Constructor
Signature
def ConfiguredStorage()