1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct InvokeEndpointWithResponseStream;
6impl InvokeEndpointWithResponseStream {
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::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamInput,
14 ) -> ::std::result::Result<
15 crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError,
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::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError>()
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::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamOutput>()
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::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamInput,
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(
55 "SageMaker Runtime",
56 "InvokeEndpointWithResponseStream",
57 input,
58 runtime_plugins,
59 stop_point,
60 )
61 .instrument(::tracing::debug_span!(
64 "SageMaker Runtime.InvokeEndpointWithResponseStream",
65 "rpc.service" = "SageMaker Runtime",
66 "rpc.method" = "InvokeEndpointWithResponseStream",
67 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
68 "rpc.system" = "aws-api",
69 ))
70 .await
71 }
72
73 pub(crate) fn operation_runtime_plugins(
74 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
75 client_config: &crate::config::Config,
76 config_override: ::std::option::Option<crate::config::Builder>,
77 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
78 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
79
80 if let ::std::option::Option::Some(config_override) = config_override {
81 for plugin in config_override.runtime_plugins.iter().cloned() {
82 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
83 }
84 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
85 config_override,
86 client_config.config.clone(),
87 &client_config.runtime_components,
88 ));
89 }
90 runtime_plugins
91 }
92}
93impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for InvokeEndpointWithResponseStream {
94 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
95 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("InvokeEndpointWithResponseStream");
96
97 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
98 InvokeEndpointWithResponseStreamRequestSerializer,
99 ));
100 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
101 InvokeEndpointWithResponseStreamResponseDeserializer,
102 ));
103
104 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
105 crate::config::auth::Params::builder()
106 .operation_name("InvokeEndpointWithResponseStream")
107 .build()
108 .expect("required fields set"),
109 ));
110
111 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
112 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
113 "InvokeEndpointWithResponseStream",
114 "SageMaker Runtime",
115 ));
116 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
117 signing_options.double_uri_encode = true;
118 signing_options.content_sha256_header = false;
119 signing_options.normalize_uri_path = true;
120 signing_options.payload_override = None;
121
122 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
123 signing_options,
124 ..::std::default::Default::default()
125 });
126
127 ::std::option::Option::Some(cfg.freeze())
128 }
129
130 fn runtime_components(
131 &self,
132 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
133 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
134 #[allow(unused_mut)]
135 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("InvokeEndpointWithResponseStream")
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 InvokeEndpointWithResponseStreamTelemetryInputCaptureInterceptor,
138 ))
139 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
140 InvokeEndpointWithResponseStreamEndpointParamsInterceptor,
141 ))
142 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
143 crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError,
144 >::new())
145 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
146 crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError,
147 >::new())
148 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
149 crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError,
150 >::new());
151
152 ::std::borrow::Cow::Owned(rcb)
153 }
154}
155
156#[derive(Debug)]
157struct InvokeEndpointWithResponseStreamTelemetryInputCaptureInterceptor;
158
159#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
160impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeEndpointWithResponseStreamTelemetryInputCaptureInterceptor {
161 fn name(&self) -> &'static str {
162 "InvokeEndpointWithResponseStreamTelemetryInputCaptureInterceptor"
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::<InvokeEndpointWithResponseStreamInput>() else {
184 return ::std::result::Result::Ok(());
186 };
187
188 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
189 if requested.should_capture("EndpointName") {
190 if let ::std::option::Option::Some(value) = input.endpoint_name.as_deref() {
191 captured.insert("EndpointName", value);
192 }
193 }
194 if requested.should_capture("ContentType") {
195 if let ::std::option::Option::Some(value) = input.content_type.as_deref() {
196 captured.insert("ContentType", value);
197 }
198 }
199 if requested.should_capture("Accept") {
200 if let ::std::option::Option::Some(value) = input.accept.as_deref() {
201 captured.insert("Accept", value);
202 }
203 }
204 if requested.should_capture("TargetVariant") {
205 if let ::std::option::Option::Some(value) = input.target_variant.as_deref() {
206 captured.insert("TargetVariant", value);
207 }
208 }
209 if requested.should_capture("TargetContainerHostname") {
210 if let ::std::option::Option::Some(value) = input.target_container_hostname.as_deref() {
211 captured.insert("TargetContainerHostname", value);
212 }
213 }
214 if requested.should_capture("InferenceId") {
215 if let ::std::option::Option::Some(value) = input.inference_id.as_deref() {
216 captured.insert("InferenceId", value);
217 }
218 }
219 if requested.should_capture("InferenceComponentName") {
220 if let ::std::option::Option::Some(value) = input.inference_component_name.as_deref() {
221 captured.insert("InferenceComponentName", value);
222 }
223 }
224 if requested.should_capture("SessionId") {
225 if let ::std::option::Option::Some(value) = input.session_id.as_deref() {
226 captured.insert("SessionId", value);
227 }
228 }
229 if requested.should_capture("PrefixAwareId") {
230 if let ::std::option::Option::Some(value) = input.prefix_aware_id.as_deref() {
231 captured.insert("PrefixAwareId", value);
232 }
233 }
234
235 cfg.interceptor_state().store_put(captured);
236 ::std::result::Result::Ok(())
237 }
238}
239#[derive(Debug)]
240struct InvokeEndpointWithResponseStreamResponseDeserializer;
241impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for InvokeEndpointWithResponseStreamResponseDeserializer {
242 fn deserialize_streaming(
243 &self,
244 response: &mut ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
245 ) -> ::std::option::Option<::aws_smithy_runtime_api::client::interceptors::context::OutputOrError> {
246 #[allow(unused_mut)]
247 let mut force_error = false;
248 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
249
250 if (!response.status().is_success() && response.status().as_u16() != 200) || force_error {
252 return ::std::option::Option::None;
253 }
254 ::std::option::Option::Some(crate::protocol_serde::type_erase_result(
255 crate::protocol_serde::shape_invoke_endpoint_with_response_stream::de_invoke_endpoint_with_response_stream_http_response(response),
256 ))
257 }
258
259 fn deserialize_nonstreaming_with_config(
260 &self,
261 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
262 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
263 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
264 let body = response.body().bytes().expect("body loaded");
266 crate::protocol_serde::type_erase_result(
267 crate::protocol_serde::shape_invoke_endpoint_with_response_stream::de_invoke_endpoint_with_response_stream_http_error(
268 response.status().as_u16(),
269 response.headers(),
270 body,
271 ),
272 )
273 }
274}
275#[derive(Debug)]
276struct InvokeEndpointWithResponseStreamRequestSerializer;
277impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeEndpointWithResponseStreamRequestSerializer {
278 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
279 fn serialize_input(
280 &self,
281 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
282 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
283 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
284 let input = input
285 .downcast::<crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamInput>()
286 .expect("correct type");
287 let _header_serialization_settings = _cfg
288 .load::<crate::serialization_settings::HeaderSerializationSettings>()
289 .cloned()
290 .unwrap_or_default();
291 let mut request_builder = {
292 #[allow(clippy::uninlined_format_args)]
293 fn uri_base(
294 _input: &crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamInput,
295 output: &mut ::std::string::String,
296 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
297 use ::std::fmt::Write as _;
298 let input_1 = &_input.endpoint_name;
299 let input_1 = input_1
300 .as_ref()
301 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("endpoint_name", "cannot be empty or unset"))?;
302 let endpoint_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
303 if endpoint_name.is_empty() {
304 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
305 "endpoint_name",
306 "cannot be empty or unset",
307 ));
308 }
309 ::std::write!(
310 output,
311 "/endpoints/{EndpointName}/invocations-response-stream",
312 EndpointName = endpoint_name
313 )
314 .expect("formatting should succeed");
315 ::std::result::Result::Ok(())
316 }
317 #[allow(clippy::unnecessary_wraps)]
318 fn update_http_builder(
319 input: &crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamInput,
320 builder: ::http_1x::request::Builder,
321 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
322 let mut uri = ::std::string::String::new();
323 uri_base(input, &mut uri)?;
324 let builder = crate::protocol_serde::shape_invoke_endpoint_with_response_stream::ser_invoke_endpoint_with_response_stream_headers(
325 input, builder,
326 )?;
327 ::std::result::Result::Ok(builder.method("POST").uri(uri))
328 }
329 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
330 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/octet-stream");
331 builder
332 };
333 let body = ::aws_smithy_types::body::SdkBody::from(
334 crate::protocol_serde::shape_invoke_endpoint_with_response_stream_input::ser_body_http_payload(input.body)?,
335 );
336 if let Some(content_length) = body.content_length() {
337 let content_length = content_length.to_string();
338 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
339 }
340 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
341 }
342}
343#[derive(Debug)]
344struct InvokeEndpointWithResponseStreamEndpointParamsInterceptor;
345
346#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
347impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeEndpointWithResponseStreamEndpointParamsInterceptor {
348 fn name(&self) -> &'static str {
349 "InvokeEndpointWithResponseStreamEndpointParamsInterceptor"
350 }
351
352 fn read_before_execution(
353 &self,
354 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
355 '_,
356 ::aws_smithy_runtime_api::client::interceptors::context::Input,
357 ::aws_smithy_runtime_api::client::interceptors::context::Output,
358 ::aws_smithy_runtime_api::client::interceptors::context::Error,
359 >,
360 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
361 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
362 let _input = context
363 .input()
364 .downcast_ref::<InvokeEndpointWithResponseStreamInput>()
365 .ok_or("failed to downcast to InvokeEndpointWithResponseStreamInput")?;
366
367 let params = crate::config::endpoint::Params::builder()
368 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
369 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
370 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
371 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
372 .build()
373 .map_err(|err| {
374 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
375 })?;
376 cfg.interceptor_state()
377 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
378 ::std::result::Result::Ok(())
379 }
380}
381
382#[non_exhaustive]
387#[derive(::std::fmt::Debug)]
388pub enum InvokeEndpointWithResponseStreamError {
389 InternalFailure(crate::types::error::InternalFailure),
391 InternalStreamFailure(crate::types::error::InternalStreamFailure),
393 ModelError(crate::types::error::ModelError),
395 ModelStreamError(crate::types::error::ModelStreamError),
411 ServiceUnavailable(crate::types::error::ServiceUnavailable),
413 ValidationError(crate::types::error::ValidationError),
415 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
417 variable wildcard pattern and check `.code()`:
418 \
419 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
420 \
421 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeEndpointWithResponseStreamError) for what information is available for the error.")]
422 Unhandled(crate::error::sealed_unhandled::Unhandled),
423}
424impl InvokeEndpointWithResponseStreamError {
425 pub fn unhandled(
427 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
428 ) -> Self {
429 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
430 source: err.into(),
431 meta: ::std::default::Default::default(),
432 })
433 }
434
435 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
437 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
438 source: err.clone().into(),
439 meta: err,
440 })
441 }
442 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
447 match self {
448 Self::InternalFailure(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
449 Self::InternalStreamFailure(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
450 Self::ModelError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
451 Self::ModelStreamError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
452 Self::ServiceUnavailable(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
453 Self::ValidationError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
454 Self::Unhandled(e) => &e.meta,
455 }
456 }
457 pub fn is_internal_failure(&self) -> bool {
459 matches!(self, Self::InternalFailure(_))
460 }
461 pub fn is_internal_stream_failure(&self) -> bool {
463 matches!(self, Self::InternalStreamFailure(_))
464 }
465 pub fn is_model_error(&self) -> bool {
467 matches!(self, Self::ModelError(_))
468 }
469 pub fn is_model_stream_error(&self) -> bool {
471 matches!(self, Self::ModelStreamError(_))
472 }
473 pub fn is_service_unavailable(&self) -> bool {
475 matches!(self, Self::ServiceUnavailable(_))
476 }
477 pub fn is_validation_error(&self) -> bool {
479 matches!(self, Self::ValidationError(_))
480 }
481}
482impl ::std::error::Error for InvokeEndpointWithResponseStreamError {
483 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
484 match self {
485 Self::InternalFailure(_inner) => ::std::option::Option::Some(_inner),
486 Self::InternalStreamFailure(_inner) => ::std::option::Option::Some(_inner),
487 Self::ModelError(_inner) => ::std::option::Option::Some(_inner),
488 Self::ModelStreamError(_inner) => ::std::option::Option::Some(_inner),
489 Self::ServiceUnavailable(_inner) => ::std::option::Option::Some(_inner),
490 Self::ValidationError(_inner) => ::std::option::Option::Some(_inner),
491 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
492 }
493 }
494}
495impl ::std::fmt::Display for InvokeEndpointWithResponseStreamError {
496 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
497 match self {
498 Self::InternalFailure(_inner) => _inner.fmt(f),
499 Self::InternalStreamFailure(_inner) => _inner.fmt(f),
500 Self::ModelError(_inner) => _inner.fmt(f),
501 Self::ModelStreamError(_inner) => _inner.fmt(f),
502 Self::ServiceUnavailable(_inner) => _inner.fmt(f),
503 Self::ValidationError(_inner) => _inner.fmt(f),
504 Self::Unhandled(_inner) => {
505 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
506 write!(f, "unhandled error ({code})")
507 } else {
508 f.write_str("unhandled error")
509 }
510 }
511 }
512 }
513}
514impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeEndpointWithResponseStreamError {
515 fn code(&self) -> ::std::option::Option<&str> {
516 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
517 }
518 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
519 ::std::option::Option::None
520 }
521}
522impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeEndpointWithResponseStreamError {
523 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
524 match self {
525 Self::InternalFailure(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
526 Self::InternalStreamFailure(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
527 Self::ModelError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
528 Self::ModelStreamError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
529 Self::ServiceUnavailable(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
530 Self::ValidationError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
531 Self::Unhandled(_inner) => &_inner.meta,
532 }
533 }
534}
535impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeEndpointWithResponseStreamError {
536 fn create_unhandled_error(
537 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
538 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
539 ) -> Self {
540 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
541 source,
542 meta: meta.unwrap_or_default(),
543 })
544 }
545}
546impl ::aws_types::request_id::RequestId for crate::operation::invoke_endpoint_with_response_stream::InvokeEndpointWithResponseStreamError {
547 fn request_id(&self) -> Option<&str> {
548 self.meta().request_id()
549 }
550}
551
552pub use crate::operation::invoke_endpoint_with_response_stream::_invoke_endpoint_with_response_stream_input::InvokeEndpointWithResponseStreamInput;
553
554pub use crate::operation::invoke_endpoint_with_response_stream::_invoke_endpoint_with_response_stream_output::InvokeEndpointWithResponseStreamOutput;
555
556mod _invoke_endpoint_with_response_stream_input;
557
558mod _invoke_endpoint_with_response_stream_output;
559
560pub mod builders;