Class TriggerRecurrenceArgs
Inherited Members
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 TriggerRecurrenceArgs : ResourceArgs
Constructors
View SourceTriggerRecurrenceArgs()
Declaration
public TriggerRecurrenceArgs()
Properties
View SourceFrequency
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> |
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> |
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> |
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> |
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> |