Interface CfnRoutingRulePropsMixin.MatchHeadersProperty

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

@Stability(Stable) public static interface CfnRoutingRulePropsMixin.MatchHeadersProperty extends software.amazon.jsii.JsiiSerializable
Represents a MatchHeaders condition.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.*;
 MatchHeadersProperty matchHeadersProperty = MatchHeadersProperty.builder()
         .anyOf(List.of(MatchHeaderValueProperty.builder()
                 .header("header")
                 .valueGlob("valueGlob")
                 .build()))
         .build();
 

See Also: