io.quarkus.funqy.lambda.model.pipes.BatchItemFailures Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Amazon Lambda Binding for Quarkus Funqy framework
The newest version!
package io.quarkus.funqy.lambda.model.pipes;
public class BatchItemFailures {
private final String itemIdentifier;
public BatchItemFailures(final String itemIdentifier) {
this.itemIdentifier = itemIdentifier;
}
public String getItemIdentifier() {
return itemIdentifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy