Mounts an S3 drive so buckets, prefixes, and objects can be explored with the standard navigation commands (Set-Location, Get-ChildItem, Get-Content, Set-Content, Remove-Item). By default, the drive maps to the whole account rather than a single bucket; use -Root to scope it to a bucket or prefix. Mounting does not change the current location. Use Get-PSDrive to list mounted drives and Set-Location to enter one. The drive is intended for navigation and ad hoc content work; for large local file transfers, use Read-S3Object and Write-S3Object. Credentials resolve the same way as the S3 cmdlets: explicit keys, then -ProfileName, then -AWSCredential, then the session default $StoredAWSCredentials, then the SDK default chain. Region follows the same order too: -Region, then $StoredAWSRegion, then the profile region, then the AWS_REGION environment variable, then EC2 instance metadata, then us-east-1. A single drive spans all regions.
Thin wrapper over `New-PSDrive -PSProvider AWS.S3`, which also works directly.