Skip to main content

aws_sdk_rds/operation/
modify_db_instance.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `ModifyDBInstance`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct ModifyDBInstance;
6impl ModifyDBInstance {
7    /// Creates a new `ModifyDBInstance`
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::modify_db_instance::ModifyDbInstanceInput,
14    ) -> ::std::result::Result<
15        crate::operation::modify_db_instance::ModifyDbInstanceOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::modify_db_instance::ModifyDBInstanceError,
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::modify_db_instance::ModifyDBInstanceError>()
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::modify_db_instance::ModifyDbInstanceOutput>()
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::modify_db_instance::ModifyDbInstanceInput,
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("RDS", "ModifyDBInstance", input, runtime_plugins, stop_point)
55            // Create a parent span for the entire operation. Includes a random, internal-only,
56            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
57            .instrument(::tracing::debug_span!(
58                "RDS.ModifyDBInstance",
59                "rpc.service" = "RDS",
60                "rpc.method" = "ModifyDBInstance",
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 ModifyDBInstance {
88    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ModifyDBInstance");
90
91        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92            ModifyDBInstanceRequestSerializer,
93        ));
94        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95            ModifyDBInstanceResponseDeserializer,
96        ));
97
98        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99            crate::config::auth::Params::builder()
100                .operation_name("ModifyDBInstance")
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("ModifyDBInstance", "RDS"));
107        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
108        signing_options.double_uri_encode = true;
109        signing_options.content_sha256_header = false;
110        signing_options.normalize_uri_path = true;
111        signing_options.payload_override = None;
112
113        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
114            signing_options,
115            ..::std::default::Default::default()
116        });
117
118        ::std::option::Option::Some(cfg.freeze())
119    }
120
121    fn runtime_components(
122        &self,
123        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
124    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
125        #[allow(unused_mut)]
126        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ModifyDBInstance")
127            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
128                ModifyDBInstanceTelemetryInputCaptureInterceptor,
129            ))
130            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
131                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
132            ))
133            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134                ModifyDBInstanceEndpointParamsInterceptor,
135            ))
136            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
137                crate::operation::modify_db_instance::ModifyDBInstanceError,
138            >::new())
139            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
140                crate::operation::modify_db_instance::ModifyDBInstanceError,
141            >::new())
142            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
143                crate::operation::modify_db_instance::ModifyDBInstanceError,
144            >::new())
145            .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
146                crate::operation::modify_db_instance::ModifyDBInstanceError,
147            >::new());
148
149        ::std::borrow::Cow::Owned(rcb)
150    }
151}
152
153#[derive(Debug)]
154struct ModifyDBInstanceTelemetryInputCaptureInterceptor;
155
156#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
157impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ModifyDBInstanceTelemetryInputCaptureInterceptor {
158    fn name(&self) -> &'static str {
159        "ModifyDBInstanceTelemetryInputCaptureInterceptor"
160    }
161
162    fn read_before_execution(
163        &self,
164        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
165            '_,
166            ::aws_smithy_runtime_api::client::interceptors::context::Input,
167            ::aws_smithy_runtime_api::client::interceptors::context::Output,
168            ::aws_smithy_runtime_api::client::interceptors::context::Error,
169        >,
170        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
171    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
172        // Nothing to do unless the customer opted in by naming members to record.
173        let ::std::option::Option::Some(requested) = cfg
174            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
175            .filter(|r| !r.is_empty())
176        else {
177            return ::std::result::Result::Ok(());
178        };
179
180        let ::std::option::Option::Some(input) = context.input().downcast_ref::<ModifyDbInstanceInput>() else {
181            // A mismatched input is not this interceptor's concern; skip quietly.
182            return ::std::result::Result::Ok(());
183        };
184
185        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
186        if requested.should_capture("DBInstanceIdentifier") {
187            if let ::std::option::Option::Some(value) = input.db_instance_identifier.as_deref() {
188                captured.insert("DBInstanceIdentifier", value);
189            }
190        }
191        if requested.should_capture("DBInstanceClass") {
192            if let ::std::option::Option::Some(value) = input.db_instance_class.as_deref() {
193                captured.insert("DBInstanceClass", value);
194            }
195        }
196        if requested.should_capture("DBSubnetGroupName") {
197            if let ::std::option::Option::Some(value) = input.db_subnet_group_name.as_deref() {
198                captured.insert("DBSubnetGroupName", value);
199            }
200        }
201        if requested.should_capture("DBParameterGroupName") {
202            if let ::std::option::Option::Some(value) = input.db_parameter_group_name.as_deref() {
203                captured.insert("DBParameterGroupName", value);
204            }
205        }
206        if requested.should_capture("PreferredBackupWindow") {
207            if let ::std::option::Option::Some(value) = input.preferred_backup_window.as_deref() {
208                captured.insert("PreferredBackupWindow", value);
209            }
210        }
211        if requested.should_capture("PreferredMaintenanceWindow") {
212            if let ::std::option::Option::Some(value) = input.preferred_maintenance_window.as_deref() {
213                captured.insert("PreferredMaintenanceWindow", value);
214            }
215        }
216        if requested.should_capture("EngineVersion") {
217            if let ::std::option::Option::Some(value) = input.engine_version.as_deref() {
218                captured.insert("EngineVersion", value);
219            }
220        }
221        if requested.should_capture("LicenseModel") {
222            if let ::std::option::Option::Some(value) = input.license_model.as_deref() {
223                captured.insert("LicenseModel", value);
224            }
225        }
226        if requested.should_capture("OptionGroupName") {
227            if let ::std::option::Option::Some(value) = input.option_group_name.as_deref() {
228                captured.insert("OptionGroupName", value);
229            }
230        }
231        if requested.should_capture("NewDBInstanceIdentifier") {
232            if let ::std::option::Option::Some(value) = input.new_db_instance_identifier.as_deref() {
233                captured.insert("NewDBInstanceIdentifier", value);
234            }
235        }
236        if requested.should_capture("StorageType") {
237            if let ::std::option::Option::Some(value) = input.storage_type.as_deref() {
238                captured.insert("StorageType", value);
239            }
240        }
241        if requested.should_capture("TdeCredentialArn") {
242            if let ::std::option::Option::Some(value) = input.tde_credential_arn.as_deref() {
243                captured.insert("TdeCredentialArn", value);
244            }
245        }
246        if requested.should_capture("CACertificateIdentifier") {
247            if let ::std::option::Option::Some(value) = input.ca_certificate_identifier.as_deref() {
248                captured.insert("CACertificateIdentifier", value);
249            }
250        }
251        if requested.should_capture("Domain") {
252            if let ::std::option::Option::Some(value) = input.domain.as_deref() {
253                captured.insert("Domain", value);
254            }
255        }
256        if requested.should_capture("DomainFqdn") {
257            if let ::std::option::Option::Some(value) = input.domain_fqdn.as_deref() {
258                captured.insert("DomainFqdn", value);
259            }
260        }
261        if requested.should_capture("DomainOu") {
262            if let ::std::option::Option::Some(value) = input.domain_ou.as_deref() {
263                captured.insert("DomainOu", value);
264            }
265        }
266        if requested.should_capture("DomainAuthSecretArn") {
267            if let ::std::option::Option::Some(value) = input.domain_auth_secret_arn.as_deref() {
268                captured.insert("DomainAuthSecretArn", value);
269            }
270        }
271        if requested.should_capture("MonitoringRoleArn") {
272            if let ::std::option::Option::Some(value) = input.monitoring_role_arn.as_deref() {
273                captured.insert("MonitoringRoleArn", value);
274            }
275        }
276        if requested.should_capture("DomainIAMRoleName") {
277            if let ::std::option::Option::Some(value) = input.domain_iam_role_name.as_deref() {
278                captured.insert("DomainIAMRoleName", value);
279            }
280        }
281        if requested.should_capture("PerformanceInsightsKMSKeyId") {
282            if let ::std::option::Option::Some(value) = input.performance_insights_kms_key_id.as_deref() {
283                captured.insert("PerformanceInsightsKMSKeyId", value);
284            }
285        }
286        if requested.should_capture("NetworkType") {
287            if let ::std::option::Option::Some(value) = input.network_type.as_deref() {
288                captured.insert("NetworkType", value);
289            }
290        }
291        if requested.should_capture("AwsBackupRecoveryPointArn") {
292            if let ::std::option::Option::Some(value) = input.aws_backup_recovery_point_arn.as_deref() {
293                captured.insert("AwsBackupRecoveryPointArn", value);
294            }
295        }
296        if requested.should_capture("MasterUserSecretKmsKeyId") {
297            if let ::std::option::Option::Some(value) = input.master_user_secret_kms_key_id.as_deref() {
298                captured.insert("MasterUserSecretKmsKeyId", value);
299            }
300        }
301        if requested.should_capture("Engine") {
302            if let ::std::option::Option::Some(value) = input.engine.as_deref() {
303                captured.insert("Engine", value);
304            }
305        }
306        if requested.should_capture("EngineLifecycleSupport") {
307            if let ::std::option::Option::Some(value) = input.engine_lifecycle_support.as_deref() {
308                captured.insert("EngineLifecycleSupport", value);
309            }
310        }
311
312        cfg.interceptor_state().store_put(captured);
313        ::std::result::Result::Ok(())
314    }
315}
316#[derive(Debug)]
317struct ModifyDBInstanceResponseDeserializer;
318impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ModifyDBInstanceResponseDeserializer {
319    fn deserialize_nonstreaming_with_config(
320        &self,
321        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
322        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
323    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
324        let (success, status) = (response.status().is_success(), response.status().as_u16());
325        let headers = response.headers();
326        let body = response.body().bytes().expect("body loaded");
327        #[allow(unused_mut)]
328        let mut force_error = false;
329        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
330        let parse_result = if !success && status != 200 || force_error {
331            crate::protocol_serde::shape_modify_db_instance::de_modify_db_instance_http_error(status, headers, body)
332        } else {
333            crate::protocol_serde::shape_modify_db_instance::de_modify_db_instance_http_response(status, headers, body)
334        };
335        crate::protocol_serde::type_erase_result(parse_result)
336    }
337}
338#[derive(Debug)]
339struct ModifyDBInstanceRequestSerializer;
340impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ModifyDBInstanceRequestSerializer {
341    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
342    fn serialize_input(
343        &self,
344        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
345        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
346    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
347        let input = input
348            .downcast::<crate::operation::modify_db_instance::ModifyDbInstanceInput>()
349            .expect("correct type");
350        let _header_serialization_settings = _cfg
351            .load::<crate::serialization_settings::HeaderSerializationSettings>()
352            .cloned()
353            .unwrap_or_default();
354        let mut request_builder = {
355            #[allow(clippy::uninlined_format_args)]
356            fn uri_base(
357                _input: &crate::operation::modify_db_instance::ModifyDbInstanceInput,
358                output: &mut ::std::string::String,
359            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
360                use ::std::fmt::Write as _;
361                ::std::write!(output, "/").expect("formatting should succeed");
362                ::std::result::Result::Ok(())
363            }
364            #[allow(clippy::unnecessary_wraps)]
365            fn update_http_builder(
366                input: &crate::operation::modify_db_instance::ModifyDbInstanceInput,
367                builder: ::http_1x::request::Builder,
368            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
369                let mut uri = ::std::string::String::new();
370                uri_base(input, &mut uri)?;
371                ::std::result::Result::Ok(builder.method("POST").uri(uri))
372            }
373            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
374            builder =
375                _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/x-www-form-urlencoded");
376            builder
377        };
378        let body = ::aws_smithy_types::body::SdkBody::from(
379            crate::protocol_serde::shape_modify_db_instance_input::ser_modify_db_instance_input_input_input(&input)?,
380        );
381        if let Some(content_length) = body.content_length() {
382            let content_length = content_length.to_string();
383            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
384        }
385        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
386    }
387}
388#[derive(Debug)]
389struct ModifyDBInstanceEndpointParamsInterceptor;
390
391#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
392impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ModifyDBInstanceEndpointParamsInterceptor {
393    fn name(&self) -> &'static str {
394        "ModifyDBInstanceEndpointParamsInterceptor"
395    }
396
397    fn read_before_execution(
398        &self,
399        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
400            '_,
401            ::aws_smithy_runtime_api::client::interceptors::context::Input,
402            ::aws_smithy_runtime_api::client::interceptors::context::Output,
403            ::aws_smithy_runtime_api::client::interceptors::context::Error,
404        >,
405        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
406    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
407        let _input = context
408            .input()
409            .downcast_ref::<ModifyDbInstanceInput>()
410            .ok_or("failed to downcast to ModifyDbInstanceInput")?;
411
412        let params = crate::config::endpoint::Params::builder()
413            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
414            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
415            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
416            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
417            .build()
418            .map_err(|err| {
419                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
420            })?;
421        cfg.interceptor_state()
422            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
423        ::std::result::Result::Ok(())
424    }
425}
426
427// The get_* functions below are generated from JMESPath expressions in the
428// operationContextParams trait. They target the operation's input shape.
429
430/// Error type for the `ModifyDBInstanceError` operation.
431#[non_exhaustive]
432#[derive(::std::fmt::Debug)]
433pub enum ModifyDBInstanceError {
434    /// <p>The specified CIDR IP range or Amazon EC2 security group might not be authorized for the specified DB security group.</p>
435    /// <p>Or, RDS might not be authorized to perform necessary actions using IAM on your behalf.</p>
436    AuthorizationNotFoundFault(crate::types::error::AuthorizationNotFoundFault),
437    /// <p></p>
438    #[deprecated(note = "Please avoid using this fault")]
439    BackupPolicyNotFoundFault(crate::types::error::BackupPolicyNotFoundFault),
440    /// <p><code>CertificateIdentifier</code> doesn't refer to an existing certificate.</p>
441    CertificateNotFoundFault(crate::types::error::CertificateNotFoundFault),
442    /// <p>The user already has a DB instance with the given identifier.</p>
443    DbInstanceAlreadyExistsFault(crate::types::error::DbInstanceAlreadyExistsFault),
444    /// <p><code>DBInstanceIdentifier</code> doesn't refer to an existing DB instance.</p>
445    DbInstanceNotFoundFault(crate::types::error::DbInstanceNotFoundFault),
446    /// <p><code>DBParameterGroupName</code> doesn't refer to an existing DB parameter group.</p>
447    DbParameterGroupNotFoundFault(crate::types::error::DbParameterGroupNotFoundFault),
448    /// <p><code>DBSecurityGroupName</code> doesn't refer to an existing DB security group.</p>
449    DbSecurityGroupNotFoundFault(crate::types::error::DbSecurityGroupNotFoundFault),
450    /// <p>The DB upgrade failed because a resource the DB depends on can't be modified.</p>
451    DbUpgradeDependencyFailureFault(crate::types::error::DbUpgradeDependencyFailureFault),
452    /// <p><code>Domain</code> doesn't refer to an existing Active Directory domain.</p>
453    DomainNotFoundFault(crate::types::error::DomainNotFoundFault),
454    /// <p>The specified DB instance class isn't available in the specified Availability Zone.</p>
455    InsufficientDbInstanceCapacityFault(crate::types::error::InsufficientDbInstanceCapacityFault),
456    /// <p>The requested operation can't be performed while the cluster is in this state.</p>
457    InvalidDbClusterStateFault(crate::types::error::InvalidDbClusterStateFault),
458    /// <p>The DB instance isn't in a valid state.</p>
459    InvalidDbInstanceStateFault(crate::types::error::InvalidDbInstanceStateFault),
460    /// <p>The state of the DB security group doesn't allow deletion.</p>
461    InvalidDbSecurityGroupStateFault(crate::types::error::InvalidDbSecurityGroupStateFault),
462    /// <p>The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.</p>
463    InvalidVpcNetworkStateFault(crate::types::error::InvalidVpcNetworkStateFault),
464    /// <p>An error occurred accessing an Amazon Web Services KMS key.</p>
465    KmsKeyNotAccessibleFault(crate::types::error::KmsKeyNotAccessibleFault),
466    /// <p>The network type is invalid for the DB instance. Valid nework type values are <code>IPV4</code> and <code>DUAL</code>.</p>
467    NetworkTypeNotSupported(crate::types::error::NetworkTypeNotSupported),
468    /// <p>The specified option group could not be found.</p>
469    OptionGroupNotFoundFault(crate::types::error::OptionGroupNotFoundFault),
470    /// <p>Provisioned IOPS not available in the specified Availability Zone.</p>
471    ProvisionedIopsNotAvailableInAzFault(crate::types::error::ProvisionedIopsNotAvailableInAzFault),
472    /// <p>The request would result in the user exceeding the allowed amount of storage available across all DB instances.</p>
473    StorageQuotaExceededFault(crate::types::error::StorageQuotaExceededFault),
474    /// <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
475    StorageTypeNotSupportedFault(crate::types::error::StorageTypeNotSupportedFault),
476    /// <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services account.</p>
477    TenantDatabaseQuotaExceededFault(crate::types::error::TenantDatabaseQuotaExceededFault),
478    /// <p>The operation violates VPC encryption control settings. Make sure that your DB instance type supports the Nitro encryption-in-transit capability, or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
479    VpcEncryptionControlViolationException(crate::types::error::VpcEncryptionControlViolationException),
480    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
481    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
482    variable wildcard pattern and check `.code()`:
483     \
484    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
485     \
486    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ModifyDBInstanceError) for what information is available for the error.")]
487    Unhandled(crate::error::sealed_unhandled::Unhandled),
488}
489impl ModifyDBInstanceError {
490    /// Creates the `ModifyDBInstanceError::Unhandled` variant from any error type.
491    pub fn unhandled(
492        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
493    ) -> Self {
494        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
495            source: err.into(),
496            meta: ::std::default::Default::default(),
497        })
498    }
499
500    /// Creates the `ModifyDBInstanceError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
501    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
502        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
503            source: err.clone().into(),
504            meta: err,
505        })
506    }
507    ///
508    /// Returns error metadata, which includes the error code, message,
509    /// request ID, and potentially additional information.
510    ///
511    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
512        match self {
513            Self::AuthorizationNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
514            Self::BackupPolicyNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
515            Self::CertificateNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
516            Self::DbInstanceAlreadyExistsFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
517            Self::DbInstanceNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
518            Self::DbParameterGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
519            Self::DbSecurityGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
520            Self::DbUpgradeDependencyFailureFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
521            Self::DomainNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
522            Self::InsufficientDbInstanceCapacityFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
523            Self::InvalidDbClusterStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
524            Self::InvalidDbInstanceStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
525            Self::InvalidDbSecurityGroupStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
526            Self::InvalidVpcNetworkStateFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
527            Self::KmsKeyNotAccessibleFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
528            Self::NetworkTypeNotSupported(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
529            Self::OptionGroupNotFoundFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
530            Self::ProvisionedIopsNotAvailableInAzFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
531            Self::StorageQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
532            Self::StorageTypeNotSupportedFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
533            Self::TenantDatabaseQuotaExceededFault(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
534            Self::VpcEncryptionControlViolationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
535            Self::Unhandled(e) => &e.meta,
536        }
537    }
538    /// Returns `true` if the error kind is `ModifyDBInstanceError::AuthorizationNotFoundFault`.
539    pub fn is_authorization_not_found_fault(&self) -> bool {
540        matches!(self, Self::AuthorizationNotFoundFault(_))
541    }
542    /// Returns `true` if the error kind is `ModifyDBInstanceError::BackupPolicyNotFoundFault`.
543    pub fn is_backup_policy_not_found_fault(&self) -> bool {
544        matches!(self, Self::BackupPolicyNotFoundFault(_))
545    }
546    /// Returns `true` if the error kind is `ModifyDBInstanceError::CertificateNotFoundFault`.
547    pub fn is_certificate_not_found_fault(&self) -> bool {
548        matches!(self, Self::CertificateNotFoundFault(_))
549    }
550    /// Returns `true` if the error kind is `ModifyDBInstanceError::DbInstanceAlreadyExistsFault`.
551    pub fn is_db_instance_already_exists_fault(&self) -> bool {
552        matches!(self, Self::DbInstanceAlreadyExistsFault(_))
553    }
554    /// Returns `true` if the error kind is `ModifyDBInstanceError::DbInstanceNotFoundFault`.
555    pub fn is_db_instance_not_found_fault(&self) -> bool {
556        matches!(self, Self::DbInstanceNotFoundFault(_))
557    }
558    /// Returns `true` if the error kind is `ModifyDBInstanceError::DbParameterGroupNotFoundFault`.
559    pub fn is_db_parameter_group_not_found_fault(&self) -> bool {
560        matches!(self, Self::DbParameterGroupNotFoundFault(_))
561    }
562    /// Returns `true` if the error kind is `ModifyDBInstanceError::DbSecurityGroupNotFoundFault`.
563    pub fn is_db_security_group_not_found_fault(&self) -> bool {
564        matches!(self, Self::DbSecurityGroupNotFoundFault(_))
565    }
566    /// Returns `true` if the error kind is `ModifyDBInstanceError::DbUpgradeDependencyFailureFault`.
567    pub fn is_db_upgrade_dependency_failure_fault(&self) -> bool {
568        matches!(self, Self::DbUpgradeDependencyFailureFault(_))
569    }
570    /// Returns `true` if the error kind is `ModifyDBInstanceError::DomainNotFoundFault`.
571    pub fn is_domain_not_found_fault(&self) -> bool {
572        matches!(self, Self::DomainNotFoundFault(_))
573    }
574    /// Returns `true` if the error kind is `ModifyDBInstanceError::InsufficientDbInstanceCapacityFault`.
575    pub fn is_insufficient_db_instance_capacity_fault(&self) -> bool {
576        matches!(self, Self::InsufficientDbInstanceCapacityFault(_))
577    }
578    /// Returns `true` if the error kind is `ModifyDBInstanceError::InvalidDbClusterStateFault`.
579    pub fn is_invalid_db_cluster_state_fault(&self) -> bool {
580        matches!(self, Self::InvalidDbClusterStateFault(_))
581    }
582    /// Returns `true` if the error kind is `ModifyDBInstanceError::InvalidDbInstanceStateFault`.
583    pub fn is_invalid_db_instance_state_fault(&self) -> bool {
584        matches!(self, Self::InvalidDbInstanceStateFault(_))
585    }
586    /// Returns `true` if the error kind is `ModifyDBInstanceError::InvalidDbSecurityGroupStateFault`.
587    pub fn is_invalid_db_security_group_state_fault(&self) -> bool {
588        matches!(self, Self::InvalidDbSecurityGroupStateFault(_))
589    }
590    /// Returns `true` if the error kind is `ModifyDBInstanceError::InvalidVpcNetworkStateFault`.
591    pub fn is_invalid_vpc_network_state_fault(&self) -> bool {
592        matches!(self, Self::InvalidVpcNetworkStateFault(_))
593    }
594    /// Returns `true` if the error kind is `ModifyDBInstanceError::KmsKeyNotAccessibleFault`.
595    pub fn is_kms_key_not_accessible_fault(&self) -> bool {
596        matches!(self, Self::KmsKeyNotAccessibleFault(_))
597    }
598    /// Returns `true` if the error kind is `ModifyDBInstanceError::NetworkTypeNotSupported`.
599    pub fn is_network_type_not_supported(&self) -> bool {
600        matches!(self, Self::NetworkTypeNotSupported(_))
601    }
602    /// Returns `true` if the error kind is `ModifyDBInstanceError::OptionGroupNotFoundFault`.
603    pub fn is_option_group_not_found_fault(&self) -> bool {
604        matches!(self, Self::OptionGroupNotFoundFault(_))
605    }
606    /// Returns `true` if the error kind is `ModifyDBInstanceError::ProvisionedIopsNotAvailableInAzFault`.
607    pub fn is_provisioned_iops_not_available_in_az_fault(&self) -> bool {
608        matches!(self, Self::ProvisionedIopsNotAvailableInAzFault(_))
609    }
610    /// Returns `true` if the error kind is `ModifyDBInstanceError::StorageQuotaExceededFault`.
611    pub fn is_storage_quota_exceeded_fault(&self) -> bool {
612        matches!(self, Self::StorageQuotaExceededFault(_))
613    }
614    /// Returns `true` if the error kind is `ModifyDBInstanceError::StorageTypeNotSupportedFault`.
615    pub fn is_storage_type_not_supported_fault(&self) -> bool {
616        matches!(self, Self::StorageTypeNotSupportedFault(_))
617    }
618    /// Returns `true` if the error kind is `ModifyDBInstanceError::TenantDatabaseQuotaExceededFault`.
619    pub fn is_tenant_database_quota_exceeded_fault(&self) -> bool {
620        matches!(self, Self::TenantDatabaseQuotaExceededFault(_))
621    }
622    /// Returns `true` if the error kind is `ModifyDBInstanceError::VpcEncryptionControlViolationException`.
623    pub fn is_vpc_encryption_control_violation_exception(&self) -> bool {
624        matches!(self, Self::VpcEncryptionControlViolationException(_))
625    }
626}
627impl ::std::error::Error for ModifyDBInstanceError {
628    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
629        match self {
630            Self::AuthorizationNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
631            Self::BackupPolicyNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
632            Self::CertificateNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
633            Self::DbInstanceAlreadyExistsFault(_inner) => ::std::option::Option::Some(_inner),
634            Self::DbInstanceNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
635            Self::DbParameterGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
636            Self::DbSecurityGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
637            Self::DbUpgradeDependencyFailureFault(_inner) => ::std::option::Option::Some(_inner),
638            Self::DomainNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
639            Self::InsufficientDbInstanceCapacityFault(_inner) => ::std::option::Option::Some(_inner),
640            Self::InvalidDbClusterStateFault(_inner) => ::std::option::Option::Some(_inner),
641            Self::InvalidDbInstanceStateFault(_inner) => ::std::option::Option::Some(_inner),
642            Self::InvalidDbSecurityGroupStateFault(_inner) => ::std::option::Option::Some(_inner),
643            Self::InvalidVpcNetworkStateFault(_inner) => ::std::option::Option::Some(_inner),
644            Self::KmsKeyNotAccessibleFault(_inner) => ::std::option::Option::Some(_inner),
645            Self::NetworkTypeNotSupported(_inner) => ::std::option::Option::Some(_inner),
646            Self::OptionGroupNotFoundFault(_inner) => ::std::option::Option::Some(_inner),
647            Self::ProvisionedIopsNotAvailableInAzFault(_inner) => ::std::option::Option::Some(_inner),
648            Self::StorageQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
649            Self::StorageTypeNotSupportedFault(_inner) => ::std::option::Option::Some(_inner),
650            Self::TenantDatabaseQuotaExceededFault(_inner) => ::std::option::Option::Some(_inner),
651            Self::VpcEncryptionControlViolationException(_inner) => ::std::option::Option::Some(_inner),
652            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
653        }
654    }
655}
656impl ::std::fmt::Display for ModifyDBInstanceError {
657    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
658        match self {
659            Self::AuthorizationNotFoundFault(_inner) => _inner.fmt(f),
660            Self::BackupPolicyNotFoundFault(_inner) => _inner.fmt(f),
661            Self::CertificateNotFoundFault(_inner) => _inner.fmt(f),
662            Self::DbInstanceAlreadyExistsFault(_inner) => _inner.fmt(f),
663            Self::DbInstanceNotFoundFault(_inner) => _inner.fmt(f),
664            Self::DbParameterGroupNotFoundFault(_inner) => _inner.fmt(f),
665            Self::DbSecurityGroupNotFoundFault(_inner) => _inner.fmt(f),
666            Self::DbUpgradeDependencyFailureFault(_inner) => _inner.fmt(f),
667            Self::DomainNotFoundFault(_inner) => _inner.fmt(f),
668            Self::InsufficientDbInstanceCapacityFault(_inner) => _inner.fmt(f),
669            Self::InvalidDbClusterStateFault(_inner) => _inner.fmt(f),
670            Self::InvalidDbInstanceStateFault(_inner) => _inner.fmt(f),
671            Self::InvalidDbSecurityGroupStateFault(_inner) => _inner.fmt(f),
672            Self::InvalidVpcNetworkStateFault(_inner) => _inner.fmt(f),
673            Self::KmsKeyNotAccessibleFault(_inner) => _inner.fmt(f),
674            Self::NetworkTypeNotSupported(_inner) => _inner.fmt(f),
675            Self::OptionGroupNotFoundFault(_inner) => _inner.fmt(f),
676            Self::ProvisionedIopsNotAvailableInAzFault(_inner) => _inner.fmt(f),
677            Self::StorageQuotaExceededFault(_inner) => _inner.fmt(f),
678            Self::StorageTypeNotSupportedFault(_inner) => _inner.fmt(f),
679            Self::TenantDatabaseQuotaExceededFault(_inner) => _inner.fmt(f),
680            Self::VpcEncryptionControlViolationException(_inner) => _inner.fmt(f),
681            Self::Unhandled(_inner) => {
682                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
683                    write!(f, "unhandled error ({code})")
684                } else {
685                    f.write_str("unhandled error")
686                }
687            }
688        }
689    }
690}
691impl ::aws_smithy_types::retry::ProvideErrorKind for ModifyDBInstanceError {
692    fn code(&self) -> ::std::option::Option<&str> {
693        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
694    }
695    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
696        ::std::option::Option::None
697    }
698}
699impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ModifyDBInstanceError {
700    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
701        match self {
702            Self::AuthorizationNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
703            Self::BackupPolicyNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
704            Self::CertificateNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
705            Self::DbInstanceAlreadyExistsFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
706            Self::DbInstanceNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
707            Self::DbParameterGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
708            Self::DbSecurityGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
709            Self::DbUpgradeDependencyFailureFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
710            Self::DomainNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
711            Self::InsufficientDbInstanceCapacityFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
712            Self::InvalidDbClusterStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
713            Self::InvalidDbInstanceStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
714            Self::InvalidDbSecurityGroupStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
715            Self::InvalidVpcNetworkStateFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
716            Self::KmsKeyNotAccessibleFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
717            Self::NetworkTypeNotSupported(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
718            Self::OptionGroupNotFoundFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
719            Self::ProvisionedIopsNotAvailableInAzFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
720            Self::StorageQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
721            Self::StorageTypeNotSupportedFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
722            Self::TenantDatabaseQuotaExceededFault(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
723            Self::VpcEncryptionControlViolationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
724            Self::Unhandled(_inner) => &_inner.meta,
725        }
726    }
727}
728impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ModifyDBInstanceError {
729    fn create_unhandled_error(
730        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
731        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
732    ) -> Self {
733        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
734            source,
735            meta: meta.unwrap_or_default(),
736        })
737    }
738}
739impl ::aws_types::request_id::RequestId for crate::operation::modify_db_instance::ModifyDBInstanceError {
740    fn request_id(&self) -> Option<&str> {
741        self.meta().request_id()
742    }
743}
744
745pub use crate::operation::modify_db_instance::_modify_db_instance_input::ModifyDbInstanceInput;
746
747pub use crate::operation::modify_db_instance::_modify_db_instance_output::ModifyDbInstanceOutput;
748
749mod _modify_db_instance_input;
750
751mod _modify_db_instance_output;
752
753/// Builders
754pub mod builders;