// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>Inspect the HTTP method of the web request. The method indicates the type of operation that the request is asking the origin to perform.</p>
/// <p>This is used in the <code>FieldToMatch</code> specification for some web request component types.</p>
/// <p>JSON specification: <code>"Method": {}</code></p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct Method {}
impl Method {
/// Creates a new builder-style object to manufacture [`Method`](crate::types::Method).
pub fn builder() -> crate::types::builders::MethodBuilder {
crate::types::builders::MethodBuilder::default()
}
}
/// A builder for [`Method`](crate::types::Method).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct MethodBuilder {}
impl MethodBuilder {
/// Consumes the builder and constructs a [`Method`](crate::types::Method).
pub fn build(self) -> crate::types::Method {
crate::types::Method {}
}
}