@Stability(value=Stable)
public static interface CfnListenerRule.HostHeaderConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.elasticloadbalancingv2.*;
HostHeaderConfigProperty hostHeaderConfigProperty = HostHeaderConfigProperty.builder()
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnListenerRule.HostHeaderConfigProperty.Builder
A builder for
CfnListenerRule.HostHeaderConfigProperty |
static class |
CfnListenerRule.HostHeaderConfigProperty.Jsii$Proxy
An implementation for
CfnListenerRule.HostHeaderConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnListenerRule.HostHeaderConfigProperty.Builder |
builder() |
default List<String> |
getValues()
One or more host names.
|
@Stability(value=Stable) @Nullable default List<String> getValues()
The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
@Stability(value=Stable) static CfnListenerRule.HostHeaderConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.