// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`StartMetadataModelExportToTarget`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`migration_project_identifier(impl Into<String>)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::migration_project_identifier) / [`set_migration_project_identifier(Option<String>)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::set_migration_project_identifier):<br>required: **true**<br><p>The migration project name or Amazon Resource Name (ARN).</p><br>
/// - [`selection_rules(impl Into<String>)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::selection_rules) / [`set_selection_rules(Option<String>)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::set_selection_rules):<br>required: **true**<br><p>A JSON string that identifies the metadata models to export to the target database. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p> <p>Usage:</p> <ul> <li> <p>Accepts only target selection rules, where <code>server-name</code> in the object locator matches the target data provider.</p></li> <li> <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p></li> </ul><br>
/// - [`overwrite_extension_pack(bool)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::overwrite_extension_pack) / [`set_overwrite_extension_pack(Option<bool>)`](crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::set_overwrite_extension_pack):<br>required: **false**<br><p>Specifies whether to overwrite the extension pack if one already exists on the target database. The default value is <code>true</code>.</p><br>
/// - On success, responds with [`StartMetadataModelExportToTargetOutput`](crate::operation::start_metadata_model_export_to_target::StartMetadataModelExportToTargetOutput) with field(s):
/// - [`request_identifier(Option<String>)`](crate::operation::start_metadata_model_export_to_target::StartMetadataModelExportToTargetOutput::request_identifier): <p>The identifier for the export request.</p>
/// - On failure, responds with [`SdkError<StartMetadataModelExportToTargetError>`](crate::operation::start_metadata_model_export_to_target::StartMetadataModelExportToTargetError)
pub fn start_metadata_model_export_to_target(
&self,
) -> crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder {
crate::operation::start_metadata_model_export_to_target::builders::StartMetadataModelExportToTargetFluentBuilder::new(self.handle.clone())
}
}