// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateNetworkMigrationMapperSegment`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`network_migration_definition_id(impl Into<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::network_migration_definition_id) / [`set_network_migration_definition_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::set_network_migration_definition_id):<br>required: **true**<br><p>The unique identifier of the network migration definition.</p><br>
/// - [`network_migration_execution_id(impl Into<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::network_migration_execution_id) / [`set_network_migration_execution_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::set_network_migration_execution_id):<br>required: **true**<br><p>The unique identifier of the network migration execution.</p><br>
/// - [`segment_id(impl Into<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::segment_id) / [`set_segment_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::set_segment_id):<br>required: **true**<br><p>The unique identifier of the segment to update.</p><br>
/// - [`scope_tags(impl Into<String>, impl Into<String>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::scope_tags) / [`set_scope_tags(Option<HashMap::<String, String>>)`](crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::set_scope_tags):<br>required: **false**<br><p>The updated scope tags for the segment.</p><br>
/// - On success, responds with [`UpdateNetworkMigrationMapperSegmentOutput`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput) with field(s):
/// - [`job_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::job_id): <p>The unique identifier of the job that created this segment.</p>
/// - [`network_migration_execution_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::network_migration_execution_id): <p>The unique identifier of the network migration execution.</p>
/// - [`network_migration_definition_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::network_migration_definition_id): <p>The unique identifier of the network migration definition.</p>
/// - [`segment_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::segment_id): <p>The unique identifier of the segment.</p>
/// - [`segment_type(Option<NetworkMigrationMapperSegmentType>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::segment_type): <p>The type of the segment, such as VPC, subnet, or security group.</p>
/// - [`name(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::name): <p>The name of the segment.</p>
/// - [`description(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::description): <p>A description of the segment.</p>
/// - [`logical_id(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::logical_id): <p>The logical identifier for the segment in the infrastructure code.</p>
/// - [`checksum(Option<Checksum>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::checksum): <p>The checksum of the segment data for integrity verification.</p>
/// - [`output_s3_configuration(Option<S3Configuration>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::output_s3_configuration): <p>The S3 location where segment artifacts are stored.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::created_at): <p>The timestamp when the segment was created.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::updated_at): <p>The timestamp when the segment was last updated.</p>
/// - [`scope_tags(Option<HashMap::<String, String>>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::scope_tags): <p>Scope tags for the segment.</p>
/// - [`target_account(Option<String>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::target_account): <p>The target AWS account where this segment will be deployed.</p>
/// - [`referenced_segments(Option<Vec::<String>>)`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentOutput::referenced_segments): <p>A list of other segments that this segment depends on or references.</p>
/// - On failure, responds with [`SdkError<UpdateNetworkMigrationMapperSegmentError>`](crate::operation::update_network_migration_mapper_segment::UpdateNetworkMigrationMapperSegmentError)
pub fn update_network_migration_mapper_segment(
&self,
) -> crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder {
crate::operation::update_network_migration_mapper_segment::builders::UpdateNetworkMigrationMapperSegmentFluentBuilder::new(
self.handle.clone(),
)
}
}