// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>Inspect all of the elements that WAF has parsed and extracted from the web request component that you've identified in your <code>FieldToMatch</code> specifications.</p>
/// <p>This is used in the <code>FieldToMatch</code> specification for some web request component types.</p>
/// <p>JSON specification: <code>"All": {}</code></p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct All {}
impl All {
/// Creates a new builder-style object to manufacture [`All`](crate::types::All).
pub fn builder() -> crate::types::builders::AllBuilder {
crate::types::builders::AllBuilder::default()
}
}
/// A builder for [`All`](crate::types::All).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct AllBuilder {}
impl AllBuilder {
/// Consumes the builder and constructs a [`All`](crate::types::All).
pub fn build(self) -> crate::types::All {
crate::types::All {}
}
}