--- title: "New-VBRObjectStorageBackupTagMask" description: "Defines a tag mask for objects and prefixes in object storage. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet creates the VBRObjectStorageBackupTagMask object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrobjectstoragebackuptagmask.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source Jobs > Managing Backup Jobs for Protecting Unstructured Data > New-VBRObjectStorageBackupTagMask" dateModified: "2026-08-19" --- # New-VBRObjectStorageBackupTagMask ## Short Description Defines a tag mask for objects and prefixes in object storage. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRObjectStorageBackupTagMask -Name -Value [-IsObjectTag] [] ``` ## Detailed Description This cmdlet creates the `VBRObjectStorageBackupTagMask` object. This object defines a tag mask for objects and prefixes in object storage. You can use this mask to exclude files from object storage backup job or include them to this job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

IsObjectTag

Note: This parameter is required if you specify the tag for an individual object.

Defines that the cmdlet will recognize the object tag. If you omit this parameter, the cmdlet will recognize the bucket tag.

SwitchParameter

False

Named

False

Name

Specifies the name of a tag.

Note: This parameter is case-sensitive.

String

True

Named

False

Value

Specifies the value of a tag.

Note: This parameter is case-sensitive.

String

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRObjectStorageBackupTagMask` object that defines a tag mask for objects and prefixes in object storage ## Examples ::: example ### Defining Tag Mask for Object Within Object Storage Job This command defines the tag mask for with object storage job. ``` $InclusionMask = New-VBRObjectStorageBackupTagMask -Name "tag" -Value "tag" -IsObjectTag ``` :::