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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p>Bad request. The request is missing required parameters or has invalid parameters.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct InvalidRequestException {
    #[allow(missing_docs)] // documentation missing in model
    pub message: ::std::option::Option<::std::string::String>,
    #[allow(missing_docs)] // documentation missing in model
    pub code: ::std::option::Option<::std::string::String>,
    /// <p>The request omitted one or more required parameters.</p>
    pub required_parameters: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    /// <p>The request included parameters that cannot be provided together.</p>
    pub mutually_exclusive_parameters: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    pub(crate) meta: ::aws_smithy_types::error::ErrorMetadata,
}
impl InvalidRequestException {
    #[allow(missing_docs)] // documentation missing in model
    pub fn code(&self) -> ::std::option::Option<&str> {
        self.code.as_deref()
    }
    /// <p>The request omitted one or more required parameters.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.required_parameters.is_none()`.
    pub fn required_parameters(&self) -> &[::std::string::String] {
        self.required_parameters.as_deref().unwrap_or_default()
    }
    /// <p>The request included parameters that cannot be provided together.</p>
    ///
    /// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.mutually_exclusive_parameters.is_none()`.
    pub fn mutually_exclusive_parameters(&self) -> &[::std::string::String] {
        self.mutually_exclusive_parameters.as_deref().unwrap_or_default()
    }
}
impl InvalidRequestException {
    /// Returns the error message.
    pub fn message(&self) -> ::std::option::Option<&str> {
        self.message.as_deref()
    }
}
impl ::std::fmt::Display for InvalidRequestException {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        ::std::write!(f, "InvalidRequestException")?;
        if let ::std::option::Option::Some(inner_1) = &self.message {
            {
                ::std::write!(f, ": {}", inner_1)?;
            }
        }
        Ok(())
    }
}
impl ::std::error::Error for InvalidRequestException {}
impl ::aws_types::request_id::RequestId for crate::types::error::InvalidRequestException {
    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 InvalidRequestException {
    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
        &self.meta
    }
}
impl InvalidRequestException {
    /// Creates a new builder-style object to manufacture [`InvalidRequestException`](crate::types::error::InvalidRequestException).
    pub fn builder() -> crate::types::error::builders::InvalidRequestExceptionBuilder {
        crate::types::error::builders::InvalidRequestExceptionBuilder::default()
    }
}

/// A builder for [`InvalidRequestException`](crate::types::error::InvalidRequestException).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct InvalidRequestExceptionBuilder {
    pub(crate) message: ::std::option::Option<::std::string::String>,
    pub(crate) code: ::std::option::Option<::std::string::String>,
    pub(crate) required_parameters: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    pub(crate) mutually_exclusive_parameters: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
    meta: std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
}
impl InvalidRequestExceptionBuilder {
    #[allow(missing_docs)] // documentation missing in model
    pub fn message(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.message = ::std::option::Option::Some(input.into());
        self
    }
    #[allow(missing_docs)] // documentation missing in model
    pub fn set_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.message = input;
        self
    }
    #[allow(missing_docs)] // documentation missing in model
    pub fn get_message(&self) -> &::std::option::Option<::std::string::String> {
        &self.message
    }
    #[allow(missing_docs)] // documentation missing in model
    pub fn code(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.code = ::std::option::Option::Some(input.into());
        self
    }
    #[allow(missing_docs)] // documentation missing in model
    pub fn set_code(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.code = input;
        self
    }
    #[allow(missing_docs)] // documentation missing in model
    pub fn get_code(&self) -> &::std::option::Option<::std::string::String> {
        &self.code
    }
    /// Appends an item to `required_parameters`.
    ///
    /// To override the contents of this collection use [`set_required_parameters`](Self::set_required_parameters).
    ///
    /// <p>The request omitted one or more required parameters.</p>
    pub fn required_parameters(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut v = self.required_parameters.unwrap_or_default();
        v.push(input.into());
        self.required_parameters = ::std::option::Option::Some(v);
        self
    }
    /// <p>The request omitted one or more required parameters.</p>
    pub fn set_required_parameters(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
        self.required_parameters = input;
        self
    }
    /// <p>The request omitted one or more required parameters.</p>
    pub fn get_required_parameters(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
        &self.required_parameters
    }
    /// Appends an item to `mutually_exclusive_parameters`.
    ///
    /// To override the contents of this collection use [`set_mutually_exclusive_parameters`](Self::set_mutually_exclusive_parameters).
    ///
    /// <p>The request included parameters that cannot be provided together.</p>
    pub fn mutually_exclusive_parameters(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut v = self.mutually_exclusive_parameters.unwrap_or_default();
        v.push(input.into());
        self.mutually_exclusive_parameters = ::std::option::Option::Some(v);
        self
    }
    /// <p>The request included parameters that cannot be provided together.</p>
    pub fn set_mutually_exclusive_parameters(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
        self.mutually_exclusive_parameters = input;
        self
    }
    /// <p>The request included parameters that cannot be provided together.</p>
    pub fn get_mutually_exclusive_parameters(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
        &self.mutually_exclusive_parameters
    }
    /// 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 [`InvalidRequestException`](crate::types::error::InvalidRequestException).
    pub fn build(self) -> crate::types::error::InvalidRequestException {
        crate::types::error::InvalidRequestException {
            message: self.message,
            code: self.code,
            required_parameters: self.required_parameters,
            mutually_exclusive_parameters: self.mutually_exclusive_parameters,
            meta: self.meta.unwrap_or_default(),
        }
    }
}