Skip to main content

Identityattributetransform

Transform definition for an identity attribute.

Properties

NameTypeDescriptionNotes
identity_attribute_namestrIdentity attribute's name.[optional]
transform_definitionTransformdefinition[optional]
}

Example

from sailpoint.identity_profiles.models.identityattributetransform import Identityattributetransform

identityattributetransform = Identityattributetransform(
identity_attribute_name='email',
transform_definition=sailpoint.identity_profiles.models.transform_definition.Transform Definition(
type = 'accountAttribute',
attributes = {"attributeName":"e-mail","sourceName":"MySource","sourceId":"2c9180877a826e68017a8c0b03da1a53"}, )
)

[Back to top]