
software.amazon.awssdk.codegen.rules.VarargFn.resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
The AWS SDK for Java - Code Generator module holds the classes and templates required to generate the
AWS Java SDK clients for AWS services.
The newest version!
import java.util.List;
import software.amazon.awssdk.annotations.SdkInternalApi;
@SdkInternalApi
abstract class VarargFn extends Fn {
VarargFn(FnNode fnNode) {
super(fnNode);
}
public abstract Value eval(Scope scope);
protected List args() {
return this.fnNode.getArgv();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy