cloud.localstack.docker.annotation.LocalstackDockerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
package cloud.localstack.docker.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* An annotation to provide parameters to the LocalstackDockerTestRunner
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface LocalstackDockerProperties {
Class extends IHostNameResolver> hostNameResolver();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy