1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Inspect the path component of the URI of the web request. This is the part of the web request that identifies a resource. For example, <code>/images/daily-ad.jpg</code>.</p>
/// <p>This is used in the <code>FieldToMatch</code> specification for some web request component types.</p>
/// <p>JSON specification: <code>"UriPath": {}</code></p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UriPath {}
impl UriPath {
    /// Creates a new builder-style object to manufacture [`UriPath`](crate::types::UriPath).
    pub fn builder() -> crate::types::builders::UriPathBuilder {
        crate::types::builders::UriPathBuilder::default()
    }
}

/// A builder for [`UriPath`](crate::types::UriPath).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct UriPathBuilder {}
impl UriPathBuilder {
    /// Consumes the builder and constructs a [`UriPath`](crate::types::UriPath).
    pub fn build(self) -> crate::types::UriPath {
        crate::types::UriPath {}
    }
}