pub struct HttpRedirectAction {
pub host_redirect: Option<String>,
pub https_redirect: Option<bool>,
pub path_redirect: Option<String>,
pub prefix_redirect: Option<String>,
pub redirect_response_code: Option<String>,
pub strip_query: Option<bool>,
}
Expand description
Specifies settings for an HTTP redirect.
This type is not used in any activity, and only used as part of another schema.
Fields§
§host_redirect: Option<String>
The host that is used in the redirect response instead of the one that was supplied in the request. The value must be from 1 to 255 characters.
https_redirect: Option<bool>
If set to true, the URL scheme in the redirected request is set to HTTPS. If set to false, the URL scheme of the redirected request remains the same as that of the request. This must only be set for URL maps used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false.
path_redirect: Option<String>
The path that is used in the redirect response instead of the one that was supplied in the request. pathRedirect cannot be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
prefix_redirect: Option<String>
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request. prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
redirect_response_code: Option<String>
The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained.
strip_query: Option<bool>
If set to true, any accompanying query portion of the original URL is removed before redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false.
Trait Implementations§
Source§impl Clone for HttpRedirectAction
impl Clone for HttpRedirectAction
Source§fn clone(&self) -> HttpRedirectAction
fn clone(&self) -> HttpRedirectAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for HttpRedirectAction
impl Debug for HttpRedirectAction
Source§impl Default for HttpRedirectAction
impl Default for HttpRedirectAction
Source§fn default() -> HttpRedirectAction
fn default() -> HttpRedirectAction
Source§impl<'de> Deserialize<'de> for HttpRedirectAction
impl<'de> Deserialize<'de> for HttpRedirectAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for HttpRedirectAction
impl Serialize for HttpRedirectAction
impl Part for HttpRedirectAction
Auto Trait Implementations§
impl Freeze for HttpRedirectAction
impl RefUnwindSafe for HttpRedirectAction
impl Send for HttpRedirectAction
impl Sync for HttpRedirectAction
impl Unpin for HttpRedirectAction
impl UnwindSafe for HttpRedirectAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more