Remove-VBRAmazonAccount
Short Description
Removes AWS credentials records from Veeam Backup & Replication.
Platform: VMware, Hyper-V
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Remove-VBRAmazonAccount -Account <VBRAmazonAccount> [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet removes AWS credentials records from Veeam Backup & Replication. You can remove credentials records for the following services:
- Amazon S3
- Amazon EC2
- S3 compatible (including IBM Cloud Object Storage)
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Account |
Specifies AWS credentials records that you want to remove.
Accepts the |
True |
Named |
True (ByValue) |
|
|
Confirm |
Defines whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.
Note: Microsoft PowerShell enables the |
|
False |
Named |
False |
|
WhatIf |
Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Examples
Removing AWS Credentials Record
This example shows how to remove an AWS credentials record.
|
$creds = Get-VBRAmazonAccount -AccessKey "ABCDEFGHIGKLMNOP" Remove-VBRAmazonAccount -Account $creds |
Perform the following steps:
- Run the
Get-VBRAmazonAccountReturns AWS credentials records. cmdlet. Specify theAccessKeyparameter value. Save the result to the$credsvariable. - Run the
Remove-VBRAmazonAccountcmdlet. Set the$credsvariable as theAccountparameter value.
Related Commands
Get-VBRAmazonAccountReturns AWS credentials records.