getNetworkMigrationMapperSegmentConstruct
abstract suspend fun getNetworkMigrationMapperSegmentConstruct(input: GetNetworkMigrationMapperSegmentConstructRequest): GetNetworkMigrationMapperSegmentConstructResponse
Retrieves detailed information about a specific construct within a mapper segment, including its properties and configuration data.
Samples
fun main() {
//sampleStart
// Sample GetNetworkMigrationMapperSegmentConstruct call
val resp = mgnClient.getNetworkMigrationMapperSegmentConstruct {
networkMigrationExecutionId = "01234567-abcd-abcd-abcd-0123456789ab"
networkMigrationDefinitionId = "nmd-01234567891234567"
segmentId = "12345678-abcd-abcd-efab-0123456789ab"
constructId = "abc45678-abcd-abcd-efab-012345678abc"
}
//sampleEnd
}