Class FunctionTaskDetails
The Functions task. Batch input for a function can be limited by either size or time. The first limit reached determines the boundary of the batch. For configuration instructions, see Creating a Connector.
Inherited Members
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class FunctionTaskDetails : TaskDetails
Properties
BatchSizeInKbs
Declaration
[JsonProperty(PropertyName = "batchSizeInKbs")]
public int? BatchSizeInKbs { get; set; }
Property Value
Type | Description |
---|---|
int? | Size limit (kilobytes) for batch sent to invoke the function. |
BatchTimeInSec
Declaration
[JsonProperty(PropertyName = "batchTimeInSec")]
public int? BatchTimeInSec { get; set; }
Property Value
Type | Description |
---|---|
int? | Time limit (seconds) for batch sent to invoke the function. |
FunctionId
Declaration
[Required(ErrorMessage = "FunctionId is required.")]
[JsonProperty(PropertyName = "functionId")]
public string FunctionId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the function to be used as a task. |
Remarks
Required