Is your feature request related to a problem? Please describe.
The MinioAccess and RustfsAccess interfaces currently duplicate the same S3 access API definitions, including identical default implementations of s3put(). Since both interfaces provide the same behavior, maintaining separate copies introduces unnecessary duplication and increases the risk of inconsistencies over time.
Any future enhancement, bug fix, or API change to the S3 testcontainer support would need to be applied in two places, making maintenance more error-prone and increasing the likelihood of the implementations diverging. Consolidating the shared functionality into a common abstraction would reduce maintenance overhead, improve consistency, and make future updates easier to manage.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem? Please describe.
The
MinioAccessandRustfsAccessinterfaces currently duplicate the same S3 access API definitions, including identical default implementations ofs3put(). Since both interfaces provide the same behavior, maintaining separate copies introduces unnecessary duplication and increases the risk of inconsistencies over time.Any future enhancement, bug fix, or API change to the S3 testcontainer support would need to be applied in two places, making maintenance more error-prone and increasing the likelihood of the implementations diverging. Consolidating the shared functionality into a common abstraction would reduce maintenance overhead, improve consistency, and make future updates easier to manage.
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
No response