Show / Hide Table of Contents

Class TriggerRecurrenceState

Inheritance
System.Object
InputArgs
ResourceArgs
TriggerRecurrenceState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.LogicApps
Assembly: Pulumi.Azure.dll
Syntax
public sealed class TriggerRecurrenceState : ResourceArgs

Constructors

View Source

TriggerRecurrenceState()

Declaration
public TriggerRecurrenceState()

Properties

View Source

Frequency

Specifies the Frequency at which this Trigger should be run. Possible values include Month, Week, Day, Hour, Minute and Second.

Declaration
public Input<string> Frequency { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Interval

Specifies interval used for the Frequency, for example a value of 4 for interval and hour for frequency would run the Trigger every 4 hours.

Declaration
public Input<int> Interval { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

LogicAppId

Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.

Declaration
public Input<string> LogicAppId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Specifies the name of the Recurrence Triggers to be created within the Logic App Workflow. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StartTime

Specifies the start date and time for this trigger in RFC3339 format: 2000-01-02T03:04:05Z.

Declaration
public Input<string> StartTime { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.