Interface CustomRuleOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CustomRuleOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:35.229Z") @Stability(Experimental) public interface CustomRuleOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for a custom rewrite/redirect rule for an Amplify App.

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.amplify.alpha.*;
 CustomRuleOptions customRuleOptions = CustomRuleOptions.builder()
         .source("source")
         .target("target")
         // the properties below are optional
         .condition("condition")
         .status(RedirectStatus.REWRITE)
         .build();