async fn list_objects(
s3_config: &S3ConnectorConfig,
creds: &AwsCredentials,
) -> Result<Vec<S3Object>>Expand description
List all objects in the configured S3 bucket, handling pagination.
Uses ListObjectsV2 with max-keys=1000 per page. Automatically
follows NextContinuationToken until all objects are retrieved.