Interface ComputeRegionUrlMapHostRule
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ComputeRegionUrlMapHostRule.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:18.850Z") @Stability(Stable) public interface ComputeRegionUrlMapHostRule extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classComputeRegionUrlMapHostRule.BuilderA builder forComputeRegionUrlMapHostRulestatic classComputeRegionUrlMapHostRule.Jsii$ProxyAn implementation forComputeRegionUrlMapHostRule
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ComputeRegionUrlMapHostRule.Builderbuilder()default StringgetDescription()An optional description of this HostRule.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_region_url_map#hosts ComputeRegionUrlMap#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_region_url_map#path_matcher ComputeRegionUrlMap#path_matcher}
-
getDescription
@Stability(Stable) @Nullable default String getDescription()
An optional description of this HostRule. 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_region_url_map#description ComputeRegionUrlMap#description}
-
builder
@Stability(Stable) static ComputeRegionUrlMapHostRule.Builder builder()
-
-