1 1 | // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
|
2 + | /* CodegenDelegator.kt:255 */
|
2 3 | pub use crate::operation::simple_struct_operation::_simple_struct_operation_output::SimpleStructOperationOutputBuilder;
|
3 4 |
|
5 + | /* CodegenDelegator.kt:255 */
|
4 6 | pub use crate::operation::simple_struct_operation::_simple_struct_operation_input::SimpleStructOperationInputBuilder;
|
5 7 |
|
8 + | /* FluentBuilderGenerator.kt:408 */
|
6 9 | impl crate::operation::simple_struct_operation::builders::SimpleStructOperationInputBuilder {
|
7 10 | /// Sends a request with this input using the given client.
|
8 11 | pub async fn send_with(
|
9 12 | self,
|
10 13 | client: &crate::Client,
|
11 14 | ) -> ::std::result::Result<
|
12 15 | crate::operation::simple_struct_operation::SimpleStructOperationOutput,
|
13 16 | ::aws_smithy_runtime_api::client::result::SdkError<
|
14 17 | crate::operation::simple_struct_operation::SimpleStructOperationError,
|
15 18 | ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
16 19 | >,
|
17 20 | > {
|
18 21 | let mut fluent_builder = client.simple_struct_operation();
|
19 22 | fluent_builder.inner = self;
|
20 23 | fluent_builder.send().await
|
21 24 | }
|
22 25 | }
|
23 - | /// Fluent builder constructing a request to `SimpleStructOperation`.
|
26 + | /// /* FluentBuilderGenerator.kt:129 */Fluent builder constructing a request to `SimpleStructOperation`.
|
24 27 | ///
|
28 + | /* RustType.kt:516 */
|
25 29 | #[derive(::std::clone::Clone, ::std::fmt::Debug)]
|
30 + | /* FluentBuilderGenerator.kt:270 */
|
26 31 | pub struct SimpleStructOperationFluentBuilder {
|
27 32 | handle: ::std::sync::Arc<crate::client::Handle>,
|
28 33 | inner: crate::operation::simple_struct_operation::builders::SimpleStructOperationInputBuilder,
|
29 34 | config_override: ::std::option::Option<crate::config::Builder>,
|
30 35 | }
|
36 + | /* FluentBuilderGenerator.kt:381 */
|
31 37 | impl
|
32 38 | crate::client::customize::internal::CustomizableSend<
|
33 39 | crate::operation::simple_struct_operation::SimpleStructOperationOutput,
|
34 40 | crate::operation::simple_struct_operation::SimpleStructOperationError,
|
35 41 | > for SimpleStructOperationFluentBuilder
|
36 42 | {
|
37 43 | fn send(
|
38 44 | self,
|
39 45 | config_override: crate::config::Builder,
|
40 46 | ) -> crate::client::customize::internal::BoxFuture<
|
41 47 | crate::client::customize::internal::SendResult<
|
42 48 | crate::operation::simple_struct_operation::SimpleStructOperationOutput,
|
43 49 | crate::operation::simple_struct_operation::SimpleStructOperationError,
|
44 50 | >,
|
45 51 | > {
|
46 52 | ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
|
47 53 | }
|
48 54 | }
|
55 + | /* FluentBuilderGenerator.kt:282 */
|
49 56 | impl SimpleStructOperationFluentBuilder {
|
57 + | /* FluentBuilderGenerator.kt:288 */
|
50 58 | /// Creates a new `SimpleStructOperationFluentBuilder`.
|
51 59 | pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
|
52 60 | Self {
|
53 61 | handle,
|
54 62 | inner: ::std::default::Default::default(),
|
55 63 | config_override: ::std::option::Option::None,
|
56 64 | }
|
57 65 | }
|
66 + | /* FluentBuilderGenerator.kt:301 */
|
58 67 | /// Access the SimpleStructOperation as a reference.
|
59 68 | pub fn as_input(&self) -> &crate::operation::simple_struct_operation::builders::SimpleStructOperationInputBuilder {
|
60 69 | &self.inner
|
61 70 | }
|
71 + | /* FluentBuilderGenerator.kt:145 */
|
62 72 | /// Sends the request and returns the response.
|
63 73 | ///
|
64 74 | /// If an error occurs, an `SdkError` will be returned with additional details that
|
65 75 | /// can be matched against.
|
66 76 | ///
|
67 77 | /// By default, any retryable failures will be retried twice. Retry behavior
|
68 78 | /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
|
69 79 | /// set when configuring the client.
|
70 80 | pub async fn send(
|
71 81 | self,
|
72 82 | ) -> ::std::result::Result<
|
73 83 | crate::operation::simple_struct_operation::SimpleStructOperationOutput,
|
74 84 | ::aws_smithy_runtime_api::client::result::SdkError<
|
75 85 | crate::operation::simple_struct_operation::SimpleStructOperationError,
|
76 86 | ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
77 87 | >,
|
78 88 | > {
|
79 89 | let input = self
|
80 90 | .inner
|
81 91 | .build()
|
82 92 | .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
|
83 93 | let runtime_plugins = crate::operation::simple_struct_operation::SimpleStructOperation::operation_runtime_plugins(
|
84 94 | self.handle.runtime_plugins.clone(),
|
85 95 | &self.handle.conf,
|
86 96 | self.config_override,
|
87 97 | );
|
88 98 | crate::operation::simple_struct_operation::SimpleStructOperation::orchestrate(&runtime_plugins, input).await
|
89 99 | }
|
90 100 |
|
91 101 | /// Consumes this builder, creating a customizable operation that can be modified before being sent.
|
92 102 | pub fn customize(
|
93 103 | self,
|
94 104 | ) -> crate::client::customize::CustomizableOperation<
|
95 105 | crate::operation::simple_struct_operation::SimpleStructOperationOutput,
|
96 106 | crate::operation::simple_struct_operation::SimpleStructOperationError,
|
97 107 | Self,
|
98 108 | > {
|
99 109 | crate::client::customize::CustomizableOperation::new(self)
|
100 110 | }
|
111 + | /* FluentBuilderGenerator.kt:315 */
|
101 112 | pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
|
102 113 | self.set_config_override(::std::option::Option::Some(config_override.into()));
|
103 114 | self
|
104 115 | }
|
105 116 |
|
106 117 | pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
|
107 118 | self.config_override = config_override;
|
108 119 | self
|
109 120 | }
|
121 + | /* FluentBuilderGenerator.kt:498 */
|
110 122 | #[allow(missing_docs)] // documentation missing in model
|
123 + | /* FluentBuilderGenerator.kt:500 */
|
111 124 | pub fn blob(mut self, input: ::aws_smithy_types::Blob) -> Self {
|
112 125 | self.inner = self.inner.blob(input);
|
113 126 | self
|
114 127 | }
|
128 + | /* FluentBuilderGenerator.kt:498 */
|
115 129 | #[allow(missing_docs)] // documentation missing in model
|
130 + | /* FluentBuilderGenerator.kt:500 */
|
116 131 | pub fn set_blob(mut self, input: ::std::option::Option<::aws_smithy_types::Blob>) -> Self {
|
117 132 | self.inner = self.inner.set_blob(input);
|
118 133 | self
|
119 134 | }
|
135 + | /* FluentBuilderGenerator.kt:518 */
|
120 136 | #[allow(missing_docs)] // documentation missing in model
|
137 + | /* FluentBuilderGenerator.kt:520 */
|
121 138 | pub fn get_blob(&self) -> &::std::option::Option<::aws_smithy_types::Blob> {
|
122 139 | self.inner.get_blob()
|
123 140 | }
|
141 + | /* FluentBuilderGenerator.kt:498 */
|
124 142 | #[allow(missing_docs)] // documentation missing in model
|
143 + | /* FluentBuilderGenerator.kt:500 */
|
125 144 | pub fn boolean(mut self, input: bool) -> Self {
|
126 145 | self.inner = self.inner.boolean(input);
|
127 146 | self
|
128 147 | }
|
148 + | /* FluentBuilderGenerator.kt:498 */
|
129 149 | #[allow(missing_docs)] // documentation missing in model
|
150 + | /* FluentBuilderGenerator.kt:500 */
|
130 151 | pub fn set_boolean(mut self, input: ::std::option::Option<bool>) -> Self {
|
131 152 | self.inner = self.inner.set_boolean(input);
|
132 153 | self
|
133 154 | }
|
155 + | /* FluentBuilderGenerator.kt:518 */
|
134 156 | #[allow(missing_docs)] // documentation missing in model
|
157 + | /* FluentBuilderGenerator.kt:520 */
|
135 158 | pub fn get_boolean(&self) -> &::std::option::Option<bool> {
|
136 159 | self.inner.get_boolean()
|
137 160 | }
|
161 + | /* FluentBuilderGenerator.kt:498 */
|
138 162 | #[allow(missing_docs)] // documentation missing in model
|
163 + | /* FluentBuilderGenerator.kt:500 */
|
139 164 | pub fn string(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
|
140 165 | self.inner = self.inner.string(input.into());
|
141 166 | self
|
142 167 | }
|
168 + | /* FluentBuilderGenerator.kt:498 */
|
143 169 | #[allow(missing_docs)] // documentation missing in model
|
170 + | /* FluentBuilderGenerator.kt:500 */
|
144 171 | pub fn set_string(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
145 172 | self.inner = self.inner.set_string(input);
|
146 173 | self
|
147 174 | }
|
175 + | /* FluentBuilderGenerator.kt:518 */
|
148 176 | #[allow(missing_docs)] // documentation missing in model
|
177 + | /* FluentBuilderGenerator.kt:520 */
|
149 178 | pub fn get_string(&self) -> &::std::option::Option<::std::string::String> {
|
150 179 | self.inner.get_string()
|
151 180 | }
|
181 + | /* FluentBuilderGenerator.kt:498 */
|
152 182 | #[allow(missing_docs)] // documentation missing in model
|
183 + | /* FluentBuilderGenerator.kt:500 */
|
153 184 | pub fn byte(mut self, input: i8) -> Self {
|
154 185 | self.inner = self.inner.byte(input);
|
155 186 | self
|
156 187 | }
|
188 + | /* FluentBuilderGenerator.kt:498 */
|
157 189 | #[allow(missing_docs)] // documentation missing in model
|
190 + | /* FluentBuilderGenerator.kt:500 */
|
158 191 | pub fn set_byte(mut self, input: ::std::option::Option<i8>) -> Self {
|
159 192 | self.inner = self.inner.set_byte(input);
|
160 193 | self
|
161 194 | }
|
195 + | /* FluentBuilderGenerator.kt:518 */
|
162 196 | #[allow(missing_docs)] // documentation missing in model
|
197 + | /* FluentBuilderGenerator.kt:520 */
|
163 198 | pub fn get_byte(&self) -> &::std::option::Option<i8> {
|
164 199 | self.inner.get_byte()
|
165 200 | }
|
201 + | /* FluentBuilderGenerator.kt:498 */
|
166 202 | #[allow(missing_docs)] // documentation missing in model
|
203 + | /* FluentBuilderGenerator.kt:500 */
|
167 204 | pub fn short(mut self, input: i16) -> Self {
|
168 205 | self.inner = self.inner.short(input);
|
169 206 | self
|
170 207 | }
|
208 + | /* FluentBuilderGenerator.kt:498 */
|
171 209 | #[allow(missing_docs)] // documentation missing in model
|
210 + | /* FluentBuilderGenerator.kt:500 */
|
172 211 | pub fn set_short(mut self, input: ::std::option::Option<i16>) -> Self {
|
173 212 | self.inner = self.inner.set_short(input);
|
174 213 | self
|
175 214 | }
|
215 + | /* FluentBuilderGenerator.kt:518 */
|
176 216 | #[allow(missing_docs)] // documentation missing in model
|
217 + | /* FluentBuilderGenerator.kt:520 */
|
177 218 | pub fn get_short(&self) -> &::std::option::Option<i16> {
|
178 219 | self.inner.get_short()
|
179 220 | }
|
221 + | /* FluentBuilderGenerator.kt:498 */
|
180 222 | #[allow(missing_docs)] // documentation missing in model
|
223 + | /* FluentBuilderGenerator.kt:500 */
|
181 224 | pub fn integer(mut self, input: i32) -> Self {
|
182 225 | self.inner = self.inner.integer(input);
|
183 226 | self
|
184 227 | }
|
228 + | /* FluentBuilderGenerator.kt:498 */
|
185 229 | #[allow(missing_docs)] // documentation missing in model
|
230 + | /* FluentBuilderGenerator.kt:500 */
|
186 231 | pub fn set_integer(mut self, input: ::std::option::Option<i32>) -> Self {
|
187 232 | self.inner = self.inner.set_integer(input);
|
188 233 | self
|
189 234 | }
|
235 + | /* FluentBuilderGenerator.kt:518 */
|
190 236 | #[allow(missing_docs)] // documentation missing in model
|
237 + | /* FluentBuilderGenerator.kt:520 */
|
191 238 | pub fn get_integer(&self) -> &::std::option::Option<i32> {
|
192 239 | self.inner.get_integer()
|
193 240 | }
|
241 + | /* FluentBuilderGenerator.kt:498 */
|
194 242 | #[allow(missing_docs)] // documentation missing in model
|
243 + | /* FluentBuilderGenerator.kt:500 */
|
195 244 | pub fn long(mut self, input: i64) -> Self {
|
196 245 | self.inner = self.inner.long(input);
|
197 246 | self
|
198 247 | }
|
248 + | /* FluentBuilderGenerator.kt:498 */
|
199 249 | #[allow(missing_docs)] // documentation missing in model
|
250 + | /* FluentBuilderGenerator.kt:500 */
|
200 251 | pub fn set_long(mut self, input: ::std::option::Option<i64>) -> Self {
|
201 252 | self.inner = self.inner.set_long(input);
|
202 253 | self
|
203 254 | }
|
255 + | /* FluentBuilderGenerator.kt:518 */
|
204 256 | #[allow(missing_docs)] // documentation missing in model
|
257 + | /* FluentBuilderGenerator.kt:520 */
|
205 258 | pub fn get_long(&self) -> &::std::option::Option<i64> {
|
206 259 | self.inner.get_long()
|
207 260 | }
|
261 + | /* FluentBuilderGenerator.kt:498 */
|
208 262 | #[allow(missing_docs)] // documentation missing in model
|
263 + | /* FluentBuilderGenerator.kt:500 */
|
209 264 | pub fn float(mut self, input: f32) -> Self {
|
210 265 | self.inner = self.inner.float(input);
|
211 266 | self
|
212 267 | }
|
268 + | /* FluentBuilderGenerator.kt:498 */
|
213 269 | #[allow(missing_docs)] // documentation missing in model
|
270 + | /* FluentBuilderGenerator.kt:500 */
|
214 271 | pub fn set_float(mut self, input: ::std::option::Option<f32>) -> Self {
|
215 272 | self.inner = self.inner.set_float(input);
|
216 273 | self
|
217 274 | }
|
275 + | /* FluentBuilderGenerator.kt:518 */
|
218 276 | #[allow(missing_docs)] // documentation missing in model
|
277 + | /* FluentBuilderGenerator.kt:520 */
|
219 278 | pub fn get_float(&self) -> &::std::option::Option<f32> {
|
220 279 | self.inner.get_float()
|
221 280 | }
|
281 + | /* FluentBuilderGenerator.kt:498 */
|
222 282 | #[allow(missing_docs)] // documentation missing in model
|
283 + | /* FluentBuilderGenerator.kt:500 */
|
223 284 | pub fn double(mut self, input: f64) -> Self {
|
224 285 | self.inner = self.inner.double(input);
|
225 286 | self
|
226 287 | }
|
288 + | /* FluentBuilderGenerator.kt:498 */
|
227 289 | #[allow(missing_docs)] // documentation missing in model
|
290 + | /* FluentBuilderGenerator.kt:500 */
|
228 291 | pub fn set_double(mut self, input: ::std::option::Option<f64>) -> Self {
|
229 292 | self.inner = self.inner.set_double(input);
|
230 293 | self
|
231 294 | }
|
295 + | /* FluentBuilderGenerator.kt:518 */
|
232 296 | #[allow(missing_docs)] // documentation missing in model
|
297 + | /* FluentBuilderGenerator.kt:520 */
|
233 298 | pub fn get_double(&self) -> &::std::option::Option<f64> {
|
234 299 | self.inner.get_double()
|
235 300 | }
|
301 + | /* FluentBuilderGenerator.kt:498 */
|
236 302 | #[allow(missing_docs)] // documentation missing in model
|
303 + | /* FluentBuilderGenerator.kt:500 */
|
237 304 | pub fn timestamp(mut self, input: ::aws_smithy_types::DateTime) -> Self {
|
238 305 | self.inner = self.inner.timestamp(input);
|
239 306 | self
|
240 307 | }
|
308 + | /* FluentBuilderGenerator.kt:498 */
|
241 309 | #[allow(missing_docs)] // documentation missing in model
|
310 + | /* FluentBuilderGenerator.kt:500 */
|
242 311 | pub fn set_timestamp(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
|
243 312 | self.inner = self.inner.set_timestamp(input);
|
244 313 | self
|
245 314 | }
|
315 + | /* FluentBuilderGenerator.kt:518 */
|
246 316 | #[allow(missing_docs)] // documentation missing in model
|
317 + | /* FluentBuilderGenerator.kt:520 */
|
247 318 | pub fn get_timestamp(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
|
248 319 | self.inner.get_timestamp()
|
249 320 | }
|
321 + | /* FluentBuilderGenerator.kt:498 */
|
250 322 | #[allow(missing_docs)] // documentation missing in model
|
323 + | /* FluentBuilderGenerator.kt:500 */
|
251 324 | pub fn r#enum(mut self, input: crate::types::Suit) -> Self {
|
252 325 | self.inner = self.inner.r#enum(input);
|
253 326 | self
|
254 327 | }
|
328 + | /* FluentBuilderGenerator.kt:498 */
|
255 329 | #[allow(missing_docs)] // documentation missing in model
|
330 + | /* FluentBuilderGenerator.kt:500 */
|
256 331 | pub fn set_enum(mut self, input: ::std::option::Option<crate::types::Suit>) -> Self {
|
257 332 | self.inner = self.inner.set_enum(input);
|
258 333 | self
|
259 334 | }
|
335 + | /* FluentBuilderGenerator.kt:518 */
|
260 336 | #[allow(missing_docs)] // documentation missing in model
|
337 + | /* FluentBuilderGenerator.kt:520 */
|
261 338 | pub fn get_enum(&self) -> &::std::option::Option<crate::types::Suit> {
|
262 339 | self.inner.get_enum()
|
263 340 | }
|
341 + | /* FluentBuilderGenerator.kt:498 */
|
264 342 | #[allow(missing_docs)] // documentation missing in model
|
343 + | /* FluentBuilderGenerator.kt:500 */
|
265 344 | pub fn required_blob(mut self, input: ::aws_smithy_types::Blob) -> Self {
|
266 345 | self.inner = self.inner.required_blob(input);
|
267 346 | self
|
268 347 | }
|
348 + | /* FluentBuilderGenerator.kt:498 */
|
269 349 | #[allow(missing_docs)] // documentation missing in model
|
350 + | /* FluentBuilderGenerator.kt:500 */
|
270 351 | pub fn set_required_blob(mut self, input: ::std::option::Option<::aws_smithy_types::Blob>) -> Self {
|
271 352 | self.inner = self.inner.set_required_blob(input);
|
272 353 | self
|
273 354 | }
|
355 + | /* FluentBuilderGenerator.kt:518 */
|
274 356 | #[allow(missing_docs)] // documentation missing in model
|
357 + | /* FluentBuilderGenerator.kt:520 */
|
275 358 | pub fn get_required_blob(&self) -> &::std::option::Option<::aws_smithy_types::Blob> {
|
276 359 | self.inner.get_required_blob()
|
277 360 | }
|
361 + | /* FluentBuilderGenerator.kt:498 */
|
278 362 | #[allow(missing_docs)] // documentation missing in model
|
363 + | /* FluentBuilderGenerator.kt:500 */
|
279 364 | pub fn required_boolean(mut self, input: bool) -> Self {
|
280 365 | self.inner = self.inner.required_boolean(input);
|
281 366 | self
|
282 367 | }
|
368 + | /* FluentBuilderGenerator.kt:498 */
|
283 369 | #[allow(missing_docs)] // documentation missing in model
|
370 + | /* FluentBuilderGenerator.kt:500 */
|
284 371 | pub fn set_required_boolean(mut self, input: ::std::option::Option<bool>) -> Self {
|
285 372 | self.inner = self.inner.set_required_boolean(input);
|
286 373 | self
|
287 374 | }
|
375 + | /* FluentBuilderGenerator.kt:518 */
|
288 376 | #[allow(missing_docs)] // documentation missing in model
|
377 + | /* FluentBuilderGenerator.kt:520 */
|
289 378 | pub fn get_required_boolean(&self) -> &::std::option::Option<bool> {
|
290 379 | self.inner.get_required_boolean()
|
291 380 | }
|
381 + | /* FluentBuilderGenerator.kt:498 */
|
292 382 | #[allow(missing_docs)] // documentation missing in model
|
383 + | /* FluentBuilderGenerator.kt:500 */
|
293 384 | pub fn required_string(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
|
294 385 | self.inner = self.inner.required_string(input.into());
|
295 386 | self
|
296 387 | }
|
388 + | /* FluentBuilderGenerator.kt:498 */
|
297 389 | #[allow(missing_docs)] // documentation missing in model
|
390 + | /* FluentBuilderGenerator.kt:500 */
|
298 391 | pub fn set_required_string(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
299 392 | self.inner = self.inner.set_required_string(input);
|
300 393 | self
|
301 394 | }
|
395 + | /* FluentBuilderGenerator.kt:518 */
|
302 396 | #[allow(missing_docs)] // documentation missing in model
|
397 + | /* FluentBuilderGenerator.kt:520 */
|
303 398 | pub fn get_required_string(&self) -> &::std::option::Option<::std::string::String> {
|
304 399 | self.inner.get_required_string()
|
305 400 | }
|
401 + | /* FluentBuilderGenerator.kt:498 */
|
306 402 | #[allow(missing_docs)] // documentation missing in model
|
403 + | /* FluentBuilderGenerator.kt:500 */
|
307 404 | pub fn required_byte(mut self, input: i8) -> Self {
|
308 405 | self.inner = self.inner.required_byte(input);
|
309 406 | self
|
310 407 | }
|
408 + | /* FluentBuilderGenerator.kt:498 */
|
311 409 | #[allow(missing_docs)] // documentation missing in model
|
410 + | /* FluentBuilderGenerator.kt:500 */
|
312 411 | pub fn set_required_byte(mut self, input: ::std::option::Option<i8>) -> Self {
|
313 412 | self.inner = self.inner.set_required_byte(input);
|
314 413 | self
|
315 414 | }
|
415 + | /* FluentBuilderGenerator.kt:518 */
|
316 416 | #[allow(missing_docs)] // documentation missing in model
|
417 + | /* FluentBuilderGenerator.kt:520 */
|
317 418 | pub fn get_required_byte(&self) -> &::std::option::Option<i8> {
|
318 419 | self.inner.get_required_byte()
|
319 420 | }
|
421 + | /* FluentBuilderGenerator.kt:498 */
|
320 422 | #[allow(missing_docs)] // documentation missing in model
|
423 + | /* FluentBuilderGenerator.kt:500 */
|
321 424 | pub fn required_short(mut self, input: i16) -> Self {
|
322 425 | self.inner = self.inner.required_short(input);
|
323 426 | self
|
324 427 | }
|
428 + | /* FluentBuilderGenerator.kt:498 */
|
325 429 | #[allow(missing_docs)] // documentation missing in model
|
430 + | /* FluentBuilderGenerator.kt:500 */
|
326 431 | pub fn set_required_short(mut self, input: ::std::option::Option<i16>) -> Self {
|
327 432 | self.inner = self.inner.set_required_short(input);
|
328 433 | self
|
329 434 | }
|
435 + | /* FluentBuilderGenerator.kt:518 */
|
330 436 | #[allow(missing_docs)] // documentation missing in model
|
437 + | /* FluentBuilderGenerator.kt:520 */
|
331 438 | pub fn get_required_short(&self) -> &::std::option::Option<i16> {
|
332 439 | self.inner.get_required_short()
|
333 440 | }
|
441 + | /* FluentBuilderGenerator.kt:498 */
|
334 442 | #[allow(missing_docs)] // documentation missing in model
|
443 + | /* FluentBuilderGenerator.kt:500 */
|
335 444 | pub fn required_integer(mut self, input: i32) -> Self {
|
336 445 | self.inner = self.inner.required_integer(input);
|
337 446 | self
|
338 447 | }
|
448 + | /* FluentBuilderGenerator.kt:498 */
|
339 449 | #[allow(missing_docs)] // documentation missing in model
|
450 + | /* FluentBuilderGenerator.kt:500 */
|
340 451 | pub fn set_required_integer(mut self, input: ::std::option::Option<i32>) -> Self {
|
341 452 | self.inner = self.inner.set_required_integer(input);
|
342 453 | self
|
343 454 | }
|
455 + | /* FluentBuilderGenerator.kt:518 */
|
344 456 | #[allow(missing_docs)] // documentation missing in model
|
457 + | /* FluentBuilderGenerator.kt:520 */
|
345 458 | pub fn get_required_integer(&self) -> &::std::option::Option<i32> {
|
346 459 | self.inner.get_required_integer()
|
347 460 | }
|
461 + | /* FluentBuilderGenerator.kt:498 */
|
348 462 | #[allow(missing_docs)] // documentation missing in model
|
463 + | /* FluentBuilderGenerator.kt:500 */
|
349 464 | pub fn required_long(mut self, input: i64) -> Self {
|
350 465 | self.inner = self.inner.required_long(input);
|
351 466 | self
|
352 467 | }
|
468 + | /* FluentBuilderGenerator.kt:498 */
|
353 469 | #[allow(missing_docs)] // documentation missing in model
|
470 + | /* FluentBuilderGenerator.kt:500 */
|
354 471 | pub fn set_required_long(mut self, input: ::std::option::Option<i64>) -> Self {
|
355 472 | self.inner = self.inner.set_required_long(input);
|
356 473 | self
|
357 474 | }
|
475 + | /* FluentBuilderGenerator.kt:518 */
|
358 476 | #[allow(missing_docs)] // documentation missing in model
|
477 + | /* FluentBuilderGenerator.kt:520 */
|
359 478 | pub fn get_required_long(&self) -> &::std::option::Option<i64> {
|
360 479 | self.inner.get_required_long()
|
361 480 | }
|
481 + | /* FluentBuilderGenerator.kt:498 */
|
362 482 | #[allow(missing_docs)] // documentation missing in model
|
483 + | /* FluentBuilderGenerator.kt:500 */
|
363 484 | pub fn required_float(mut self, input: f32) -> Self {
|
364 485 | self.inner = self.inner.required_float(input);
|
365 486 | self
|
366 487 | }
|
488 + | /* FluentBuilderGenerator.kt:498 */
|
367 489 | #[allow(missing_docs)] // documentation missing in model
|
490 + | /* FluentBuilderGenerator.kt:500 */
|
368 491 | pub fn set_required_float(mut self, input: ::std::option::Option<f32>) -> Self {
|
369 492 | self.inner = self.inner.set_required_float(input);
|
370 493 | self
|
371 494 | }
|
495 + | /* FluentBuilderGenerator.kt:518 */
|
372 496 | #[allow(missing_docs)] // documentation missing in model
|
497 + | /* FluentBuilderGenerator.kt:520 */
|
373 498 | pub fn get_required_float(&self) -> &::std::option::Option<f32> {
|
374 499 | self.inner.get_required_float()
|
375 500 | }
|
501 + | /* FluentBuilderGenerator.kt:498 */
|
376 502 | #[allow(missing_docs)] // documentation missing in model
|
503 + | /* FluentBuilderGenerator.kt:500 */
|
377 504 | pub fn required_double(mut self, input: f64) -> Self {
|
378 505 | self.inner = self.inner.required_double(input);
|
379 506 | self
|
380 507 | }
|
508 + | /* FluentBuilderGenerator.kt:498 */
|
381 509 | #[allow(missing_docs)] // documentation missing in model
|
510 + | /* FluentBuilderGenerator.kt:500 */
|
382 511 | pub fn set_required_double(mut self, input: ::std::option::Option<f64>) -> Self {
|
383 512 | self.inner = self.inner.set_required_double(input);
|
384 513 | self
|
385 514 | }
|
515 + | /* FluentBuilderGenerator.kt:518 */
|
386 516 | #[allow(missing_docs)] // documentation missing in model
|
517 + | /* FluentBuilderGenerator.kt:520 */
|
387 518 | pub fn get_required_double(&self) -> &::std::option::Option<f64> {
|
388 519 | self.inner.get_required_double()
|
389 520 | }
|
521 + | /* FluentBuilderGenerator.kt:498 */
|
390 522 | #[allow(missing_docs)] // documentation missing in model
|
523 + | /* FluentBuilderGenerator.kt:500 */
|
391 524 | pub fn required_timestamp(mut self, input: ::aws_smithy_types::DateTime) -> Self {
|
392 525 | self.inner = self.inner.required_timestamp(input);
|
393 526 | self
|
394 527 | }
|
528 + | /* FluentBuilderGenerator.kt:498 */
|
395 529 | #[allow(missing_docs)] // documentation missing in model
|
530 + | /* FluentBuilderGenerator.kt:500 */
|
396 531 | pub fn set_required_timestamp(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
|
397 532 | self.inner = self.inner.set_required_timestamp(input);
|
398 533 | self
|
399 534 | }
|
535 + | /* FluentBuilderGenerator.kt:518 */
|
400 536 | #[allow(missing_docs)] // documentation missing in model
|
537 + | /* FluentBuilderGenerator.kt:520 */
|
401 538 | pub fn get_required_timestamp(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
|
402 539 | self.inner.get_required_timestamp()
|
403 540 | }
|
541 + | /* FluentBuilderGenerator.kt:498 */
|
404 542 | #[allow(missing_docs)] // documentation missing in model
|
543 + | /* FluentBuilderGenerator.kt:500 */
|
405 544 | pub fn required_enum(mut self, input: crate::types::Suit) -> Self {
|
406 545 | self.inner = self.inner.required_enum(input);
|
407 546 | self
|
408 547 | }
|
548 + | /* FluentBuilderGenerator.kt:498 */
|
409 549 | #[allow(missing_docs)] // documentation missing in model
|
550 + | /* FluentBuilderGenerator.kt:500 */
|
410 551 | pub fn set_required_enum(mut self, input: ::std::option::Option<crate::types::Suit>) -> Self {
|
411 552 | self.inner = self.inner.set_required_enum(input);
|
412 553 | self
|
413 554 | }
|
555 + | /* FluentBuilderGenerator.kt:518 */
|
414 556 | #[allow(missing_docs)] // documentation missing in model
|
557 + | /* FluentBuilderGenerator.kt:520 */
|
415 558 | pub fn get_required_enum(&self) -> &::std::option::Option<crate::types::Suit> {
|
416 559 | self.inner.get_required_enum()
|
417 560 | }
|
561 + | /* FluentBuilderGenerator.kt:282 */
|
418 562 | }
|