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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct FindLobby {
_private: (),
}
impl FindLobby {
pub fn builder() -> crate::input::find_lobby_input::Builder {
crate::input::find_lobby_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for FindLobby {
type Output = std::result::Result<crate::output::FindLobbyOutput, crate::error::FindLobbyError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_find_lobby_error(response)
} else {
crate::operation_deser::parse_find_lobby_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct JoinLobby {
_private: (),
}
impl JoinLobby {
pub fn builder() -> crate::input::join_lobby_input::Builder {
crate::input::join_lobby_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for JoinLobby {
type Output = std::result::Result<crate::output::JoinLobbyOutput, crate::error::JoinLobbyError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_join_lobby_error(response)
} else {
crate::operation_deser::parse_join_lobby_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListLobbies {
_private: (),
}
impl ListLobbies {
pub fn builder() -> crate::input::list_lobbies_input::Builder {
crate::input::list_lobbies_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for ListLobbies {
type Output =
std::result::Result<crate::output::ListLobbiesOutput, crate::error::ListLobbiesError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_list_lobbies_error(response)
} else {
crate::operation_deser::parse_list_lobbies_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListRegions {
_private: (),
}
impl ListRegions {
pub fn builder() -> crate::input::list_regions_input::Builder {
crate::input::list_regions_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for ListRegions {
type Output =
std::result::Result<crate::output::ListRegionsOutput, crate::error::ListRegionsError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_list_regions_error(response)
} else {
crate::operation_deser::parse_list_regions_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct LobbyReady {
_private: (),
}
impl LobbyReady {
pub fn builder() -> crate::input::lobby_ready_input::Builder {
crate::input::lobby_ready_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for LobbyReady {
type Output =
std::result::Result<crate::output::LobbyReadyOutput, crate::error::LobbyReadyError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_lobby_ready_error(response)
} else {
crate::operation_deser::parse_lobby_ready_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct PlayerConnected {
_private: (),
}
impl PlayerConnected {
pub fn builder() -> crate::input::player_connected_input::Builder {
crate::input::player_connected_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for PlayerConnected {
type Output = std::result::Result<
crate::output::PlayerConnectedOutput,
crate::error::PlayerConnectedError,
>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_player_connected_error(response)
} else {
crate::operation_deser::parse_player_connected_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct PlayerDisconnected {
_private: (),
}
impl PlayerDisconnected {
pub fn builder() -> crate::input::player_disconnected_input::Builder {
crate::input::player_disconnected_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for PlayerDisconnected {
type Output = std::result::Result<
crate::output::PlayerDisconnectedOutput,
crate::error::PlayerDisconnectedError,
>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_player_disconnected_error(response)
} else {
crate::operation_deser::parse_player_disconnected_response(response)
}
}
}
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct SetLobbyClosed {
_private: (),
}
impl SetLobbyClosed {
pub fn builder() -> crate::input::set_lobby_closed_input::Builder {
crate::input::set_lobby_closed_input::Builder::default()
}
pub fn new() -> Self {
Self { _private: () }
}
}
impl aws_smithy_http::response::ParseStrictResponse for SetLobbyClosed {
type Output =
std::result::Result<crate::output::SetLobbyClosedOutput, crate::error::SetLobbyClosedError>;
fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
if !response.status().is_success() && response.status().as_u16() != 200 {
crate::operation_deser::parse_set_lobby_closed_error(response)
} else {
crate::operation_deser::parse_set_lobby_closed_response(response)
}
}
}