Interface CfnListener.FixedResponseConfigProperty

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

@Stability(Stable) public static interface CfnListener.FixedResponseConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies information required when returning a custom HTTP response.

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.*;
 FixedResponseConfigProperty fixedResponseConfigProperty = FixedResponseConfigProperty.builder()
         .statusCode("statusCode")
         // the properties below are optional
         .contentType("contentType")
         .messageBody("messageBody")
         .build();
 

See Also: