Show / Hide Table of Contents

Interface IRedirectResponse

(deprecated) A redirect response.

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

Stability: Deprecated

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;

var redirectResponse = new RedirectResponse {
    StatusCode = "statusCode",

    // the properties below are optional
    Host = "host",
    Path = "path",
    Port = "port",
    Protocol = "protocol",
    Query = "query"
};

Synopsis

Properties

Host

(deprecated) The hostname.

Path

(deprecated) The absolute path, starting with the leading "/".

Port

(deprecated) The port.

Protocol

(deprecated) The protocol.

Query

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

StatusCode

(deprecated) The HTTP redirect code (HTTP_301 or HTTP_302).

Properties

Host

(deprecated) The hostname.

virtual string Host { get; }
Property Value

System.String

Remarks

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

Default: origin host of request

Stability: Deprecated

Path

(deprecated) 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: origin path of request

Stability: Deprecated

Port

(deprecated) The port.

virtual string Port { get; }
Property Value

System.String

Remarks

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

Default: origin port of request

Stability: Deprecated

Protocol

(deprecated) 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: origin protocol of request

Stability: Deprecated

Query

(deprecated) 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: origin query string of request

Stability: Deprecated

StatusCode

(deprecated) The HTTP redirect code (HTTP_301 or HTTP_302).

string StatusCode { get; }
Property Value

System.String

Remarks

Stability: Deprecated

Back to top Generated by DocFX