com.pulumi.aws.appmesh.outputs.GatewayRouteSpecHttp2RouteActionRewritePath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.appmesh.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GatewayRouteSpecHttp2RouteActionRewritePath {
/**
* @return The exact path to match on.
*
*/
private String exact;
private GatewayRouteSpecHttp2RouteActionRewritePath() {}
/**
* @return The exact path to match on.
*
*/
public String exact() {
return this.exact;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GatewayRouteSpecHttp2RouteActionRewritePath defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String exact;
public Builder() {}
public Builder(GatewayRouteSpecHttp2RouteActionRewritePath defaults) {
Objects.requireNonNull(defaults);
this.exact = defaults.exact;
}
@CustomType.Setter
public Builder exact(String exact) {
if (exact == null) {
throw new MissingRequiredPropertyException("GatewayRouteSpecHttp2RouteActionRewritePath", "exact");
}
this.exact = exact;
return this;
}
public GatewayRouteSpecHttp2RouteActionRewritePath build() {
final var _resultValue = new GatewayRouteSpecHttp2RouteActionRewritePath();
_resultValue.exact = exact;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy