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.v3.models.identity_attribute_transform import IdentityAttributeTransform

identity_attribute_transform = IdentityAttributeTransform(
identity_attribute_name='email',
transform_definition=sailpoint.v3.models.transform_definition.TransformDefinition(
type = 'accountAttribute',
attributes = {attributeName=e-mail, sourceName=MySource, sourceId=2c9180877a826e68017a8c0b03da1a53}, )
)

[Back to top]