Interface ComputeUrlMapHostRule
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComputeUrlMapHostRule.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:19.060Z") @Stability(Stable) public interface ComputeUrlMapHostRule extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeUrlMapHostRule.BuilderA builder forComputeUrlMapHostRulestatic classComputeUrlMapHostRule.Jsii$ProxyAn implementation forComputeUrlMapHostRule
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComputeUrlMapHostRule.Builderbuilder()default StringgetDescription()An optional description of this resource.List<String>getHosts()The list of host patterns to match.StringgetPathMatcher()The name of the PathMatcher to use to match the path portion of the URL if the hostRule matches the URL's host portion.
-
-
-
Method Detail
-
getHosts
@Stability(Stable) @NotNull List<String> getHosts()
The list of host patterns to match.They must be valid hostnames, except * will match any string of ([a-z0-9-.]*). In that case, * must be the first character and must be followed in the pattern by either - or .. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#hosts ComputeUrlMap#hosts}
-
getPathMatcher
@Stability(Stable) @NotNull String getPathMatcher()
The name of the PathMatcher to use to match the path portion of the URL if the hostRule matches the URL's host portion.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#path_matcher ComputeUrlMap#path_matcher}
-
getDescription
@Stability(Stable) @Nullable default String getDescription()
An optional description of this resource. Provide this property when you create the resource.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/compute_url_map#description ComputeUrlMap#description}
-
builder
@Stability(Stable) static ComputeUrlMapHostRule.Builder builder()
- Returns:
- a
ComputeUrlMapHostRule.BuilderofComputeUrlMapHostRule
-
-