Interface CfnGatewayRoutePropsMixin.HttpGatewayRouteHeaderProperty

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

@Stability(Stable) public static interface CfnGatewayRoutePropsMixin.HttpGatewayRouteHeaderProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the HTTP header in the gateway route.

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.appmesh.*;
 HttpGatewayRouteHeaderProperty httpGatewayRouteHeaderProperty = HttpGatewayRouteHeaderProperty.builder()
         .invert(false)
         .match(HttpGatewayRouteHeaderMatchProperty.builder()
                 .exact("exact")
                 .prefix("prefix")
                 .range(GatewayRouteRangeMatchProperty.builder()
                         .end(123)
                         .start(123)
                         .build())
                 .regex("regex")
                 .suffix("suffix")
                 .build())
         .name("name")
         .build();
 

See Also: