Trigger
public struct Trigger : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The actions initiated by this trigger.
Declaration
Swift
public let actions: [Action]?
-
A description of this trigger.
Declaration
Swift
public let description: String?
-
Reserved for future use.
Declaration
Swift
public let id: String?
-
The name of the trigger.
Declaration
Swift
public let name: String?
-
The predicate of this trigger, which defines when it will fire.
Declaration
Swift
public let predicate: Predicate?
-
A cron expression used to specify the schedule (see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, you would specify: cron(15 12 * * ? *).
Declaration
Swift
public let schedule: String?
-
The current state of the trigger.
Declaration
Swift
public let state: TriggerState?
-
The type of trigger that this is.
Declaration
Swift
public let type: TriggerType?
-
The name of the workflow associated with the trigger.
Declaration
Swift
public let workflowName: String?
-
Undocumented
Declaration
Swift
public init(actions: [Action]? = nil, description: String? = nil, id: String? = nil, name: String? = nil, predicate: Predicate? = nil, schedule: String? = nil, state: TriggerState? = nil, type: TriggerType? = nil, workflowName: String? = nil)