MaintenanceWindowLambdaParameters

public struct MaintenanceWindowLambdaParameters : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Pass client-specific information to the Lambda function that you are invoking. You can then process the client information in your Lambda function as you choose through the context variable.

    Declaration

    Swift

    public let clientContext: String?
  • JSON to provide to your Lambda function as input.

    Declaration

    Swift

    public let payload: Data?
  • (Optional) Specify a Lambda function version or alias name. If you specify a function version, the action uses the qualified function ARN to invoke a specific Lambda function. If you specify an alias name, the action uses the alias ARN to invoke the Lambda function version to which the alias points.

    Declaration

    Swift

    public let qualifier: String?
  • Undocumented

    Declaration

    Swift

    public init(clientContext: String? = nil, payload: Data? = nil, qualifier: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws