Skip to main content

aws_sdk_databasemigration/operation/
create_endpoint.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `CreateEndpoint`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateEndpoint;
6impl CreateEndpoint {
7    /// Creates a new `CreateEndpoint`
8    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::create_endpoint::CreateEndpointInput,
14    ) -> ::std::result::Result<
15        crate::operation::create_endpoint::CreateEndpointOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::create_endpoint::CreateEndpointError,
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::create_endpoint::CreateEndpointError>()
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::create_endpoint::CreateEndpointOutput>()
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::create_endpoint::CreateEndpointInput,
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            "Database Migration Service",
56            "CreateEndpoint",
57            input,
58            runtime_plugins,
59            stop_point,
60        )
61        // Create a parent span for the entire operation. Includes a random, internal-only,
62        // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
63        .instrument(::tracing::debug_span!(
64            "Database Migration Service.CreateEndpoint",
65            "rpc.service" = "Database Migration Service",
66            "rpc.method" = "CreateEndpoint",
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 CreateEndpoint {
94    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
95        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateEndpoint");
96
97        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
98            CreateEndpointRequestSerializer,
99        ));
100        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
101            CreateEndpointResponseDeserializer,
102        ));
103
104        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
105            crate::config::auth::Params::builder()
106                .operation_name("CreateEndpoint")
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            "CreateEndpoint",
114            "Database Migration Service",
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("CreateEndpoint")
136            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137                CreateEndpointTelemetryInputCaptureInterceptor,
138            ))
139            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
140                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
141            ))
142            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
143                CreateEndpointEndpointParamsInterceptor,
144            ))
145            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
146                crate::operation::create_endpoint::CreateEndpointError,
147            >::new())
148            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
149                crate::operation::create_endpoint::CreateEndpointError,
150            >::new())
151            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
152                crate::operation::create_endpoint::CreateEndpointError,
153            >::new());
154
155        ::std::borrow::Cow::Owned(rcb)
156    }
157}
158
159#[derive(Debug)]
160struct CreateEndpointTelemetryInputCaptureInterceptor;
161
162#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
163impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateEndpointTelemetryInputCaptureInterceptor {
164    fn name(&self) -> &'static str {
165        "CreateEndpointTelemetryInputCaptureInterceptor"
166    }
167
168    fn read_before_execution(
169        &self,
170        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
171            '_,
172            ::aws_smithy_runtime_api::client::interceptors::context::Input,
173            ::aws_smithy_runtime_api::client::interceptors::context::Output,
174            ::aws_smithy_runtime_api::client::interceptors::context::Error,
175        >,
176        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
177    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
178        // Nothing to do unless the customer opted in by naming members to record.
179        let ::std::option::Option::Some(requested) = cfg
180            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
181            .filter(|r| !r.is_empty())
182        else {
183            return ::std::result::Result::Ok(());
184        };
185
186        let ::std::option::Option::Some(input) = context.input().downcast_ref::<CreateEndpointInput>() else {
187            // A mismatched input is not this interceptor's concern; skip quietly.
188            return ::std::result::Result::Ok(());
189        };
190
191        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
192        if requested.should_capture("EndpointIdentifier") {
193            if let ::std::option::Option::Some(value) = input.endpoint_identifier.as_deref() {
194                captured.insert("EndpointIdentifier", value);
195            }
196        }
197        if requested.should_capture("EngineName") {
198            if let ::std::option::Option::Some(value) = input.engine_name.as_deref() {
199                captured.insert("EngineName", value);
200            }
201        }
202        if requested.should_capture("Username") {
203            if let ::std::option::Option::Some(value) = input.username.as_deref() {
204                captured.insert("Username", value);
205            }
206        }
207        if requested.should_capture("ServerName") {
208            if let ::std::option::Option::Some(value) = input.server_name.as_deref() {
209                captured.insert("ServerName", value);
210            }
211        }
212        if requested.should_capture("DatabaseName") {
213            if let ::std::option::Option::Some(value) = input.database_name.as_deref() {
214                captured.insert("DatabaseName", value);
215            }
216        }
217        if requested.should_capture("ExtraConnectionAttributes") {
218            if let ::std::option::Option::Some(value) = input.extra_connection_attributes.as_deref() {
219                captured.insert("ExtraConnectionAttributes", value);
220            }
221        }
222        if requested.should_capture("KmsKeyId") {
223            if let ::std::option::Option::Some(value) = input.kms_key_id.as_deref() {
224                captured.insert("KmsKeyId", value);
225            }
226        }
227        if requested.should_capture("CertificateArn") {
228            if let ::std::option::Option::Some(value) = input.certificate_arn.as_deref() {
229                captured.insert("CertificateArn", value);
230            }
231        }
232        if requested.should_capture("ServiceAccessRoleArn") {
233            if let ::std::option::Option::Some(value) = input.service_access_role_arn.as_deref() {
234                captured.insert("ServiceAccessRoleArn", value);
235            }
236        }
237        if requested.should_capture("ExternalTableDefinition") {
238            if let ::std::option::Option::Some(value) = input.external_table_definition.as_deref() {
239                captured.insert("ExternalTableDefinition", value);
240            }
241        }
242        if requested.should_capture("ResourceIdentifier") {
243            if let ::std::option::Option::Some(value) = input.resource_identifier.as_deref() {
244                captured.insert("ResourceIdentifier", value);
245            }
246        }
247
248        cfg.interceptor_state().store_put(captured);
249        ::std::result::Result::Ok(())
250    }
251}
252#[derive(Debug)]
253struct CreateEndpointResponseDeserializer;
254impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateEndpointResponseDeserializer {
255    fn deserialize_nonstreaming_with_config(
256        &self,
257        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
258        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
259    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
260        let (success, status) = (response.status().is_success(), response.status().as_u16());
261        let headers = response.headers();
262        let body = response.body().bytes().expect("body loaded");
263        #[allow(unused_mut)]
264        let mut force_error = false;
265        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
266        let parse_result = if !success && status != 200 || force_error {
267            crate::protocol_serde::shape_create_endpoint::de_create_endpoint_http_error(status, headers, body)
268        } else {
269            crate::protocol_serde::shape_create_endpoint::de_create_endpoint_http_response(status, headers, body)
270        };
271        crate::protocol_serde::type_erase_result(parse_result)
272    }
273}
274#[derive(Debug)]
275struct CreateEndpointRequestSerializer;
276impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateEndpointRequestSerializer {
277    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
278    fn serialize_input(
279        &self,
280        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
281        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
282    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
283        let input = input
284            .downcast::<crate::operation::create_endpoint::CreateEndpointInput>()
285            .expect("correct type");
286        let _header_serialization_settings = _cfg
287            .load::<crate::serialization_settings::HeaderSerializationSettings>()
288            .cloned()
289            .unwrap_or_default();
290        let mut request_builder = {
291            #[allow(clippy::uninlined_format_args)]
292            fn uri_base(
293                _input: &crate::operation::create_endpoint::CreateEndpointInput,
294                output: &mut ::std::string::String,
295            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
296                use ::std::fmt::Write as _;
297                ::std::write!(output, "/").expect("formatting should succeed");
298                ::std::result::Result::Ok(())
299            }
300            #[allow(clippy::unnecessary_wraps)]
301            fn update_http_builder(
302                input: &crate::operation::create_endpoint::CreateEndpointInput,
303                builder: ::http_1x::request::Builder,
304            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
305                let mut uri = ::std::string::String::new();
306                uri_base(input, &mut uri)?;
307                ::std::result::Result::Ok(builder.method("POST").uri(uri))
308            }
309            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
310            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-amz-json-1.1");
311            builder = _header_serialization_settings.set_default_header(
312                builder,
313                ::http_1x::header::HeaderName::from_static("x-amz-target"),
314                "AmazonDMSv20160101.CreateEndpoint",
315            );
316            builder
317        };
318        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_create_endpoint::ser_create_endpoint_input(&input)?);
319        if let Some(content_length) = body.content_length() {
320            let content_length = content_length.to_string();
321            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
322        }
323        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
324    }
325}
326#[derive(Debug)]
327struct CreateEndpointEndpointParamsInterceptor;
328
329#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
330impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateEndpointEndpointParamsInterceptor {
331    fn name(&self) -> &'static str {
332        "CreateEndpointEndpointParamsInterceptor"
333    }
334
335    fn read_before_execution(
336        &self,
337        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
338            '_,
339            ::aws_smithy_runtime_api::client::interceptors::context::Input,
340            ::aws_smithy_runtime_api::client::interceptors::context::Output,
341            ::aws_smithy_runtime_api::client::interceptors::context::Error,
342        >,
343        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
344    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
345        let _input = context
346            .input()
347            .downcast_ref::<CreateEndpointInput>()
348            .ok_or("failed to downcast to CreateEndpointInput")?;
349
350        let params = crate::config::endpoint::Params::builder()
351            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
352            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
353            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
354            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
355            .build()
356            .map_err(|err| {
357                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
358            })?;
359        cfg.interceptor_state()
360            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
361        ::std::result::Result::Ok(())
362    }
363}
364
365// The get_* functions below are generated from JMESPath expressions in the
366// operationContextParams trait. They target the operation's input shape.
367
368/// Error type for the `CreateEndpointError` operation.
369#[non_exhaustive]
370#[derive(::std::fmt::Debug)]
371pub enum CreateEndpointError {
372    /// <p>DMS was denied access to the endpoint. Check that the role is correctly configured.</p>
373    AccessDeniedFault(crate::types::error::AccessDeniedFault),
374    /// <p>The resource is in a state that prevents it from being used for database migration.</p>
375    InvalidResourceStateFault(crate::types::error::InvalidResourceStateFault),
376    /// <p>DMS cannot access the KMS key.</p>
377    KmsKeyNotAccessibleFault(crate::types::error::KmsKeyNotAccessibleFault),
378    /// <p>The resource you are attempting to create already exists.</p>
379    ResourceAlreadyExistsFault(crate::types::error::ResourceAlreadyExistsFault),
380    /// <p>The resource could not be found.</p>
381    ResourceNotFoundFault(crate::types::error::ResourceNotFoundFault),
382    /// <p>The quota for this resource quota has been exceeded.</p>
383    ResourceQuotaExceededFault(crate::types::error::ResourceQuotaExceededFault),
384    /// <p>Insufficient privileges are preventing access to an Amazon S3 object.</p>
385    S3AccessDeniedFault(crate::types::error::S3AccessDeniedFault),
386    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
387    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
388    variable wildcard pattern and check `.code()`:
389     \
390    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
391     \
392    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateEndpointError) for what information is available for the error.")]
393    Unhandled(crate::error::sealed_unhandled::Unhandled),
394}
395impl CreateEndpointError {
396    /// Creates the `CreateEndpointError::Unhandled` variant from any error type.
397    pub fn unhandled(
398        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
399    ) -> Self {
400        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
401            source: err.into(),
402            meta: ::std::default::Default::default(),
403        })
404    }
405
406    /// Creates the `CreateEndpointError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
407    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
408        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
409            source: err.clone().into(),
410            meta: err,
411        })
412    }
413    ///
414    /// Returns error metadata, which includes the error code, message,
415    /// request ID, and potentially additional information.
416    ///
417    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
418        match self {
419            Self::AccessDeniedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
420            Self::InvalidResourceStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
421            Self::KmsKeyNotAccessibleFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
422            Self::ResourceAlreadyExistsFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
423            Self::ResourceNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
424            Self::ResourceQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
425            Self::S3AccessDeniedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
426            Self::Unhandled(e) => &e.meta,
427        }
428    }
429    /// Returns `true` if the error kind is `CreateEndpointError::AccessDeniedFault`.
430    pub fn is_access_denied_fault(&self) -> bool {
431        matches!(self, Self::AccessDeniedFault(_))
432    }
433    /// Returns `true` if the error kind is `CreateEndpointError::InvalidResourceStateFault`.
434    pub fn is_invalid_resource_state_fault(&self) -> bool {
435        matches!(self, Self::InvalidResourceStateFault(_))
436    }
437    /// Returns `true` if the error kind is `CreateEndpointError::KmsKeyNotAccessibleFault`.
438    pub fn is_kms_key_not_accessible_fault(&self) -> bool {
439        matches!(self, Self::KmsKeyNotAccessibleFault(_))
440    }
441    /// Returns `true` if the error kind is `CreateEndpointError::ResourceAlreadyExistsFault`.
442    pub fn is_resource_already_exists_fault(&self) -> bool {
443        matches!(self, Self::ResourceAlreadyExistsFault(_))
444    }
445    /// Returns `true` if the error kind is `CreateEndpointError::ResourceNotFoundFault`.
446    pub fn is_resource_not_found_fault(&self) -> bool {
447        matches!(self, Self::ResourceNotFoundFault(_))
448    }
449    /// Returns `true` if the error kind is `CreateEndpointError::ResourceQuotaExceededFault`.
450    pub fn is_resource_quota_exceeded_fault(&self) -> bool {
451        matches!(self, Self::ResourceQuotaExceededFault(_))
452    }
453    /// Returns `true` if the error kind is `CreateEndpointError::S3AccessDeniedFault`.
454    pub fn is_s3_access_denied_fault(&self) -> bool {
455        matches!(self, Self::S3AccessDeniedFault(_))
456    }
457}
458impl ::std::error::Error for CreateEndpointError {
459    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
460        match self {
461            Self::AccessDeniedFault(_inner) => ::std::option::Option::Some(_inner),
462            Self::InvalidResourceStateFault(_inner) => ::std::option::Option::Some(_inner),
463            Self::KmsKeyNotAccessibleFault(_inner) => ::std::option::Option::Some(_inner),
464            Self::ResourceAlreadyExistsFault(_inner) => ::std::option::Option::Some(_inner),
465            Self::ResourceNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
466            Self::ResourceQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
467            Self::S3AccessDeniedFault(_inner) => ::std::option::Option::Some(_inner),
468            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
469        }
470    }
471}
472impl ::std::fmt::Display for CreateEndpointError {
473    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
474        match self {
475            Self::AccessDeniedFault(_inner) => _inner.fmt(f),
476            Self::InvalidResourceStateFault(_inner) => _inner.fmt(f),
477            Self::KmsKeyNotAccessibleFault(_inner) => _inner.fmt(f),
478            Self::ResourceAlreadyExistsFault(_inner) => _inner.fmt(f),
479            Self::ResourceNotFoundFault(_inner) => _inner.fmt(f),
480            Self::ResourceQuotaExceededFault(_inner) => _inner.fmt(f),
481            Self::S3AccessDeniedFault(_inner) => _inner.fmt(f),
482            Self::Unhandled(_inner) => {
483                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
484                    write!(f, "unhandled error ({code})")
485                } else {
486                    f.write_str("unhandled error")
487                }
488            }
489        }
490    }
491}
492impl ::aws_smithy_types::retry::ProvideErrorKind for CreateEndpointError {
493    fn code(&self) -> ::std::option::Option<&str> {
494        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
495    }
496    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
497        ::std::option::Option::None
498    }
499}
500impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateEndpointError {
501    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
502        match self {
503            Self::AccessDeniedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
504            Self::InvalidResourceStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
505            Self::KmsKeyNotAccessibleFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
506            Self::ResourceAlreadyExistsFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
507            Self::ResourceNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
508            Self::ResourceQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
509            Self::S3AccessDeniedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
510            Self::Unhandled(_inner) => &_inner.meta,
511        }
512    }
513}
514impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateEndpointError {
515    fn create_unhandled_error(
516        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
517        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
518    ) -> Self {
519        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
520            source,
521            meta: meta.unwrap_or_default(),
522        })
523    }
524}
525impl ::aws_types::request_id::RequestId for crate::operation::create_endpoint::CreateEndpointError {
526    fn request_id(&self) -> Option<&str> {
527        self.meta().request_id()
528    }
529}
530
531pub use crate::operation::create_endpoint::_create_endpoint_input::CreateEndpointInput;
532
533pub use crate::operation::create_endpoint::_create_endpoint_output::CreateEndpointOutput;
534
535mod _create_endpoint_input;
536
537mod _create_endpoint_output;
538
539/// Builders
540pub mod builders;