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.dataclassificationsettings import Dataclassificationsettings

dataclassificationsettings = Dataclassificationsettings(
is_enabled=True,
cluster_id='cluster-001'
)

[Back to top]