Skip to main content

FormDefinitionInput

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the form input.[optional]
TypeEnum [ "STRING" ]FormDefinitionInputType value. STRING FormDefinitionInputTypeString[optional]
LabelStringName for the form input.[optional]
DescriptionStringForm input's description.[optional]

Examples

  • Prepare the resource
$FormDefinitionInput = Initialize-PSSailpoint.V2024FormDefinitionInput  -Id 00000000-0000-0000-0000-000000000000 `
-Type STRING `
-Label input1 `
-Description A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic
  • Convert the resource to JSON
$FormDefinitionInput | ConvertTo-JSON

[Back to top]