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

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

import software.amazon.awssdk.annotations.SdkInternalApi;

@SdkInternalApi
public final class EndpointRule extends Rule {
    private final EndpointResult endpoint;

    protected EndpointRule(Builder builder, EndpointResult endpoint) {
        super(builder);
        this.endpoint = endpoint;
    }

    public EndpointResult getEndpoint() {
        return endpoint;
    }

    @Override
    public  T accept(RuleValueVisitor visitor) {
        return visitor.visitEndpointRule(this.getEndpoint());
    }

    @Override
    public String toString() {
        return "EndpointRule{" +
               "endpoint=" + endpoint +
               ", conditions=" + conditions +
               ", documentation='" + documentation + '\'' +
               '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy