LambdaActivity

public struct LambdaActivity : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The number of messages passed to the Lambda function for processing. The AWS Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.

    Declaration

    Swift

    public let batchSize: Int
  • The name of the Lambda function that is run on the message.

    Declaration

    Swift

    public let lambdaName: String
  • The name of the ‘lambda’ activity.

    Declaration

    Swift

    public let name: String
  • The next activity in the pipeline.

    Declaration

    Swift

    public let next: String?
  • Undocumented

    Declaration

    Swift

    public init(batchSize: Int, lambdaName: String, name: String, next: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws