1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct UpdateAgentSpace;
6impl UpdateAgentSpace {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::update_agent_space::UpdateAgentSpaceInput,
14 ) -> ::std::result::Result<
15 crate::operation::update_agent_space::UpdateAgentSpaceOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::update_agent_space::UpdateAgentSpaceError,
18 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19 >,
20 > {
21 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22 ::aws_smithy_runtime_api::client::interceptors::context::Error,
23 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24 >| {
25 err.map_service_error(|err| {
26 err.downcast::<crate::operation::update_agent_space::UpdateAgentSpaceError>()
27 .expect("correct error type")
28 })
29 };
30 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31 .await
32 .map_err(map_err)?;
33 let output = context.finalize().map_err(map_err)?;
34 ::std::result::Result::Ok(
35 output
36 .downcast::<crate::operation::update_agent_space::UpdateAgentSpaceOutput>()
37 .expect("correct output type"),
38 )
39 }
40
41 pub(crate) async fn orchestrate_with_stop_point(
42 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43 input: crate::operation::update_agent_space::UpdateAgentSpaceInput,
44 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45 ) -> ::std::result::Result<
46 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47 ::aws_smithy_runtime_api::client::result::SdkError<
48 ::aws_smithy_runtime_api::client::interceptors::context::Error,
49 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50 >,
51 > {
52 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53 use ::tracing::Instrument;
54 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("DevOps Agent", "UpdateAgentSpace", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "DevOps Agent.UpdateAgentSpace",
59 "rpc.service" = "DevOps Agent",
60 "rpc.method" = "UpdateAgentSpace",
61 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62 "rpc.system" = "aws-api",
63 ))
64 .await
65 }
66
67 pub(crate) fn operation_runtime_plugins(
68 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69 client_config: &crate::config::Config,
70 config_override: ::std::option::Option<crate::config::Builder>,
71 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73
74 if let ::std::option::Option::Some(config_override) = config_override {
75 for plugin in config_override.runtime_plugins.iter().cloned() {
76 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77 }
78 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79 config_override,
80 client_config.config.clone(),
81 &client_config.runtime_components,
82 ));
83 }
84 runtime_plugins
85 }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for UpdateAgentSpace {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("UpdateAgentSpace");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 UpdateAgentSpaceRequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 UpdateAgentSpaceResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("UpdateAgentSpace")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
106 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
107 "UpdateAgentSpace",
108 "DevOps Agent",
109 ));
110 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
111 signing_options.double_uri_encode = true;
112 signing_options.content_sha256_header = false;
113 signing_options.normalize_uri_path = true;
114 signing_options.payload_override = None;
115
116 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
117 signing_options,
118 ..::std::default::Default::default()
119 });
120
121 ::std::option::Option::Some(cfg.freeze())
122 }
123
124 fn runtime_components(
125 &self,
126 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
127 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
128 #[allow(unused_mut)]
129 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("UpdateAgentSpace")
130 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
131 UpdateAgentSpaceTelemetryInputCaptureInterceptor,
132 ))
133 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
135 ))
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 UpdateAgentSpaceEndpointParamsInterceptor,
138 ))
139 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
140 crate::operation::update_agent_space::UpdateAgentSpaceError,
141 >::new())
142 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
143 crate::operation::update_agent_space::UpdateAgentSpaceError,
144 >::new())
145 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
146 crate::operation::update_agent_space::UpdateAgentSpaceError,
147 >::new())
148 .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
149 crate::operation::update_agent_space::UpdateAgentSpaceError,
150 >::new());
151
152 ::std::borrow::Cow::Owned(rcb)
153 }
154}
155
156#[derive(Debug)]
157struct UpdateAgentSpaceTelemetryInputCaptureInterceptor;
158
159#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
160impl ::aws_smithy_runtime_api::client::interceptors::Intercept for UpdateAgentSpaceTelemetryInputCaptureInterceptor {
161 fn name(&self) -> &'static str {
162 "UpdateAgentSpaceTelemetryInputCaptureInterceptor"
163 }
164
165 fn read_before_execution(
166 &self,
167 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
168 '_,
169 ::aws_smithy_runtime_api::client::interceptors::context::Input,
170 ::aws_smithy_runtime_api::client::interceptors::context::Output,
171 ::aws_smithy_runtime_api::client::interceptors::context::Error,
172 >,
173 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
174 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
175 let ::std::option::Option::Some(requested) = cfg
177 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
178 .filter(|r| !r.is_empty())
179 else {
180 return ::std::result::Result::Ok(());
181 };
182
183 let ::std::option::Option::Some(input) = context.input().downcast_ref::<UpdateAgentSpaceInput>() else {
184 return ::std::result::Result::Ok(());
186 };
187
188 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
189 if requested.should_capture("agentSpaceId") {
190 if let ::std::option::Option::Some(value) = input.agent_space_id.as_deref() {
191 captured.insert("agentSpaceId", value);
192 }
193 }
194 if requested.should_capture("name") {
195 if let ::std::option::Option::Some(value) = input.name.as_deref() {
196 captured.insert("name", value);
197 }
198 }
199 if requested.should_capture("locale") {
200 if let ::std::option::Option::Some(value) = input.locale.as_deref() {
201 captured.insert("locale", value);
202 }
203 }
204
205 cfg.interceptor_state().store_put(captured);
206 ::std::result::Result::Ok(())
207 }
208}
209#[derive(Debug)]
210struct UpdateAgentSpaceResponseDeserializer;
211impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for UpdateAgentSpaceResponseDeserializer {
212 fn deserialize_nonstreaming_with_config(
213 &self,
214 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
215 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
216 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
217 let (success, status) = (response.status().is_success(), response.status().as_u16());
218 let headers = response.headers();
219 let body = response.body().bytes().expect("body loaded");
220 #[allow(unused_mut)]
221 let mut force_error = false;
222 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
223 let parse_result = if !success && status != 200 || force_error {
224 crate::protocol_serde::shape_update_agent_space::de_update_agent_space_http_error(status, headers, body)
225 } else {
226 crate::protocol_serde::shape_update_agent_space::de_update_agent_space_http_response(status, headers, body)
227 };
228 crate::protocol_serde::type_erase_result(parse_result)
229 }
230}
231#[derive(Debug)]
232struct UpdateAgentSpaceRequestSerializer;
233impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for UpdateAgentSpaceRequestSerializer {
234 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
235 fn serialize_input(
236 &self,
237 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
238 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
239 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
240 let input = input
241 .downcast::<crate::operation::update_agent_space::UpdateAgentSpaceInput>()
242 .expect("correct type");
243 let _header_serialization_settings = _cfg
244 .load::<crate::serialization_settings::HeaderSerializationSettings>()
245 .cloned()
246 .unwrap_or_default();
247 let mut request_builder = {
248 #[allow(clippy::uninlined_format_args)]
249 fn uri_base(
250 _input: &crate::operation::update_agent_space::UpdateAgentSpaceInput,
251 output: &mut ::std::string::String,
252 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
253 use ::std::fmt::Write as _;
254 let input_1 = &_input.agent_space_id;
255 let input_1 = input_1
256 .as_ref()
257 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("agent_space_id", "cannot be empty or unset"))?;
258 let agent_space_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
259 if agent_space_id.is_empty() {
260 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
261 "agent_space_id",
262 "cannot be empty or unset",
263 ));
264 }
265 ::std::write!(output, "/v1/agentspaces/{agentSpaceId}", agentSpaceId = agent_space_id).expect("formatting should succeed");
266 ::std::result::Result::Ok(())
267 }
268 #[allow(clippy::unnecessary_wraps)]
269 fn update_http_builder(
270 input: &crate::operation::update_agent_space::UpdateAgentSpaceInput,
271 builder: ::http_1x::request::Builder,
272 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
273 let mut uri = ::std::string::String::new();
274 uri_base(input, &mut uri)?;
275 ::std::result::Result::Ok(builder.method("PATCH").uri(uri))
276 }
277 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
278 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
279 builder
280 };
281 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_update_agent_space::ser_update_agent_space_input(&input)?);
282 if let Some(content_length) = body.content_length() {
283 let content_length = content_length.to_string();
284 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
285 }
286 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
287 }
288}
289#[derive(Debug)]
290struct UpdateAgentSpaceEndpointParamsInterceptor;
291
292#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
293impl ::aws_smithy_runtime_api::client::interceptors::Intercept for UpdateAgentSpaceEndpointParamsInterceptor {
294 fn name(&self) -> &'static str {
295 "UpdateAgentSpaceEndpointParamsInterceptor"
296 }
297
298 fn read_before_execution(
299 &self,
300 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
301 '_,
302 ::aws_smithy_runtime_api::client::interceptors::context::Input,
303 ::aws_smithy_runtime_api::client::interceptors::context::Output,
304 ::aws_smithy_runtime_api::client::interceptors::context::Error,
305 >,
306 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
307 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
308 let _input = context
309 .input()
310 .downcast_ref::<UpdateAgentSpaceInput>()
311 .ok_or("failed to downcast to UpdateAgentSpaceInput")?;
312
313 let endpoint_prefix = ::aws_smithy_runtime_api::client::endpoint::EndpointPrefix::new("cp.").map_err(|err| {
314 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint prefix could not be built", err)
315 })?;
316 cfg.interceptor_state().store_put(endpoint_prefix);
317
318 let params = crate::config::endpoint::Params::builder()
319 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
320 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
321 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
322 .build()
323 .map_err(|err| {
324 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
325 })?;
326 cfg.interceptor_state()
327 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
328 ::std::result::Result::Ok(())
329 }
330}
331
332#[non_exhaustive]
337#[derive(::std::fmt::Debug)]
338pub enum UpdateAgentSpaceError {
339 ConflictException(crate::types::error::ConflictException),
341 InternalServerException(crate::types::error::InternalServerException),
343 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
345 ThrottlingException(crate::types::error::ThrottlingException),
347 ValidationException(crate::types::error::ValidationException),
349 AccessDeniedException(crate::types::error::AccessDeniedException),
351 ContentSizeExceededException(crate::types::error::ContentSizeExceededException),
353 InvalidParameterException(crate::types::error::InvalidParameterException),
355 ServiceQuotaExceededException(crate::types::error::ServiceQuotaExceededException),
357 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
359 variable wildcard pattern and check `.code()`:
360 \
361 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
362 \
363 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-UpdateAgentSpaceError) for what information is available for the error.")]
364 Unhandled(crate::error::sealed_unhandled::Unhandled),
365}
366impl UpdateAgentSpaceError {
367 pub fn unhandled(
369 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
370 ) -> Self {
371 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
372 source: err.into(),
373 meta: ::std::default::Default::default(),
374 })
375 }
376
377 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
379 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
380 source: err.clone().into(),
381 meta: err,
382 })
383 }
384 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
389 match self {
390 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
394 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
395 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
396 Self::ContentSizeExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
397 Self::InvalidParameterException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
398 Self::ServiceQuotaExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
399 Self::Unhandled(e) => &e.meta,
400 }
401 }
402 pub fn is_conflict_exception(&self) -> bool {
404 matches!(self, Self::ConflictException(_))
405 }
406 pub fn is_internal_server_exception(&self) -> bool {
408 matches!(self, Self::InternalServerException(_))
409 }
410 pub fn is_resource_not_found_exception(&self) -> bool {
412 matches!(self, Self::ResourceNotFoundException(_))
413 }
414 pub fn is_throttling_exception(&self) -> bool {
416 matches!(self, Self::ThrottlingException(_))
417 }
418 pub fn is_validation_exception(&self) -> bool {
420 matches!(self, Self::ValidationException(_))
421 }
422 pub fn is_access_denied_exception(&self) -> bool {
424 matches!(self, Self::AccessDeniedException(_))
425 }
426 pub fn is_content_size_exceeded_exception(&self) -> bool {
428 matches!(self, Self::ContentSizeExceededException(_))
429 }
430 pub fn is_invalid_parameter_exception(&self) -> bool {
432 matches!(self, Self::InvalidParameterException(_))
433 }
434 pub fn is_service_quota_exceeded_exception(&self) -> bool {
436 matches!(self, Self::ServiceQuotaExceededException(_))
437 }
438}
439impl ::std::error::Error for UpdateAgentSpaceError {
440 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
441 match self {
442 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
443 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
444 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
445 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
446 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
447 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
448 Self::ContentSizeExceededException(_inner) => ::std::option::Option::Some(_inner),
449 Self::InvalidParameterException(_inner) => ::std::option::Option::Some(_inner),
450 Self::ServiceQuotaExceededException(_inner) => ::std::option::Option::Some(_inner),
451 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
452 }
453 }
454}
455impl ::std::fmt::Display for UpdateAgentSpaceError {
456 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
457 match self {
458 Self::ConflictException(_inner) => _inner.fmt(f),
459 Self::InternalServerException(_inner) => _inner.fmt(f),
460 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
461 Self::ThrottlingException(_inner) => _inner.fmt(f),
462 Self::ValidationException(_inner) => _inner.fmt(f),
463 Self::AccessDeniedException(_inner) => _inner.fmt(f),
464 Self::ContentSizeExceededException(_inner) => _inner.fmt(f),
465 Self::InvalidParameterException(_inner) => _inner.fmt(f),
466 Self::ServiceQuotaExceededException(_inner) => _inner.fmt(f),
467 Self::Unhandled(_inner) => {
468 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
469 write!(f, "unhandled error ({code})")
470 } else {
471 f.write_str("unhandled error")
472 }
473 }
474 }
475 }
476}
477impl ::aws_smithy_types::retry::ProvideErrorKind for UpdateAgentSpaceError {
478 fn code(&self) -> ::std::option::Option<&str> {
479 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
480 }
481 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
482 match self {
483 Self::InternalServerException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
484 Self::ThrottlingException(inner) => ::std::option::Option::Some(inner.retryable_error_kind()),
485 _ => ::std::option::Option::None,
486 }
487 }
488}
489impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for UpdateAgentSpaceError {
490 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
491 match self {
492 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
493 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
494 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
495 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
496 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
497 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
498 Self::ContentSizeExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
499 Self::InvalidParameterException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
500 Self::ServiceQuotaExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
501 Self::Unhandled(_inner) => &_inner.meta,
502 }
503 }
504}
505impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for UpdateAgentSpaceError {
506 fn create_unhandled_error(
507 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
508 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
509 ) -> Self {
510 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
511 source,
512 meta: meta.unwrap_or_default(),
513 })
514 }
515}
516impl ::aws_types::request_id::RequestId for crate::operation::update_agent_space::UpdateAgentSpaceError {
517 fn request_id(&self) -> Option<&str> {
518 self.meta().request_id()
519 }
520}
521
522pub use crate::operation::update_agent_space::_update_agent_space_input::UpdateAgentSpaceInput;
523
524pub use crate::operation::update_agent_space::_update_agent_space_output::UpdateAgentSpaceOutput;
525
526mod _update_agent_space_input;
527
528mod _update_agent_space_output;
529
530pub mod builders;