Show / Hide Table of Contents

Class FunctionsTargetDetails

The destination function for data transferred from the source. For configuration instructions, see Creating a Connector.

Inheritance
object
TargetDetails
FunctionsTargetDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class FunctionsTargetDetails : TargetDetails

Properties

BatchSizeInKbs

Declaration
[JsonProperty(PropertyName = "batchSizeInKbs")]
public int? BatchSizeInKbs { get; set; }
Property Value
Type Description
int?

The batch rollover size in kilobytes. Only one size option can be specified: batchSizeInKbs or batchSizeInNum.

BatchSizeInNum

Declaration
[JsonProperty(PropertyName = "batchSizeInNum")]
public int? BatchSizeInNum { get; set; }
Property Value
Type Description
int?

The batch rollover size in number of messages. Only one size option can be specified: batchSizeInKbs or batchSizeInNum.

BatchTimeInSec

Declaration
[JsonProperty(PropertyName = "batchTimeInSec")]
public int? BatchTimeInSec { get; set; }
Property Value
Type Description
int?

The batch rollover time in seconds.

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.

Remarks

Required

In this article
Back to top