Skip to main content

SourceDatasetResourceReference

Simplified resource reference associated with a source dataset.

Properties

NameTypeDescriptionNotes
idstrResource identifier.[optional]
namestrDisplay name of the resource.[optional]
typestrResource type from source schema config.[optional]
}

Example

from sailpoint.sources.models.source_dataset_resource_reference import SourceDatasetResourceReference

source_dataset_resource_reference = SourceDatasetResourceReference(
id='aws:iam-role',
name='Role',
type='std:resource'
)

[Back to top]