@Stability(value=Stable)
public static interface CfnListenerRule.RuleConditionProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
RuleConditionProperty ruleConditionProperty = RuleConditionProperty.builder()
.field("field")
.hostHeaderConfig(HostHeaderConfigProperty.builder()
.values(List.of("values"))
.build())
.httpHeaderConfig(HttpHeaderConfigProperty.builder()
.httpHeaderName("httpHeaderName")
.values(List.of("values"))
.build())
.httpRequestMethodConfig(HttpRequestMethodConfigProperty.builder()
.values(List.of("values"))
.build())
.pathPatternConfig(PathPatternConfigProperty.builder()
.values(List.of("values"))
.build())
.queryStringConfig(QueryStringConfigProperty.builder()
.values(List.of(QueryStringKeyValueProperty.builder()
.key("key")
.value("value")
.build()))
.build())
.sourceIpConfig(SourceIpConfigProperty.builder()
.values(List.of("values"))
.build())
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnListenerRule.RuleConditionProperty.Builder
A builder for
CfnListenerRule.RuleConditionProperty |
static class |
CfnListenerRule.RuleConditionProperty.Jsii$Proxy
An implementation for
CfnListenerRule.RuleConditionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnListenerRule.RuleConditionProperty.Builder |
builder() |
default String |
getField()
`CfnListenerRule.RuleConditionProperty.Field`.
|
default Object |
getHostHeaderConfig()
`CfnListenerRule.RuleConditionProperty.HostHeaderConfig`.
|
default Object |
getHttpHeaderConfig()
`CfnListenerRule.RuleConditionProperty.HttpHeaderConfig`.
|
default Object |
getHttpRequestMethodConfig()
`CfnListenerRule.RuleConditionProperty.HttpRequestMethodConfig`.
|
default Object |
getPathPatternConfig()
`CfnListenerRule.RuleConditionProperty.PathPatternConfig`.
|
default Object |
getQueryStringConfig()
`CfnListenerRule.RuleConditionProperty.QueryStringConfig`.
|
default Object |
getSourceIpConfig()
`CfnListenerRule.RuleConditionProperty.SourceIpConfig`.
|
default List<String> |
getValues()
`CfnListenerRule.RuleConditionProperty.Values`.
|
@Stability(value=Stable) @Nullable default String getField()
@Stability(value=Stable) @Nullable default Object getHostHeaderConfig()
@Stability(value=Stable) @Nullable default Object getHttpHeaderConfig()
@Stability(value=Stable) @Nullable default Object getHttpRequestMethodConfig()
@Stability(value=Stable) @Nullable default Object getPathPatternConfig()
@Stability(value=Stable) @Nullable default Object getQueryStringConfig()
@Stability(value=Stable) @Nullable default Object getSourceIpConfig()
@Stability(value=Stable) @Nullable default List<String> getValues()
@Stability(value=Stable) static CfnListenerRule.RuleConditionProperty.Builder builder()
Copyright © 2021. All rights reserved.