Interface CfnLinkRoutingRule.RuleConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLinkRoutingRule.RuleConditionProperty.Jsii$Proxy
Enclosing class:
CfnLinkRoutingRule

@Stability(Stable) public static interface CfnLinkRoutingRule.RuleConditionProperty extends software.amazon.jsii.JsiiSerializable
Conditions for a routing rule.

All non-null fields must match (AND logic). At least one field must be set. HostHeader and HostHeaderWildcard are mutually exclusive. PathPrefix and PathExact are mutually exclusive.

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.rtbfabric.*;
 RuleConditionProperty ruleConditionProperty = RuleConditionProperty.builder()
         .hostHeader("hostHeader")
         .hostHeaderWildcard("hostHeaderWildcard")
         .pathExact("pathExact")
         .pathPrefix("pathPrefix")
         .queryStringEquals(QueryStringKeyValuePairProperty.builder()
                 .key("key")
                 .value("value")
                 .build())
         .queryStringExists("queryStringExists")
         .build();
 

See Also: