Share via


StartStreamingJobParameters Constructors

Definition

Overloads

StartStreamingJobParameters()

Initializes a new instance of the StartStreamingJobParameters class.

StartStreamingJobParameters(String, Nullable<DateTime>)

Initializes a new instance of the StartStreamingJobParameters class.

StartStreamingJobParameters()

Initializes a new instance of the StartStreamingJobParameters class.

public StartStreamingJobParameters ();
Public Sub New ()

Applies to

StartStreamingJobParameters(String, Nullable<DateTime>)

Initializes a new instance of the StartStreamingJobParameters class.

public StartStreamingJobParameters (string outputStartMode = default, DateTime? outputStartTime = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.StartStreamingJobParameters : string * Nullable<DateTime> -> Microsoft.Azure.Management.StreamAnalytics.Models.StartStreamingJobParameters
Public Sub New (Optional outputStartMode As String = Nothing, Optional outputStartTime As Nullable(Of DateTime) = Nothing)

Parameters

outputStartMode
String

Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting point of the output event stream should start whenever the job is started, start at a custom user time stamp specified via the outputStartTime property, or start from the last event output time. Possible values include: 'JobStartTime', 'CustomTime', 'LastOutputEventTime'

outputStartTime
Nullable<DateTime>

Value is either an ISO-8601 formatted time stamp that indicates the starting point of the output event stream, or null to indicate that the output event stream will start whenever the streaming job is started. This property must have a value if outputStartMode is set to CustomTime.

Applies to