// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetNetworkMigrationDefinition`](crate::operation::get_network_migration_definition::builders::GetNetworkMigrationDefinitionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`network_migration_definition_id(impl Into<String>)`](crate::operation::get_network_migration_definition::builders::GetNetworkMigrationDefinitionFluentBuilder::network_migration_definition_id) / [`set_network_migration_definition_id(Option<String>)`](crate::operation::get_network_migration_definition::builders::GetNetworkMigrationDefinitionFluentBuilder::set_network_migration_definition_id):<br>required: **true**<br><p>The unique identifier of the network migration definition to retrieve.</p><br>
/// - On success, responds with [`GetNetworkMigrationDefinitionOutput`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::arn): <p>The Amazon Resource Name (ARN) of the network migration definition.</p>
/// - [`network_migration_definition_id(Option<String>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::network_migration_definition_id): <p>The unique identifier of the network migration definition.</p>
/// - [`name(Option<String>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::name): <p>The name of the network migration definition.</p>
/// - [`description(Option<String>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::description): <p>A description of the network migration definition.</p>
/// - [`source_configurations(Option<Vec::<SourceConfiguration>>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::source_configurations): <p>A list of source configurations for the network migration.</p>
/// - [`target_s3_configuration(Option<TargetS3Configuration>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::target_s3_configuration): <p>The S3 configuration for storing the target network artifacts.</p>
/// - [`target_network(Option<TargetNetwork>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::target_network): <p>The target network configuration including topology and CIDR ranges.</p>
/// - [`target_deployment(Option<TargetDeployment>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::target_deployment): <p>The target deployment configuration for the migrated network.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::created_at): <p>The timestamp when the network migration definition was created.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::updated_at): <p>The timestamp when the network migration definition was last updated.</p>
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::tags): <p>Tags assigned to the network migration definition.</p>
/// - [`scope_tags(Option<HashMap::<String, String>>)`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionOutput::scope_tags): <p>Scope tags for the network migration definition.</p>
/// - On failure, responds with [`SdkError<GetNetworkMigrationDefinitionError>`](crate::operation::get_network_migration_definition::GetNetworkMigrationDefinitionError)
pub fn get_network_migration_definition(
&self,
) -> crate::operation::get_network_migration_definition::builders::GetNetworkMigrationDefinitionFluentBuilder {
crate::operation::get_network_migration_definition::builders::GetNetworkMigrationDefinitionFluentBuilder::new(self.handle.clone())
}
}