Show / Hide Table of Contents

Interface IRedirectOptions

Options for ListenerAction.redirect().

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IRedirectOptions
Syntax (vb)
Public Interface IRedirectOptions
Remarks

A URI consists of the following components: protocol://hostname:port/path?query. You must modify at least one of the following components to avoid a redirect loop: protocol, hostname, port, or path. Any components that you do not modify retain their original values.

You can reuse URI components using the following reserved keywords:

    For example, you can change the path to "/new/#{path}", the hostname to "example.#{host}", or the query to "#{query}&value=xyz".

    Synopsis

    Properties

    Host

    The hostname.

    Path

    The absolute path, starting with the leading "/".

    Permanent

    The HTTP redirect code.

    Port

    The port.

    Protocol

    The protocol.

    Query

    The query parameters, URL-encoded when necessary, but not percent-encoded.

    Properties

    Host

    The hostname.

    virtual string Host { get; }
    Property Value

    System.String

    Remarks

    This component is not percent-encoded. The hostname can contain #{host}.

    Default: - No change

    Path

    The absolute path, starting with the leading "/".

    virtual string Path { get; }
    Property Value

    System.String

    Remarks

    This component is not percent-encoded. The path can contain #{host}, #{path}, and #{port}.

    Default: - No change

    Permanent

    The HTTP redirect code.

    virtual Nullable<bool> Permanent { get; }
    Property Value

    System.Nullable<System.Boolean>

    Remarks

    The redirect is either permanent (HTTP 301) or temporary (HTTP 302).

    Default: false

    Port

    The port.

    virtual string Port { get; }
    Property Value

    System.String

    Remarks

    You can specify a value from 1 to 65535 or #{port}.

    Default: - No change

    Protocol

    The protocol.

    virtual string Protocol { get; }
    Property Value

    System.String

    Remarks

    You can specify HTTP, HTTPS, or #{protocol}. You can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You cannot redirect HTTPS to HTTP.

    Default: - No change

    Query

    The query parameters, URL-encoded when necessary, but not percent-encoded.

    virtual string Query { get; }
    Property Value

    System.String

    Remarks

    Do not include the leading "?", as it is automatically added. You can specify any of the reserved keywords.

    Default: - No change

    Back to top Generated by DocFX