All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.codegen.rules.VarargFn.resource Maven / Gradle / Ivy

Go to download

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