Skip to main content
Version: cicd.4.0 print this page

Data Classifications

Data Classifications help categorize data assets by sensitivity and governance requirements.

Below is the sample resource definition file for Data Classification:

{
"rDataClassification": {
"Type": "DataClassification",
"Properties": {
"DataClassificationName": "cicd_test_dataclassification",
"Description": "Base data classification for CICD QA testing"
}
}
}
Note: Deployment dependencies

DataClassification has dependencies on Tag.

Dependent resources should not be deleted before the primary resource; attempting to do so may lead to failures or inconsistencies during the deletion process.

Referencing this Resource

Below are the common keys that can be used in the DependsOn function to retrieve details of this resource.

Supported Key

KeyDescription
DataClassificationNameReturns the DataClassificationName value of this resource

For additional supported keys, refer to the API definition document for the respective resource type.

Example

The following example shows how to retrieve the data classification name from a classification template and use it in a dataset template:

{
"rCICDTestDS": {
"Type": "Dataset",
"Properties": {
"DataClassification": {
"!DependsOn": "rDataClassification.DataClassificationName"
}
}
}
}