Struct aws_sdk_wafv2::model::CustomHttpHeader
source · [−]#[non_exhaustive]pub struct CustomHttpHeader {
pub name: Option<String>,
pub value: Option<String>,
}
Expand description
A custom header for custom request and response handling. This is used in CustomResponse
and CustomRequestHandling
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the custom header.
For custom request header insertion, when WAF inserts the header into the request, it prefixes this name x-amzn-waf-
, to avoid confusion with the headers that are already in the request. For example, for the header name sample
, WAF inserts the header x-amzn-waf-sample
.
value: Option<String>
The value of the custom header.
Implementations
The name of the custom header.
For custom request header insertion, when WAF inserts the header into the request, it prefixes this name x-amzn-waf-
, to avoid confusion with the headers that are already in the request. For example, for the header name sample
, WAF inserts the header x-amzn-waf-sample
.
Creates a new builder-style object to manufacture CustomHttpHeader
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CustomHttpHeader
impl Send for CustomHttpHeader
impl Sync for CustomHttpHeader
impl Unpin for CustomHttpHeader
impl UnwindSafe for CustomHttpHeader
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more