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

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

import java.util.List;
import software.amazon.awssdk.annotations.SdkInternalApi;

/**
 * Visitor for the right-hand side of rules (tree, error, endpoint)
 * @param  The return type of the visitor
 */
@SdkInternalApi
public interface RuleValueVisitor {
    R visitTreeRule(List rules);

    R visitErrorRule(Expr error);

    R visitEndpointRule(EndpointResult endpoint);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy