pub struct Builder { /* private fields */ }
Expand description
A builder for AdditionalAttribute
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn key(self, input: impl Into<String>) -> Self
pub fn key(self, input: impl Into<String>) -> Self
The name of the attribute.
The following attribute is supported.
-
elb.http.desyncmitigationmode
- Determines how the load balancer handles requests that might pose a security risk to your application. The possible values aremonitor
,defensive
, andstrictest
. The default isdefensive
.
sourcepub fn set_key(self, input: Option<String>) -> Self
pub fn set_key(self, input: Option<String>) -> Self
The name of the attribute.
The following attribute is supported.
-
elb.http.desyncmitigationmode
- Determines how the load balancer handles requests that might pose a security risk to your application. The possible values aremonitor
,defensive
, andstrictest
. The default isdefensive
.
sourcepub fn build(self) -> AdditionalAttribute
pub fn build(self) -> AdditionalAttribute
Consumes the builder and constructs a AdditionalAttribute
.