Interface ListenerDefaultActionArgs

interface ListenerDefaultActionArgs {
    authenticateCognito?: any;
    authenticateOidc?: any;
    fixedResponse?: any;
    order?: any;
    redirect?: any;
    targetGroupArn?: any;
    type: Input<string>;
}

Properties

authenticateCognito?: any
authenticateOidc?: any
fixedResponse?: any

Information for creating an action that returns a custom HTTP response. Required if type is "fixed-response".

order?: any
redirect?: any

Information for creating a redirect action. Required if type is "redirect".

targetGroupArn?: any

The ARN of the Target Group to which to route traffic. Required if type is "forward".

type: Input<string>

The type of routing action. Valid values are "forward", "redirect", "fixed-response", "authenticate-cognito" and "authenticate-oidc".

Generated using TypeDoc