--- title: "Get-VBOAmazonS3Account" description: "This cmdlet returns an array of existing Amazon S3 storage account credentials managed by Veeam Backup for Microsoft 365." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboamazons3account.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Amazon Storage Settings > Amazon S3 Accounts > Get-VBOAmazonS3Account" dateModified: "2026-08-21" --- # Get-VBOAmazonS3Account ## Short Description Returns Amazon S3 storage account credentials. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of existing Amazon S3 storage account credentials managed by Veeam Backup for Microsoft 365. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

AccessKey

Specifies an access key for Amazon S3 storage account credentials. The cmdlet will return Amazon S3 storage account credentials with this access key.

String

False

Named

False

Id

Specifies an array of IDs for Amazon S3 storage account credentials. The cmdlet will return Amazon S3 storage account credentials with these IDs.

Guid

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOAmazonS3Account`](vboamazons3account.md) object that contains Amazon S3 storage account credentials. ## Examples ::: example ### Example 1: Getting Amazon S3 Storage Account Credentials by ID This command returns Amazon S3 storage account credentials by the Amazon S3 ID. ``` Get-VBOAmazonS3Account -Id 1dfc5af0-2605-47ac-94d8-13dea4d14608 ``` ::: ::: example ### Example 2: Getting Amazon S3 Storage Account Credentials by Access Key This command returns Amazon S3 storage account credentials by the specified access key. ``` Get-VBOAmazonS3Account -AccessKey "?Iqws8NewidZydk" ``` :::