TriggerUpdate

public struct TriggerUpdate : 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 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?
  • Undocumented

    Declaration

    Swift

    public init(actions: [Action]? = nil, description: String? = nil, name: String? = nil, predicate: Predicate? = nil, schedule: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws