Interface AddRedirectResponseProps

All Superinterfaces:
AddRuleProps, software.amazon.jsii.JsiiSerializable, RedirectResponse
All Known Implementing Classes:
AddRedirectResponseProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.163Z") @Stability(Deprecated) @Deprecated public interface AddRedirectResponseProps extends software.amazon.jsii.JsiiSerializable, AddRuleProps, RedirectResponse
Deprecated.
Use ApplicationListener.addAction instead.
(deprecated) Properties for adding a redirect response to a listener.

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.*;
 ListenerCondition listenerCondition;
 AddRedirectResponseProps addRedirectResponseProps = AddRedirectResponseProps.builder()
         .statusCode("statusCode")
         // the properties below are optional
         .conditions(List.of(listenerCondition))
         .host("host")
         .hostHeader("hostHeader")
         .path("path")
         .pathPattern("pathPattern")
         .pathPatterns(List.of("pathPatterns"))
         .port("port")
         .priority(123)
         .protocol("protocol")
         .query("query")
         .build();