Interface ComputeUrlMapPathMatcherPathRule
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComputeUrlMapPathMatcherPathRule.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:19.078Z") @Stability(Stable) public interface ComputeUrlMapPathMatcherPathRule extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeUrlMapPathMatcherPathRule.BuilderA builder forComputeUrlMapPathMatcherPathRulestatic classComputeUrlMapPathMatcherPathRule.Jsii$ProxyAn implementation forComputeUrlMapPathMatcherPathRule
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComputeUrlMapPathMatcherPathRule.Builderbuilder()List<String>getPaths()The list of path patterns to match.default ComputeUrlMapPathMatcherPathRuleRouteActiongetRouteAction()route_action block.default StringgetService()The backend service or backend bucket to use if any of the given paths match.default ComputeUrlMapPathMatcherPathRuleUrlRedirectgetUrlRedirect()url_redirect block.
-
-
-
Method Detail
-
getPaths
@Stability(Stable) @NotNull List<String> getPaths()
The list of path patterns to match.Each must start with / and the only place a * is allowed is at the end following a /. The string fed to the path matcher does not include any text after the first ? or #, and those chars are not allowed here. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#paths ComputeUrlMap#paths}
-
getRouteAction
@Stability(Stable) @Nullable default ComputeUrlMapPathMatcherPathRuleRouteAction getRouteAction()
route_action block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#route_action ComputeUrlMap#route_action}
-
getService
@Stability(Stable) @Nullable default String getService()
The backend service or backend bucket to use if any of the given paths match.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#service ComputeUrlMap#service}
-
getUrlRedirect
@Stability(Stable) @Nullable default ComputeUrlMapPathMatcherPathRuleUrlRedirect getUrlRedirect()
url_redirect block.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#url_redirect ComputeUrlMap#url_redirect}
-
builder
@Stability(Stable) static ComputeUrlMapPathMatcherPathRule.Builder builder()
-
-