ScriptActivityParameter Class

Parameters of a script block.

Inheritance
ScriptActivityParameter

Constructor

ScriptActivityParameter(*, name: Optional[Any] = None, type: Optional[Union[str, _models.ScriptActivityParameterType]] = None, value: Optional[Any] = None, direction: Optional[Union[str, _models.ScriptActivityParameterDirection]] = None, size: Optional[int] = None, **kwargs)

Variables

name
any

The name of the parameter. Type: string (or Expression with resultType string).

type
str or ScriptActivityParameterType

The type of the parameter. Known values are: "Boolean", "DateTime", "DateTimeOffset", "Decimal", "Double", "Guid", "Int16", "Int32", "Int64", "Single", "String", "Timespan".

value
any

The value of the parameter.

direction
str or ScriptActivityParameterDirection

The direction of the parameter. Known values are: "Input", "Output", "InputOutput".

size
int

The size of the output direction parameter.