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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// Placeholder documentation for UnprocessableEntityException
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UnprocessableEntityException {
    /// The error message.
    pub message: ::std::option::Option<::std::string::String>,
    /// A collection of validation error responses.
    pub validation_errors: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>,
    pub(crate) meta: ::aws_smithy_types::error::ErrorMetadata,
}
impl UnprocessableEntityException {
    /// A collection of validation error responses.
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.validation_errors.is_none()`.
    pub fn validation_errors(&self) -> &[crate::types::ValidationError] {
        self.validation_errors.as_deref().unwrap_or_default()
    }
}
impl UnprocessableEntityException {
    /// Returns the error message.
    pub fn message(&self) -> ::std::option::Option<&str> {
        self.message.as_deref()
    }
}
impl ::std::fmt::Display for UnprocessableEntityException {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        ::std::write!(f, "UnprocessableEntityException")?;
        if let ::std::option::Option::Some(inner_1) = &self.message {
            {
                ::std::write!(f, ": {}", inner_1)?;
            }
        }
        Ok(())
    }
}
impl ::std::error::Error for UnprocessableEntityException {}
impl ::aws_types::request_id::RequestId for crate::types::error::UnprocessableEntityException {
    fn request_id(&self) -> Option<&str> {
        use ::aws_smithy_types::error::metadata::ProvideErrorMetadata;
        self.meta().request_id()
    }
}
impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for UnprocessableEntityException {
    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
        &self.meta
    }
}
impl UnprocessableEntityException {
    /// Creates a new builder-style object to manufacture [`UnprocessableEntityException`](crate::types::error::UnprocessableEntityException).
    pub fn builder() -> crate::types::error::builders::UnprocessableEntityExceptionBuilder {
        crate::types::error::builders::UnprocessableEntityExceptionBuilder::default()
    }
}

/// A builder for [`UnprocessableEntityException`](crate::types::error::UnprocessableEntityException).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct UnprocessableEntityExceptionBuilder {
    pub(crate) message: ::std::option::Option<::std::string::String>,
    pub(crate) validation_errors: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>,
    meta: std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
}
impl UnprocessableEntityExceptionBuilder {
    /// The error message.
    pub fn message(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.message = ::std::option::Option::Some(input.into());
        self
    }
    /// The error message.
    pub fn set_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.message = input;
        self
    }
    /// The error message.
    pub fn get_message(&self) -> &::std::option::Option<::std::string::String> {
        &self.message
    }
    /// Appends an item to `validation_errors`.
    ///
    /// To override the contents of this collection use [`set_validation_errors`](Self::set_validation_errors).
    ///
    /// A collection of validation error responses.
    pub fn validation_errors(mut self, input: crate::types::ValidationError) -> Self {
        let mut v = self.validation_errors.unwrap_or_default();
        v.push(input);
        self.validation_errors = ::std::option::Option::Some(v);
        self
    }
    /// A collection of validation error responses.
    pub fn set_validation_errors(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>) -> Self {
        self.validation_errors = input;
        self
    }
    /// A collection of validation error responses.
    pub fn get_validation_errors(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ValidationError>> {
        &self.validation_errors
    }
    /// Sets error metadata
    pub fn meta(mut self, meta: ::aws_smithy_types::error::ErrorMetadata) -> Self {
        self.meta = Some(meta);
        self
    }

    /// Sets error metadata
    pub fn set_meta(&mut self, meta: std::option::Option<::aws_smithy_types::error::ErrorMetadata>) -> &mut Self {
        self.meta = meta;
        self
    }
    /// Consumes the builder and constructs a [`UnprocessableEntityException`](crate::types::error::UnprocessableEntityException).
    pub fn build(self) -> crate::types::error::UnprocessableEntityException {
        crate::types::error::UnprocessableEntityException {
            message: self.message,
            validation_errors: self.validation_errors,
            meta: self.meta.unwrap_or_default(),
        }
    }
}