Skip to main content

DataClassificationSettings

Properties

NameTypeDescriptionNotes
is_enabledboolIndicates whether the feature or configuration is enabled.[optional] [default to False]
cluster_idstrThe identifier of the cluster associated with this configuration, if applicable.[optional]
}

Example

from sailpoint.data_access_security.models.data_classification_settings import DataClassificationSettings

data_classification_settings = DataClassificationSettings(
is_enabled=True,
cluster_id='cluster-001'
)

[Back to top]